diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-09-20 03:00:50 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-09-21 20:26:40 +0200 |
commit | 9beba053117342dd7619b009c2f87eed77725807 (patch) | |
tree | 682af5e88be30d5799a7cef9ee90470c71f17211 /libavcodec/ppc | |
parent | fd72d8aea3fbda09e029d2ecd7564f8c98b347e3 (diff) | |
download | ffmpeg-9beba053117342dd7619b009c2f87eed77725807.tar.gz |
avcodec/fmtconvert: Remove unused AVCodecContext parameter
Unused since d74a8cb7e42f703be5796eeb485f06af710ae8ca.
Reviewed-by: RĂ©mi Denis-Courmont <remi@remlab.net>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/ppc')
-rw-r--r-- | libavcodec/ppc/fmtconvert_altivec.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/ppc/fmtconvert_altivec.c b/libavcodec/ppc/fmtconvert_altivec.c index 7323eff0bd..2e34de7c90 100644 --- a/libavcodec/ppc/fmtconvert_altivec.c +++ b/libavcodec/ppc/fmtconvert_altivec.c @@ -54,8 +54,7 @@ static void int32_to_float_fmul_scalar_altivec(float *dst, const int32_t *src, #endif /* HAVE_ALTIVEC */ -av_cold void ff_fmt_convert_init_ppc(FmtConvertContext *c, - AVCodecContext *avctx) +av_cold void ff_fmt_convert_init_ppc(FmtConvertContext *c) { #if HAVE_ALTIVEC if (!PPC_ALTIVEC(av_get_cpu_flags())) |