From b0941dee3cf3f98389c0caa7c354bb52fa9ae3b6 Mon Sep 17 00:00:00 2001 From: Gwenole Beauchesne Date: Tue, 13 Apr 2010 06:43:01 +0000 Subject: [PATCH] [VA-API] Fix long-term reference frames addition to the DPB. This fixes MR2_MW_A/MR2_TANDBERG_E on Intel Ironlake and NVIDIA HW. Originally committed as revision 22869 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/vaapi_h264.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/vaapi_h264.c b/libavcodec/vaapi_h264.c index 52f836330d..6d4251a263 100644 --- a/libavcodec/vaapi_h264.c +++ b/libavcodec/vaapi_h264.c @@ -136,7 +136,7 @@ static int fill_vaapi_ReferenceFrames(VAPictureParameterBufferH264 *pic_param, return -1; } - for (i = 0; i < h->long_ref_count; i++) { + for (i = 0; i < 16; i++) { Picture * const pic = h->long_ref[i]; if (pic && pic->reference && dpb_add(&dpb, pic) < 0) return -1;