[FFmpeg-devel] [PATCH] avfilter/vf_thumbnail_cuda: Set ret before checking it

Timo Rothenpieler timo at rothenpieler.org
Mon Apr 22 13:17:02 EEST 2024



On 22.04.2024 03:11, Michael Niedermayer wrote:
> Fixes: CID1418336 Logically dead code
> 
> Sponsored-by: Sovereign Tech Fund
> Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> ---
>   libavfilter/vf_thumbnail_cuda.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/libavfilter/vf_thumbnail_cuda.c b/libavfilter/vf_thumbnail_cuda.c
> index 0459070800a..8efb54f0792 100644
> --- a/libavfilter/vf_thumbnail_cuda.c
> +++ b/libavfilter/vf_thumbnail_cuda.c
> @@ -291,7 +291,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
>               hist[i] = 4 * hist[i];
>       }
>   
> -    CHECK_CU(cu->cuCtxPopCurrent(&dummy));
> +    ret = CHECK_CU(cu->cuCtxPopCurrent(&dummy));
>       if (ret < 0)
>           return ret;
>   

LGTM


More information about the ffmpeg-devel mailing list