summaryrefslogtreecommitdiffstats
path: root/libavcodec/fmtconvert.c
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2011-03-04 22:51:51 -0500
committerMichael Niedermayer <michaelni@gmx.at>2011-03-08 02:09:31 +0100
commit539244eeb62bc52bc4991a9d0fc4e9b18934f94c (patch)
tree8450b7499344b72174d9c515bb55d5b58220907c /libavcodec/fmtconvert.c
parent21527d52f631cd06b16668744fb93955e145f8c9 (diff)
downloadffmpeg-streaming-539244eeb62bc52bc4991a9d0fc4e9b18934f94c.zip
ffmpeg-streaming-539244eeb62bc52bc4991a9d0fc4e9b18934f94c.tar.gz
cosmetics: rename ff_fmt_convert_init_ppc() to ff_fmt_convert_init_altivec().
It only has Altivec functions and is not compiled if Altivec is disabled. (cherry picked from commit d21be5f15bec15933cb6360aa0159961d987f449)
Diffstat (limited to 'libavcodec/fmtconvert.c')
-rw-r--r--libavcodec/fmtconvert.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/fmtconvert.c b/libavcodec/fmtconvert.c
index bf762cc..e27c1f6 100644
--- a/libavcodec/fmtconvert.c
+++ b/libavcodec/fmtconvert.c
@@ -63,6 +63,6 @@ av_cold void ff_fmt_convert_init(FmtConvertContext *c, AVCodecContext *avctx)
c->float_to_int16_interleave = float_to_int16_interleave_c;
if (ARCH_ARM) ff_fmt_convert_init_arm(c, avctx);
- if (HAVE_ALTIVEC) ff_fmt_convert_init_ppc(c, avctx);
+ if (HAVE_ALTIVEC) ff_fmt_convert_init_altivec(c, avctx);
if (HAVE_MMX) ff_fmt_convert_init_x86(c, avctx);
}
OpenPOWER on IntegriCloud