summaryrefslogtreecommitdiff
path: root/libavcodec/xl.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/xl.c')
-rw-r--r--libavcodec/xl.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/xl.c b/libavcodec/xl.c
index b48a369b8b..e1fd909186 100644
--- a/libavcodec/xl.c
+++ b/libavcodec/xl.c
@@ -25,7 +25,6 @@
*/
#include "avcodec.h"
-#include "mpegvideo.h"
typedef struct VideoXLContext{
AVCodecContext *avctx;
@@ -58,7 +57,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;
Y = a->pic.data[0];