diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2013-02-10 15:59:20 -0800 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-02-11 01:03:12 +0100 |
commit | 55e35c98d5f3159e5902616bdce01add685510b5 (patch) | |
tree | 013a4a214cd00bcf596484804cb997e6b8016346 | |
parent | 8491ac3ad2e9fc92479d6fc42d6ee4cb8d6f61d3 (diff) | |
download | ffmpeg-55e35c98d5f3159e5902616bdce01add685510b5.tar.gz |
h264 intra pred: add missing includes.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/h264pred.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/h264pred.c b/libavcodec/h264pred.c index db483c9702..29c529af69 100644 --- a/libavcodec/h264pred.c +++ b/libavcodec/h264pred.c @@ -27,6 +27,8 @@ #include "libavutil/avassert.h" #include "h264pred.h" +#include "dsputil.h" // for ff_cropTbl +#include "avcodec.h" // for AV_CODEC_ID_* #define BIT_DEPTH 8 #include "h264pred_template.c" |