diff options
author | leozhang <leozhang@qiyi.com> | 2019-11-20 20:10:57 +0800 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2019-11-21 21:26:12 +0100 |
commit | 4a3aa77d7437d17ecf888ba3d5f4a199a9d1d555 (patch) | |
tree | a36a39566f281215702df94636943ccc4d0419b3 /libavfilter/avfilter.c | |
parent | 55ca21d54e400ec5efc7fd28b1bce6096cbaea42 (diff) | |
download | ffmpeg-4a3aa77d7437d17ecf888ba3d5f4a199a9d1d555.tar.gz |
avfilter/avfilter: fix indentation
Signed-off-by: leozhang <leozhang@qiyi.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavfilter/avfilter.c')
-rw-r--r-- | libavfilter/avfilter.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index 09f33e0e7c..1004a6ee1d 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -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, |