You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
h264_refs: fix typo in refs fallback check
Fixes regression since 01a0283
Fixes Ticket2371
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -312,7 +312,7 @@ int ff_h264_decode_ref_pic_list_reordering(H264Context *h)
|
||||
for (i = 0; i < FF_ARRAY_ELEMS(h->last_pocs); i++)
|
||||
h->last_pocs[i] = INT_MIN;
|
||||
if (h->default_ref_list[list][0].f.data[0]
|
||||
&& !(!FIELD_PICTURE && (h->default_ref_list[list][index].reference&3) != 3))
|
||||
&& !(!FIELD_PICTURE && (h->default_ref_list[list][0].reference&3) != 3))
|
||||
COPY_PICTURE(&h->ref_list[list][index], &h->default_ref_list[list][0]);
|
||||
else
|
||||
return -1;
|
||||
|
Reference in New Issue
Block a user