diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-10-11 01:16:05 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-10-11 18:29:36 +0200 |
commit | 9734b8ba56d05e970c353dfd5baafa43fdb08024 (patch) | |
tree | e1f40e82ce4aa2ab7dc081115278057e08ffbbb6 /libavcodec/mpegvideo.c | |
parent | 0a75d1da23b8659ec49391469bb592da12760077 (diff) | |
download | ffmpeg-9734b8ba56d05e970c353dfd5baafa43fdb08024.tar.gz |
Move avutil tables only used in libavcodec to libavcodec.
Diffstat (limited to 'libavcodec/mpegvideo.c')
-rw-r--r-- | libavcodec/mpegvideo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c index f739c2dc5a..571d9af489 100644 --- a/libavcodec/mpegvideo.c +++ b/libavcodec/mpegvideo.c @@ -27,11 +27,11 @@ * The simplest mpeg encoder (well, it was the simplest!). */ -#include "libavutil/intmath.h" #include "libavutil/imgutils.h" #include "avcodec.h" #include "dsputil.h" #include "internal.h" +#include "mathops.h" #include "mpegvideo.h" #include "mjpegenc.h" #include "msmpeg4.h" |