h264: Try parsing SPS as complete NAL in more cases
Fixes Ticket2580 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
28aed88b73
commit
443b29e475
@ -4777,7 +4777,7 @@ again:
|
|||||||
break;
|
break;
|
||||||
case NAL_SPS:
|
case NAL_SPS:
|
||||||
init_get_bits(&h->gb, ptr, bit_length);
|
init_get_bits(&h->gb, ptr, bit_length);
|
||||||
if (ff_h264_decode_seq_parameter_set(h) < 0 && (h->is_avc ? (nalsize != consumed) && nalsize : 1)) {
|
if (ff_h264_decode_seq_parameter_set(h) < 0 && (h->is_avc ? nalsize : 1)) {
|
||||||
av_log(h->avctx, AV_LOG_DEBUG,
|
av_log(h->avctx, AV_LOG_DEBUG,
|
||||||
"SPS decoding failure, trying again with the complete NAL\n");
|
"SPS decoding failure, trying again with the complete NAL\n");
|
||||||
if (h->is_avc)
|
if (h->is_avc)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user