summaryrefslogtreecommitdiff
path: root/libavcodec/qdrw.c
diff options
context:
space:
mode:
authorAurelien Jacobs <aurel@gnuage.org>2008-03-05 00:43:11 +0000
committerAurelien Jacobs <aurel@gnuage.org>2008-03-05 00:43:11 +0000
commitfbd4293df9b0c9a1076da74b8e7a86cae6efdfe1 (patch)
tree62a8e8731210e359a6ac0ff3e4d1be79107b3ddd /libavcodec/qdrw.c
parentcbcd6c8ca9bc9a36d990589c3a2bb7100b90ec3b (diff)
remove more useless mpegvideo.h includes
Originally committed as revision 12323 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/qdrw.c')
-rw-r--r--libavcodec/qdrw.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/qdrw.c b/libavcodec/qdrw.c
index 0ee9a8f7c2..78283f6cc0 100644
--- a/libavcodec/qdrw.c
+++ b/libavcodec/qdrw.c
@@ -25,7 +25,6 @@
*/
#include "avcodec.h"
-#include "mpegvideo.h"
typedef struct QdrawContext{
AVCodecContext *avctx;
@@ -52,7 +51,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;
outdata = a->pic.data[0];