lavc/h264_slice: properly forward positive "error" code
Fixes ./ffmpeg -skip_frame nokey -i h264/h264_intra_first-small.ts Regression since c54e2740e1f4a8fb7fa4e521755bf4158c4cda51
This commit is contained in:
parent
cdecb39fca
commit
a2901472fe
@ -1702,7 +1702,7 @@ int ff_h264_decode_slice_header(H264Context *h, H264SliceContext *sl)
|
||||
int i, j, ret = 0;
|
||||
|
||||
ret = h264_slice_header_parse(h, sl);
|
||||
if (ret < 0)
|
||||
if (ret) // can not be ret<0 because of SLICE_SKIPED, SLICE_SINGLETHREAD, ...
|
||||
return ret;
|
||||
|
||||
if (sl->slice_type_nos == AV_PICTURE_TYPE_B && !sl->direct_spatial_mv_pred)
|
||||
|
Loading…
x
Reference in New Issue
Block a user