comparison cavs.c @ 3414:8a282f6c2248 libavcodec

missed removing this line in my last commit
author stefang
date Wed, 05 Jul 2006 17:08:13 +0000
parents 3b72265410f3
children 3a728a9cbd54
comparison
equal deleted inserted replaced
3413:c7a2ad367199 3414:8a282f6c2248
1300 goto done; 1300 goto done;
1301 } 1301 }
1302 mb_type = get_ue_golomb(&s->gb) + B_DIRECT; 1302 mb_type = get_ue_golomb(&s->gb) + B_DIRECT;
1303 } else 1303 } else
1304 mb_type = get_ue_golomb(&s->gb) + B_SKIP; 1304 mb_type = get_ue_golomb(&s->gb) + B_SKIP;
1305 init_mb(h);
1306 if(mb_type > B_8X8) { 1305 if(mb_type > B_8X8) {
1307 h->cbp = cbp_tab[mb_type - B_8X8 - 1][0]; 1306 h->cbp = cbp_tab[mb_type - B_8X8 - 1][0];
1308 decode_mb_i(h); 1307 decode_mb_i(h);
1309 } else 1308 } else
1310 decode_mb_b(h,mb_type); 1309 decode_mb_b(h,mb_type);