Browse Source

vaapi_h264: fix RefPicList[] field flags.

Use new H264Ref.reference field to track field picture flags. The
H264Picture.reference flag in DPB is now irrelevant here.

This is a regression from git commit a12d3188, and that affected
multiple interlaced video streams.

Signed-off-by: Gwenole Beauchesne <gwenole.beauchesne@intel.com>
Signed-off-by: Mark Thompson <sw@jkqxz.net>
tags/n3.3
Gwenole Beauchesne Mark Thompson 9 years ago
parent
commit
754b20d7eb
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      libavcodec/vaapi_h264.c

+ 2
- 1
libavcodec/vaapi_h264.c View File

@@ -162,7 +162,8 @@ static void fill_vaapi_RefPicList(VAPictureH264 RefPicList[32],
unsigned int i, n = 0;
for (i = 0; i < ref_count; i++)
if (ref_list[i].reference)
fill_vaapi_pic(&RefPicList[n++], ref_list[i].parent, 0);
fill_vaapi_pic(&RefPicList[n++], ref_list[i].parent,
ref_list[i].reference);

for (; n < 32; n++)
init_vaapi_pic(&RefPicList[n]);


Loading…
Cancel
Save