Commit 09ba986c authored by Mickaël Raulet's avatar Mickaël Raulet Committed by Michael Niedermayer

avcodec/hevc: fix duplicate/wrong nal unit check and difference to openhevc_upstream

NAL_BLA_W_RADL instead of NAL_BLA_N_LP
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 712eff49
...@@ -1932,7 +1932,7 @@ static int decode_nal_unit(HEVCContext *s, const uint8_t *nal, int length) ...@@ -1932,7 +1932,7 @@ static int decode_nal_unit(HEVCContext *s, const uint8_t *nal, int length)
if (s->nal_unit_type == NAL_CRA_NUT || if (s->nal_unit_type == NAL_CRA_NUT ||
s->nal_unit_type == NAL_BLA_W_LP || s->nal_unit_type == NAL_BLA_W_LP ||
s->nal_unit_type == NAL_BLA_N_LP || s->nal_unit_type == NAL_BLA_N_LP ||
s->nal_unit_type == NAL_BLA_N_LP) { s->nal_unit_type == NAL_BLA_W_RADL) {
s->max_ra = s->poc; s->max_ra = s->poc;
} else { } else {
if (IS_IDR(s)) if (IS_IDR(s))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment