diff options
author | Gwenole Beauchesne <gwenole.beauchesne@intel.com> | 2015-06-23 11:35:45 +0200 |
---|---|---|
committer | Gwenole Beauchesne <gwenole.beauchesne@intel.com> | 2015-06-23 13:31:54 +0200 |
commit | 88325c2e0b63abf4c3482cecd43870015123764a (patch) | |
tree | f3dc2a4d8186b61d98f8ba2dea4f4985d3b92e76 /libavcodec/vaapi_h264.c | |
parent | c06fdacc3dc706e70d953917fea845532d3703ca (diff) | |
download | ffmpeg-88325c2e0b63abf4c3482cecd43870015123764a.tar.gz |
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 d8151a7, and that affected
multiple interlaced video streams.
Signed-off-by: Gwenole Beauchesne <gwenole.beauchesne@intel.com>
Diffstat (limited to 'libavcodec/vaapi_h264.c')
-rw-r--r-- | libavcodec/vaapi_h264.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/vaapi_h264.c b/libavcodec/vaapi_h264.c index eef3c29ab5..151aca9e18 100644 --- a/libavcodec/vaapi_h264.c +++ b/libavcodec/vaapi_h264.c @@ -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]); |