Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-12-12 18:21:54 +0300
committerMichael Niedermayer <michaelni@gmx.at>2014-12-15 20:25:00 +0300
commit1307c11ce6233867fa8c2da968c102c06496efea (patch)
tree48c1b76976ba3c41679efc31a511c47523e57aa6 /libavcodec/avdct.h
parentc1d9283b1e4b3b90d5064e0f1cc29a94aa73cda9 (diff)
avcodec/avdct: support >8bit per sample dcts
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/avdct.h')
-rw-r--r--libavcodec/avdct.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/avdct.h b/libavcodec/avdct.h
index 380efe1b25..272422e44c 100644
--- a/libavcodec/avdct.h
+++ b/libavcodec/avdct.h
@@ -65,6 +65,8 @@ typedef struct AVDCT {
void (*get_pixels)(int16_t *block /* align 16 */,
const uint8_t *pixels /* align 8 */,
ptrdiff_t line_size);
+
+ int bits_per_sample;
} AVDCT;
/**