Save frame header info in context variables
authorKostya Shishkov <kostya.shishkov@gmail.com>
Sun, 4 Feb 2007 10:46:28 +0000 (10:46 +0000)
committerKostya Shishkov <kostya.shishkov@gmail.com>
Sun, 4 Feb 2007 10:46:28 +0000 (10:46 +0000)
Originally committed as revision 7815 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/vc1.c

index 8c69808..e0bd62e 100644 (file)
@@ -1616,14 +1616,13 @@ static int vc1_parse_frame_header(VC1Context *v, GetBitContext* gb)
 
 static int vc1_parse_frame_header_adv(VC1Context *v, GetBitContext* gb)
 {
-    int fcm;
     int pqindex, lowquant;
     int status;
 
     v->p_frame_skipped = 0;
 
     if(v->interlace)
-        fcm = decode012(gb);
+        v->fcm = decode012(gb);
     switch(get_prefix(gb, 0, 4)) {
     case 0:
         v->s.pict_type = P_TYPE;
@@ -1646,10 +1645,10 @@ static int vc1_parse_frame_header_adv(VC1Context *v, GetBitContext* gb)
         get_bits(gb, 8);
     if(v->broadcast) {
         if(!v->interlace || v->panscanflag) {
-            get_bits(gb, 2);
+            v->rptfrm = get_bits(gb, 2);
         } else {
-            get_bits1(gb);
-            get_bits1(gb);
+            v->tff = get_bits1(gb);
+            v->rptfrm = get_bits1(gb);
         }
     }
     if(v->panscanflag) {