comparison vc1.c @ 5892:efc1e9a01671 libavcodec

indention
author michael
date Fri, 09 Nov 2007 21:49:41 +0000
parents 83ac4620c6ed
children 3bdbcfb7e497
comparison
equal deleted inserted replaced
5891:d0bfc0b00d6c 5892:efc1e9a01671
1232 v->ttfrm = TT_8X8; 1232 v->ttfrm = TT_8X8;
1233 } 1233 }
1234 break; 1234 break;
1235 } 1235 }
1236 1236
1237 if(!v->x8_type) 1237 if(!v->x8_type)
1238 {
1239 /* AC Syntax */
1240 v->c_ac_table_index = decode012(gb);
1241 if (v->s.pict_type == I_TYPE || v->s.pict_type == BI_TYPE)
1242 { 1238 {
1243 v->y_ac_table_index = decode012(gb); 1239 /* AC Syntax */
1244 } 1240 v->c_ac_table_index = decode012(gb);
1245 /* DC Syntax */ 1241 if (v->s.pict_type == I_TYPE || v->s.pict_type == BI_TYPE)
1246 v->s.dc_table_index = get_bits1(gb); 1242 {
1247 } 1243 v->y_ac_table_index = decode012(gb);
1244 }
1245 /* DC Syntax */
1246 v->s.dc_table_index = get_bits1(gb);
1247 }
1248 1248
1249 if(v->s.pict_type == BI_TYPE) { 1249 if(v->s.pict_type == BI_TYPE) {
1250 v->s.pict_type = B_TYPE; 1250 v->s.pict_type = B_TYPE;
1251 v->bi_type = 1; 1251 v->bi_type = 1;
1252 } 1252 }