mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avcodec/hevc: fix EOB/EOS check
Fixes: CID1108575 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
9c0fe487c7
commit
4c67ed8705
@ -2700,7 +2700,7 @@ static int decode_nal_units(HEVCContext *s, const uint8_t *buf, int length)
|
||||
goto fail;
|
||||
hls_nal_unit(s);
|
||||
|
||||
if (s->nal_unit_type == NAL_EOS_NUT || s->nal_unit_type == NAL_EOS_NUT)
|
||||
if (s->nal_unit_type == NAL_EOS_NUT || s->nal_unit_type == NAL_EOB_NUT)
|
||||
s->eos = 1;
|
||||
|
||||
buf += consumed;
|
||||
|
Loading…
Reference in New Issue
Block a user