diff mpegvideo.h @ 208:2eb04d6be309 libavcodec

(commit by michael) bye bye weird al rounding bug ;)
author arpi_esp
date Tue, 15 Jan 2002 22:22:41 +0000
parents 883f184537e6
children 0b234715e205
line wrap: on
line diff
--- a/mpegvideo.h	Tue Jan 15 05:02:26 2002 +0000
+++ b/mpegvideo.h	Tue Jan 15 22:22:41 2002 +0000
@@ -160,6 +160,8 @@
     int use_skip_mb_code;
     int slice_height;      /* in macroblocks */
     int first_slice_line;  
+    int flipflop_rounding;
+    int bitrate;
     /* decompression specific */
     GetBitContext gb;
 
@@ -284,11 +286,13 @@
 
 /* msmpeg4.c */
 void msmpeg4_encode_picture_header(MpegEncContext * s, int picture_number);
+void msmpeg4_encode_ext_header(MpegEncContext * s);
 void msmpeg4_encode_mb(MpegEncContext * s, 
                        DCTELEM block[6][64],
                        int motion_x, int motion_y);
 void msmpeg4_dc_scale(MpegEncContext * s);
 int msmpeg4_decode_picture_header(MpegEncContext * s);
+int msmpeg4_decode_ext_header(MpegEncContext * s, int buf_size);
 int msmpeg4_decode_mb(MpegEncContext *s, 
                       DCTELEM block[6][64]);
 int msmpeg4_decode_init_vlc(MpegEncContext *s);