Commit 79a19f6e authored by Michael Niedermayer's avatar Michael Niedermayer

pthread: Fix mixing of declarations and statements.

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 967bdb85
......@@ -895,6 +895,7 @@ error:
void ff_thread_flush(AVCodecContext *avctx)
{
FrameThreadContext *fctx = avctx->thread_opaque;
int i;
if (!avctx->thread_opaque) return;
......@@ -910,7 +911,7 @@ void ff_thread_flush(AVCodecContext *avctx)
fctx->delaying = 1;
fctx->prev_thread = NULL;
// Make sure decode flush calls with size=0 won't return old frames
for (int i = 0; i < avctx->thread_count; i++)
for (i = 0; i < avctx->thread_count; i++)
fctx->threads[i].got_frame = 0;
}
......
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