diff xl.c @ 6450:c32be43b52b2 libavcodec

remove more useless mpegvideo.h includes
author aurel
date Wed, 05 Mar 2008 00:43:11 +0000
parents 2100739c6a22
children 48759bfbd073
line wrap: on
line diff
--- a/xl.c	Wed Mar 05 00:38:14 2008 +0000
+++ b/xl.c	Wed Mar 05 00:43:11 2008 +0000
@@ -25,7 +25,6 @@
  */
 
 #include "avcodec.h"
-#include "mpegvideo.h"
 
 typedef struct VideoXLContext{
     AVCodecContext *avctx;
@@ -58,7 +57,7 @@
         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];