Revert "pthread: flush all threads on flush, not just the first one"

This reverts commit 2eb15cdeef.

It does not work correctly in pre-refcounting threading code.
This commit is contained in:
Anton Khirnov
2014-04-24 07:40:34 +02:00
parent ce364088ef
commit cf7bb6ceb1

View File

@@ -885,6 +885,8 @@ void ff_thread_flush(AVCodecContext *avctx)
if (fctx->prev_thread) {
if (fctx->prev_thread != &fctx->threads[0])
update_context_from_thread(fctx->threads[0].avctx, fctx->prev_thread->avctx, 0);
if (avctx->codec->flush)
avctx->codec->flush(fctx->threads[0].avctx);
}
fctx->next_decoding = fctx->next_finished = 0;
@@ -896,9 +898,6 @@ void ff_thread_flush(AVCodecContext *avctx)
p->got_frame = 0;
release_delayed_buffers(p);
if (avctx->codec->flush)
avctx->codec->flush(p->avctx);
}
}