diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2016-06-08 12:32:57 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-08-15 20:25:14 +0200 |
commit | 7a2329fac1ea2a1443f1546ca3f7382efcd7d282 (patch) | |
tree | 4783856332114610fd6f102e97aa455e5a446217 | |
parent | 65fff8e71ac92348c2bc8d4997aa5f732a5be321 (diff) | |
download | ffmpeg-7a2329fac1ea2a1443f1546ca3f7382efcd7d282.tar.gz |
avcodec/h264: Put context_count check back
Fixes assertion failure
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit f883f0b0bd0dac76b58e49f5c75cf9b497eecaa0)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavcodec/h264.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index 0d42c48b15..fead5ae116 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -1652,10 +1652,12 @@ again: av_log(h->avctx, AV_LOG_ERROR, "decode_slice_header error\n"); sl->ref_count[0] = sl->ref_count[1] = sl->list_count = 0; } else if (err == SLICE_SINGLETHREAD) { - ret = ff_h264_execute_decode_slices(h, context_count); - if (ret < 0 && (h->avctx->err_recognition & AV_EF_EXPLODE)) - goto end; - context_count = 0; + if (context_count > 0) { + ret = ff_h264_execute_decode_slices(h, context_count); + if (ret < 0 && (h->avctx->err_recognition & AV_EF_EXPLODE)) + goto end; + context_count = 0; + } /* Slice could not be decoded in parallel mode, restart. Note * that rbsp_buffer is not transferred, but since we no longer * run in parallel mode this should not be an issue. */ |