# HG changeset patch # User michael # Date 1216988621 0 # Node ID 8ef2e8f077ffa46d9f1b229dcee5e5f29c328f6b # Parent d2d876733e9ef63c8c73369c779775ec0421dfa6 Remove another of these obfuscated special cases for field pictures that does not do anything. diff -r d2d876733e9e -r 8ef2e8f077ff h264.c --- a/h264.c Fri Jul 25 12:12:25 2008 +0000 +++ b/h264.c Fri Jul 25 12:23:41 2008 +0000 @@ -3551,9 +3551,7 @@ } } - if (!current_ref_assigned && FIELD_PICTURE && - !s->first_field && s->current_picture_ptr->reference) { - + if (!current_ref_assigned) { /* Second field of complementary field pair; the first field of * which is already referenced. If short referenced, it * should be first entry in short_ref. If not, it must exist @@ -3569,17 +3567,6 @@ "in complementary field pair " "(first field is long term)\n"); } else { - /* - * First field in reference, but not in any sensible place on our - * reference lists. This shouldn't happen unless reference - * handling somewhere else is wrong. - */ - assert(0); - } - current_ref_assigned = 1; - } - - if(!current_ref_assigned){ pic= remove_short(h, s->current_picture_ptr->frame_num); if(pic){ unreference_pic(h, pic, 0);