diff mpegvideo.h @ 1160:9a5c29575902 libavcodec

mpeg1 slice encoding support
author michaelni
date Sun, 30 Mar 2003 19:26:01 +0000
parents 13ea348d4cf2
children 8c15d82c1893
line wrap: on
line diff
--- a/mpegvideo.h	Sun Mar 30 16:22:08 2003 +0000
+++ b/mpegvideo.h	Sun Mar 30 19:26:01 2003 +0000
@@ -338,7 +338,7 @@
                         
     /* macroblock layer */
     int mb_x, mb_y;
-    int mb_incr;
+    int mb_skip_run;
     int mb_intra;
     uint8_t *mb_type;       ///< Table for MB type 
 #define MB_TYPE_INTRA    0x01
@@ -685,6 +685,8 @@
                      DCTELEM block[6][64],
                      int motion_x, int motion_y);
 void ff_mpeg1_encode_init(MpegEncContext *s);
+void ff_mpeg1_encode_slice_header(MpegEncContext *s);
+void ff_mpeg1_clean_buffers(MpegEncContext *s);
 
 
 /** RLTable. */