diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-05-10 09:00:44 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-05-10 09:00:44 +0000 |
commit | 2029f312e8c13b25d322d69961b42db2e66f616a (patch) | |
tree | dcc319fe88a8a4d4282848bceb4d4eeeae80ab9b /libavcodec/ffv1.c | |
parent | 7c3a9fe2a3759577a6a4f24e8fd0b2e857dc14b8 (diff) | |
download | ffmpeg-2029f312e8c13b25d322d69961b42db2e66f616a.tar.gz |
Remove redundant #inclusion of common.h, avcodec.h already #includes it.
Originally committed as revision 8967 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ffv1.c')
-rw-r--r-- | libavcodec/ffv1.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/ffv1.c b/libavcodec/ffv1.c index 45f408c876..ee5419cd3f 100644 --- a/libavcodec/ffv1.c +++ b/libavcodec/ffv1.c @@ -26,9 +26,8 @@ * FF Video Codec 1 (an experimental lossless codec) */ -#include "common.h" -#include "bitstream.h" #include "avcodec.h" +#include "bitstream.h" #include "dsputil.h" #include "rangecoder.h" #include "golomb.h" |