Commit 56cf6151 authored by Dirk Farin's avatar Dirk Farin Committed by Michael Niedermayer

avformat/hevcdec: add more irap cases to hevc_probe()

This fixes fate-hevc-conformance-RAP_A_docomo_4
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 2ac31773
......@@ -46,8 +46,12 @@ static int hevc_probe(AVProbeData *p)
case NAL_VPS: vps++; break;
case NAL_SPS: sps++; break;
case NAL_PPS: pps++; break;
case 19:
case 20: irap++; break;
case NAL_BLA_N_LP:
case NAL_BLA_W_LP:
case NAL_BLA_W_RADL:
case NAL_CRA_NUT:
case NAL_IDR_N_LP:
case NAL_IDR_W_RADL: irap++; break;
}
}
}
......
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