mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-18 21:45:10 +00:00
avformat/hevc: fix writing hvcC when no arrays are provided in hvcC-formatted input
Don't reject extradata with missing PS NALUs if array_completeness is not
requested.
Fixes a regression since a696b28886
.
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
f0051604c7
commit
5813e5aa34
@ -958,10 +958,12 @@ static int hvcc_write(AVIOContext *pb, HEVCDecoderConfigurationRecord *hvcc,
|
||||
/*
|
||||
* We need at least one of each: VPS, SPS and PPS.
|
||||
*/
|
||||
if ((!numNalus[VPS_INDEX] || numNalus[VPS_INDEX] > HEVC_MAX_VPS_COUNT) && !is_lhvc)
|
||||
if ((flags & FLAG_ARRAY_COMPLETENESS) &&
|
||||
(!numNalus[VPS_INDEX] || numNalus[VPS_INDEX] > HEVC_MAX_VPS_COUNT) && !is_lhvc)
|
||||
return AVERROR_INVALIDDATA;
|
||||
if (!numNalus[SPS_INDEX] || numNalus[SPS_INDEX] > HEVC_MAX_SPS_COUNT ||
|
||||
!numNalus[PPS_INDEX] || numNalus[PPS_INDEX] > HEVC_MAX_PPS_COUNT)
|
||||
if ((flags & FLAG_ARRAY_COMPLETENESS) &&
|
||||
(!numNalus[SPS_INDEX] || numNalus[SPS_INDEX] > HEVC_MAX_SPS_COUNT ||
|
||||
!numNalus[PPS_INDEX] || numNalus[PPS_INDEX] > HEVC_MAX_PPS_COUNT))
|
||||
return AVERROR_INVALIDDATA;
|
||||
|
||||
/* unsigned int(8) configurationVersion = 1; */
|
||||
|
Loading…
Reference in New Issue
Block a user