Commit 4a3aa77d authored by leozhang's avatar leozhang Committed by Michael Niedermayer

avfilter/avfilter: fix indentation

Signed-off-by: 's avatarleozhang <leozhang@qiyi.com>
Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 55ca21d5
......@@ -801,9 +801,9 @@ void avfilter_free(AVFilterContext *filter)
int ff_filter_get_nb_threads(AVFilterContext *ctx)
{
if (ctx->nb_threads > 0)
return FFMIN(ctx->nb_threads, ctx->graph->nb_threads);
return ctx->graph->nb_threads;
if (ctx->nb_threads > 0)
return FFMIN(ctx->nb_threads, ctx->graph->nb_threads);
return ctx->graph->nb_threads;
}
static int process_options(AVFilterContext *ctx, AVDictionary **options,
......
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