avfilter/vf_transpose_npp: Use correct array name

Fixes build failures since 18ec426a86.

Found-by: Gregory Beauregard
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
pull/364/head
Andreas Rheinhardt 3 years ago
parent 96491430c2
commit c44c03221d
  1. 2
      libavfilter/vf_transpose_npp.c

@ -117,7 +117,7 @@ static int npptranspose_query_formats(AVFilterContext *ctx)
AV_PIX_FMT_CUDA, AV_PIX_FMT_NONE, 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) static int init_stage(NPPTransposeStageContext *stage, AVBufferRef *device_ctx)

Loading…
Cancel
Save