diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-08-13 22:36:10 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-08-13 22:44:47 +0200 |
commit | c44c03221d760ef8caec9e13b07251b90a6a1c8e (patch) | |
tree | 37780a238964d7d165c33327c5085c05c8255977 | |
parent | 96491430c2eee7b31d8409ed4812b09a4b175527 (diff) | |
download | ffmpeg-c44c03221d760ef8caec9e13b07251b90a6a1c8e.tar.gz |
avfilter/vf_transpose_npp: Use correct array name
Fixes build failures since 18ec426a861c1a9a2072080796dff146bafecb53.
Found-by: Gregory Beauregard
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r-- | libavfilter/vf_transpose_npp.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) |