Skip to content
Snippets Groups Projects
Commit 4bfd2cf0 authored by François Cartegnie's avatar François Cartegnie :fingers_crossed:
Browse files

codec: avcodec: handle low delay mode

Frame threading mode only creates high latency.
Speeds up by 6 frames duration on 60 fps mode (250->150ms)
parent 179cfef0
No related branches found
No related tags found
No related merge requests found
......@@ -479,6 +479,12 @@ static int OpenVideoCodec( decoder_t *p_dec )
ctx->flags |= AV_CODEC_FLAG_LOW_DELAY;
}
if( var_InheritBool(p_dec, "low-delay") )
{
ctx->flags |= AV_CODEC_FLAG_LOW_DELAY;
ctx->active_thread_type = FF_THREAD_SLICE;
}
post_mt( p_sys );
ret = ffmpeg_OpenCodec( p_dec, ctx, codec );
wait_mt( p_sys );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment