Message ID | tencent_2E0F508A26DEA7F46AB1930B9C568BBB6606@qq.com |
---|---|
State | New |
Headers | show |
Series | [FFmpeg-devel,RFC,1/4] avcodec/hevc_parse: keep nal->nuh_layer_id > 0 | expand |
Context | Check | Description |
---|---|---|
yinshiyou/make_loongarch64 | success | Make finished |
andriy/make_x86 | success | Make finished |
andriy/make_fate_x86 | success | Make fate finished |
diff --git a/libavcodec/hevc_parse.c b/libavcodec/hevc_parse.c index 29dfd479f3..dddb293df6 100644 --- a/libavcodec/hevc_parse.c +++ b/libavcodec/hevc_parse.c @@ -37,8 +37,6 @@ static int hevc_decode_nal_units(const uint8_t *buf, int buf_size, HEVCParamSets for (i = 0; i < pkt.nb_nals; i++) { H2645NAL *nal = &pkt.nals[i]; - if (nal->nuh_layer_id > 0) - continue; /* ignore everything except parameter sets and VCL NALUs */ switch (nal->type) {
From: Zhao Zhili <zhilizhao@tencent.com> --- libavcodec/hevc_parse.c | 2 -- 1 file changed, 2 deletions(-)