summaryrefslogtreecommitdiff
path: root/libavcodec/h264idct.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-07-05 01:33:18 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-07-10 02:17:52 +0200
commit69d5e40e5afe24439a5b820ca135e1609c8d58a0 (patch)
treebfa6a8ed873a956f5df9e587290af9955dbfaeb8 /libavcodec/h264idct.c
parent6ff6a51b863733f2a3a737cdbfe492fa9cefe16b (diff)
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.c8
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