From 3d5421201ba21d108adc0c76458300ea425114a9 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Mon, 5 Jul 2010 14:36:03 +0000 Subject: Perform sliding window operation during frame gap handling. This avoids some warnings about too many reference frames. Originally committed as revision 24057 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/h264_refs.c | 1 + 1 file changed, 1 insertion(+) (limited to 'libavcodec/h264_refs.c') diff --git a/libavcodec/h264_refs.c b/libavcodec/h264_refs.c index 7caa4b0003..74eaaa8ada 100644 --- a/libavcodec/h264_refs.c +++ b/libavcodec/h264_refs.c @@ -478,6 +478,7 @@ void ff_generate_sliding_window_mmcos(H264Context *h) { MpegEncContext * const s = &h->s; assert(h->long_ref_count + h->short_ref_count <= h->sps.ref_frame_count); + h->mmco_index= 0; if(h->short_ref_count && h->long_ref_count + h->short_ref_count == h->sps.ref_frame_count && !(FIELD_PICTURE && !s->first_field && s->current_picture_ptr->reference)) { h->mmco[0].opcode= MMCO_SHORT2UNUSED; -- cgit v1.2.3