From c44c03221d760ef8caec9e13b07251b90a6a1c8e Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Fri, 13 Aug 2021 22:36:10 +0200 Subject: avfilter/vf_transpose_npp: Use correct array name Fixes build failures since 18ec426a861c1a9a2072080796dff146bafecb53. Found-by: Gregory Beauregard Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_transpose_npp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/vf_transpose_npp.c b/libavfilter/vf_transpose_npp.c index 5c8226b71b..ad79d22f7f 100644 --- a/libavfilter/vf_transpose_npp.c +++ b/libavfilter/vf_transpose_npp.c @@ -117,7 +117,7 @@ static int npptranspose_query_formats(AVFilterContext *ctx) AV_PIX_FMT_CUDA, AV_PIX_FMT_NONE, }; - return ff_set_common_formats_from_list(ctx, pixel_fmts); + return ff_set_common_formats_from_list(ctx, pixel_formats); } static int init_stage(NPPTransposeStageContext *stage, AVBufferRef *device_ctx) -- cgit v1.2.3