mirror of https://git.ffmpeg.org/ffmpeg.git
avfilter/avfilter: fix indentation
Signed-off-by: leozhang <leozhang@qiyi.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
55ca21d54e
commit
4a3aa77d74
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue