1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

Remove redundant h->mmco_index= 0.

Originally committed as revision 14386 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2008-07-25 12:02:45 +00:00
parent 5118c6c771
commit 57288c4a06

View File

@ -3633,9 +3633,7 @@ static int decode_ref_pic_marking(H264Context *h, GetBitContext *gb){
if(h->nal_unit_type == NAL_IDR_SLICE){ //FIXME fields if(h->nal_unit_type == NAL_IDR_SLICE){ //FIXME fields
s->broken_link= get_bits1(gb) -1; s->broken_link= get_bits1(gb) -1;
h->mmco[0].long_arg= get_bits1(gb) - 1; // current_long_term_idx h->mmco[0].long_arg= get_bits1(gb) - 1; // current_long_term_idx
if(h->mmco[0].long_arg == -1) if(h->mmco[0].long_arg != -1){
h->mmco_index= 0;
else{
h->mmco[0].opcode= MMCO_LONG; h->mmco[0].opcode= MMCO_LONG;
h->mmco_index= 1; h->mmco_index= 1;
} }
@ -3683,8 +3681,7 @@ static int decode_ref_pic_marking(H264Context *h, GetBitContext *gb){
h->mmco[1].short_pic_num= h->mmco[0].short_pic_num + 1; h->mmco[1].short_pic_num= h->mmco[0].short_pic_num + 1;
h->mmco_index= 2; h->mmco_index= 2;
} }
}else }
h->mmco_index= 0;
} }
} }