diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-12-30 11:22:41 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-12-30 11:22:41 +0000 |
commit | af818f7a6612e70320f83c7ef0ddc9bfd035d18b (patch) | |
tree | 4260dc81e1ba6e2428a2d112232c6eb6fd93d2de | |
parent | 716d1c2a313a833f7496953840158b7e23970d03 (diff) | |
download | ffmpeg-af818f7a6612e70320f83c7ef0ddc9bfd035d18b.tar.gz |
Add required header #includes for mpegvideo.h and config.h.
Originally committed as revision 20974 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/dsputil.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c index ffa8cecd4a..d3cd6430eb 100644 --- a/libavcodec/dsputil.c +++ b/libavcodec/dsputil.c @@ -35,6 +35,8 @@ #include "mathops.h" #include "h263.h" #include "snow.h" +#include "mpegvideo.h" +#include "config.h" /* snow.c */ void ff_spatial_dwt(int *buffer, int width, int height, int stride, int type, int decomposition_count); |