mirror of https://git.ffmpeg.org/ffmpeg.git
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>
This commit is contained in:
parent
96491430c2
commit
c44c03221d
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue