[FFmpeg-cvslog] r10976 - trunk/libavcodec/vc1.c

michael subversion
Fri Nov 9 22:49:42 CET 2007


Author: michael
Date: Fri Nov  9 22:49:41 2007
New Revision: 10976

Log:
indention


Modified:
   trunk/libavcodec/vc1.c

Modified: trunk/libavcodec/vc1.c
==============================================================================
--- trunk/libavcodec/vc1.c	(original)
+++ trunk/libavcodec/vc1.c	Fri Nov  9 22:49:41 2007
@@ -1234,17 +1234,17 @@ static int vc1_parse_frame_header(VC1Con
         break;
     }
 
-  if(!v->x8_type)
-  {
-    /* AC Syntax */
-    v->c_ac_table_index = decode012(gb);
-    if (v->s.pict_type == I_TYPE || v->s.pict_type == BI_TYPE)
+    if(!v->x8_type)
     {
-        v->y_ac_table_index = decode012(gb);
+        /* AC Syntax */
+        v->c_ac_table_index = decode012(gb);
+        if (v->s.pict_type == I_TYPE || v->s.pict_type == BI_TYPE)
+        {
+            v->y_ac_table_index = decode012(gb);
+        }
+        /* DC Syntax */
+        v->s.dc_table_index = get_bits1(gb);
     }
-    /* DC Syntax */
-    v->s.dc_table_index = get_bits1(gb);
-  }
 
     if(v->s.pict_type == BI_TYPE) {
         v->s.pict_type = B_TYPE;




More information about the ffmpeg-cvslog mailing list