avfilter/avfilter: fix indentation

Signed-off-by: leozhang <leozhang@qiyi.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
leozhang 2019-11-20 20:10:57 +08:00 committed by Michael Niedermayer
parent 55ca21d54e
commit 4a3aa77d74
1 changed files with 3 additions and 3 deletions

View File

@ -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,