diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-12-12 16:21:54 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-12-15 18:25:00 +0100 |
commit | 1307c11ce6233867fa8c2da968c102c06496efea (patch) | |
tree | 48c1b76976ba3c41679efc31a511c47523e57aa6 /libavcodec/avdct.h | |
parent | c1d9283b1e4b3b90d5064e0f1cc29a94aa73cda9 (diff) | |
download | ffmpeg-1307c11ce6233867fa8c2da968c102c06496efea.tar.gz |
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.h | 2 |
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; /** |