diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2011-03-04 22:51:51 -0500 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2011-03-07 11:15:29 -0500 |
commit | d21be5f15bec15933cb6360aa0159961d987f449 (patch) | |
tree | 2cc9169bc78282585d3f0335da0395d4d75553c1 /libavcodec/fmtconvert.h | |
parent | 159683ddec69bb4faadfc53de8e1d357e1abbbad (diff) | |
download | ffmpeg-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/fmtconvert.h')
-rw-r--r-- | libavcodec/fmtconvert.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/fmtconvert.h b/libavcodec/fmtconvert.h index f2ee261f99..7416184aae 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 */ |