diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-07-06 00:56:41 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-07-06 01:34:08 +0200 |
commit | aa61ca0c592b6169edf82990078579ada49a3332 (patch) | |
tree | 5eff589b0be2b0e7fb601b4efd0c3670a51dc371 /libavcodec/h264pred_template.c | |
parent | f428c29c23931620eafe692bede0773f66fe17e3 (diff) | |
parent | d3f751e6030545c5e1f312c5a83c1e6ed5794f18 (diff) | |
download | ffmpeg-aa61ca0c592b6169edf82990078579ada49a3332.tar.gz |
Merge remote-tracking branch 'qatar/master'
* qatar/master:
Add some missing mathematics.h #includes for av_rescale().
opencore-amr: Add missing initializer braces to shut up gcc warning.
ARM: workaround for bug in GNU assembler
dv: fix comment wording mistake
Rename libavcodec/high_bit_depth.h ---> libavcodec/bit_depth_template.c
dv: fix valgrind use of uninitialised value warnings.
mxfenc: fix ignored drop flag in binary timecode representation.
PPC: use Altivec IMDCT only for supported sizes
dv: fix comment spelling
configure: simplify -rpath-link linker flag
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/h264pred_template.c')
-rw-r--r-- | libavcodec/h264pred_template.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/h264pred_template.c b/libavcodec/h264pred_template.c index 3cd4463d76..36f6d4e12f 100644 --- a/libavcodec/h264pred_template.c +++ b/libavcodec/h264pred_template.c @@ -26,7 +26,8 @@ */ #include "mathops.h" -#include "high_bit_depth.h" + +#include "bit_depth_template.c" static void FUNCC(pred4x4_vertical)(uint8_t *_src, const uint8_t *topright, int _stride){ pixel *src = (pixel*)_src; |