summaryrefslogtreecommitdiffstats
path: root/libavcodec
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2011-03-04 22:51:51 -0500
committerJustin Ruggles <justin.ruggles@gmail.com>2011-03-07 11:15:29 -0500
commitd21be5f15bec15933cb6360aa0159961d987f449 (patch)
tree2cc9169bc78282585d3f0335da0395d4d75553c1 /libavcodec
parent159683ddec69bb4faadfc53de8e1d357e1abbbad (diff)
downloadffmpeg-streaming-d21be5f15bec15933cb6360aa0159961d987f449.zip
ffmpeg-streaming-d21be5f15bec15933cb6360aa0159961d987f449.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.
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/fmtconvert.c2
-rw-r--r--libavcodec/fmtconvert.h2
-rw-r--r--libavcodec/ppc/fmtconvert_altivec.c2
3 files changed, 3 insertions, 3 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);
}
diff --git a/libavcodec/fmtconvert.h b/libavcodec/fmtconvert.h
index f2ee261..7416184 100644
--- a/libavcodec/fmtconvert.h
+++ b/libavcodec/fmtconvert.h
@@ -73,7 +73,7 @@ typedef struct FmtConvertContext {
void ff_fmt_convert_init(FmtConvertContext *c, AVCodecContext *avctx);
void ff_fmt_convert_init_arm(FmtConvertContext *c, AVCodecContext *avctx);
-void ff_fmt_convert_init_ppc(FmtConvertContext *c, AVCodecContext *avctx);
+void ff_fmt_convert_init_altivec(FmtConvertContext *c, AVCodecContext *avctx);
void ff_fmt_convert_init_x86(FmtConvertContext *c, AVCodecContext *avctx);
#endif /* AVCODEC_FMTCONVERT_H */
diff --git a/libavcodec/ppc/fmtconvert_altivec.c b/libavcodec/ppc/fmtconvert_altivec.c
index e5287c9..30de0e6 100644
--- a/libavcodec/ppc/fmtconvert_altivec.c
+++ b/libavcodec/ppc/fmtconvert_altivec.c
@@ -132,7 +132,7 @@ float_to_int16_interleave_altivec(int16_t *dst, const float **src,
}
}
-void ff_fmt_convert_init_ppc(FmtConvertContext *c, AVCodecContext *avctx)
+void ff_fmt_convert_init_altivec(FmtConvertContext *c, AVCodecContext *avctx)
{
c->int32_to_float_fmul_scalar = int32_to_float_fmul_scalar_altivec;
if(!(avctx->flags & CODEC_FLAG_BITEXACT)) {
OpenPOWER on IntegriCloud