diff mbox series

[FFmpeg-devel,8/8] avfilter/vf_thumbnail_cuda: Reindent after the previous commit

Message ID AM7PR03MB6660BDCEEB2A83194AB29A158FAF9@AM7PR03MB6660.eurprd03.prod.outlook.com
State Accepted
Commit 37cb26bf790c5e20868c099647a1c6e49d58d08a
Headers show
Series [FFmpeg-devel,1/8] avfilter/tests/filtfmts: Replace macro by ordinary function | expand

Checks

Context Check Description
andriy/make_x86 success Make finished
andriy/make_fate_x86 success Make fate finished
andriy/make_ppc success Make finished
andriy/make_fate_ppc success Make fate finished

Commit Message

Andreas Rheinhardt Oct. 5, 2021, 8:53 p.m. UTC
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
---
 libavfilter/vf_thumbnail_cuda.c | 25 ++++++++++++-------------
 1 file changed, 12 insertions(+), 13 deletions(-)
diff mbox series

Patch

diff --git a/libavfilter/vf_thumbnail_cuda.c b/libavfilter/vf_thumbnail_cuda.c
index 7c86203227..c8dd905123 100644
--- a/libavfilter/vf_thumbnail_cuda.c
+++ b/libavfilter/vf_thumbnail_cuda.c
@@ -304,27 +304,26 @@  static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
 
 static av_cold void uninit(AVFilterContext *ctx)
 {
-    int i;
     ThumbnailCudaContext *s = ctx->priv;
 
     if (s->hwctx) {
-    CudaFunctions *cu = s->hwctx->internal->cuda_dl;
+        CudaFunctions *cu = s->hwctx->internal->cuda_dl;
 
-    if (s->data) {
-        CHECK_CU(cu->cuMemFree(s->data));
-        s->data = 0;
-    }
+        if (s->data) {
+            CHECK_CU(cu->cuMemFree(s->data));
+            s->data = 0;
+        }
 
-    if (s->cu_module) {
-        CHECK_CU(cu->cuModuleUnload(s->cu_module));
-        s->cu_module = NULL;
-    }
+        if (s->cu_module) {
+            CHECK_CU(cu->cuModuleUnload(s->cu_module));
+            s->cu_module = NULL;
+        }
     }
 
     if (s->frames) {
-    for (i = 0; i < s->n_frames && s->frames[i].buf; i++)
-        av_frame_free(&s->frames[i].buf);
-    av_freep(&s->frames);
+        for (int i = 0; i < s->n_frames && s->frames[i].buf; i++)
+            av_frame_free(&s->frames[i].buf);
+        av_freep(&s->frames);
     }
 }