Commit a5aeb8d9 authored by michael's avatar michael

Remove useless mb_field_decoding_flag setting code that was at the wrong spot.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14519 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 8140dbf5
......@@ -4348,8 +4348,7 @@ static int decode_mb_cavlc(H264Context *h){
if(FRAME_MBAFF){
if( (s->mb_y&1) == 0 )
h->mb_mbaff = h->mb_field_decoding_flag = get_bits1(&s->gb);
}else
h->mb_field_decoding_flag= (s->picture_structure!=PICT_FRAME);
}
h->prev_mb_skipped= 0;
......@@ -5467,8 +5466,7 @@ static int decode_mb_cabac(H264Context *h) {
if( (s->mb_y&1) == 0 )
h->mb_mbaff =
h->mb_field_decoding_flag = decode_cabac_field_decoding_flag(h);
}else
h->mb_field_decoding_flag= (s->picture_structure!=PICT_FRAME);
}
h->prev_mb_skipped = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment