[FFmpeg-cvslog] h264dec: make sure not to call finish_setup() more than once per frame
Anton Khirnov
git at videolan.org
Tue Jan 31 18:10:29 EET 2017
ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Wed Jul 20 09:59:45 2016 +0200| [1f7b4f9abc6bae94e576e710b8d10117ca3c8238] | committer: Anton Khirnov
h264dec: make sure not to call finish_setup() more than once per frame
It does not break anything currently, but should not be done anyway.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1f7b4f9abc6bae94e576e710b8d10117ca3c8238
---
libavcodec/h264dec.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/h264dec.c b/libavcodec/h264dec.c
index 1086eab..faa502e 100644
--- a/libavcodec/h264dec.c
+++ b/libavcodec/h264dec.c
@@ -550,7 +550,7 @@ static int decode_nal_units(H264Context *h, const uint8_t *buf, int buf_size)
break;
if (avctx->active_thread_type & FF_THREAD_FRAME && !h->avctx->hwaccel &&
- i >= nals_needed) {
+ i >= nals_needed && !h->setup_finished) {
ff_thread_finish_setup(avctx);
h->setup_finished = 1;
}
More information about the ffmpeg-cvslog
mailing list