diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-07-05 01:33:18 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-07-10 02:17:52 +0200 |
commit | 69d5e40e5afe24439a5b820ca135e1609c8d58a0 (patch) | |
tree | bfa6a8ed873a956f5df9e587290af9955dbfaeb8 /libavcodec/h264idct.c | |
parent | 6ff6a51b863733f2a3a737cdbfe492fa9cefe16b (diff) | |
download | ffmpeg-69d5e40e5afe24439a5b820ca135e1609c8d58a0.tar.gz |
h264idct: 12 and 14 bit support
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/h264idct.c')
-rw-r--r-- | libavcodec/h264idct.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libavcodec/h264idct.c b/libavcodec/h264idct.c index 7d1ee007bc..d92025ce01 100644 --- a/libavcodec/h264idct.c +++ b/libavcodec/h264idct.c @@ -36,3 +36,11 @@ #define BIT_DEPTH 10 #include "h264idct_template.c" #undef BIT_DEPTH + +#define BIT_DEPTH 12 +#include "h264idct_template.c" +#undef BIT_DEPTH + +#define BIT_DEPTH 14 +#include "h264idct_template.c" +#undef BIT_DEPTH |