diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2008-03-05 00:43:11 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2008-03-05 00:43:11 +0000 |
commit | fbd4293df9b0c9a1076da74b8e7a86cae6efdfe1 (patch) | |
tree | 62a8e8731210e359a6ac0ff3e4d1be79107b3ddd /libavcodec/vcr1.c | |
parent | cbcd6c8ca9bc9a36d990589c3a2bb7100b90ec3b (diff) | |
download | ffmpeg-fbd4293df9b0c9a1076da74b8e7a86cae6efdfe1.tar.gz |
remove more useless mpegvideo.h includes
Originally committed as revision 12323 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vcr1.c')
-rw-r--r-- | libavcodec/vcr1.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/vcr1.c b/libavcodec/vcr1.c index 30fc302d1d..d43faad53e 100644 --- a/libavcodec/vcr1.c +++ b/libavcodec/vcr1.c @@ -25,7 +25,7 @@ */ #include "avcodec.h" -#include "mpegvideo.h" +#include "dsputil.h" //#undef NDEBUG //#include <assert.h> @@ -55,7 +55,7 @@ static int decode_frame(AVCodecContext *avctx, av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n"); return -1; } - p->pict_type= I_TYPE; + p->pict_type= FF_I_TYPE; p->key_frame= 1; for(i=0; i<16; i++){ @@ -122,7 +122,7 @@ static int encode_frame(AVCodecContext *avctx, unsigned char *buf, int buf_size, int mb_x, mb_y; *p = *pict; - p->pict_type= I_TYPE; + p->pict_type= FF_I_TYPE; p->key_frame= 1; emms_c(); |