From bb3a4de5a7be2f71099371c59abc670210f47641 Mon Sep 17 00:00:00 2001 From: Zhao Zhili Date: Fri, 26 Sep 2025 19:44:09 +0800 Subject: [PATCH] avfilter/vf_bilateral_cuda: remove a goto which has no effect --- libavfilter/vf_bilateral_cuda.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/libavfilter/vf_bilateral_cuda.c b/libavfilter/vf_bilateral_cuda.c index acc8736f80..4cb6d2e641 100644 --- a/libavfilter/vf_bilateral_cuda.c +++ b/libavfilter/vf_bilateral_cuda.c @@ -286,8 +286,6 @@ static int cuda_bilateral_process_internal(AVFilterContext *ctx, AV_CEIL_RSHIFT(out->height, s->in_desc->log2_chroma_h), out->linesize[1] >> ((s->in_plane_channels[1] > 1) ? 1 : 0), s->window_size, s->sigmaS, s->sigmaR); - if (ret < 0) - goto exit; exit: for (i = 0; i < s->in_planes; i++)