diff mpegvideo.h @ 232:b640ec5948b0 libavcodec

- Now the ME is done for the entire picture when enconding, the DCT/Quantization is done after we have calculated all the MV of the picture. - This is the preamble for a better bit rate control.
author pulento
date Sun, 10 Feb 2002 01:56:50 +0000
parents 840cd25bf259
children 3f5b72726118
line wrap: on
line diff
--- a/mpegvideo.h	Sat Feb 09 16:59:56 2002 +0000
+++ b/mpegvideo.h	Sun Feb 10 01:56:50 2002 +0000
@@ -88,6 +88,7 @@
     int h263_long_vectors; /* use horrible h263v1 long vector mode */
 
     int f_code; /* resolution */
+    INT16 *mv_table[2];    /* MV table */
     INT16 (*motion_val)[2]; /* used for MV prediction */
     int full_search;
     int mv_dir;
@@ -115,6 +116,8 @@
     int mb_x, mb_y;
     int mb_incr;
     int mb_intra;
+    char *mb_type;    /* Table for MB type */
+    
     /* matrix transmitted in the bitstream */
     UINT16 intra_matrix[64];
     UINT16 chroma_intra_matrix[64];