[FFmpeg-cvslog] avfilter/avfilter: fix indentation

leozhang git at videolan.org
Thu Nov 21 23:16:30 EET 2019


ffmpeg | branch: master | leozhang <leozhang at qiyi.com> | Wed Nov 20 20:10:57 2019 +0800| [4a3aa77d7437d17ecf888ba3d5f4a199a9d1d555] | committer: Michael Niedermayer

avfilter/avfilter: fix indentation

Signed-off-by: leozhang <leozhang at qiyi.com>
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=4a3aa77d7437d17ecf888ba3d5f4a199a9d1d555
---

 libavfilter/avfilter.c | 6 +++---
 1 file 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,



More information about the ffmpeg-cvslog mailing list