aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/ppc/fmtconvert_altivec.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-02-06 13:27:24 +0100
committerMichael Niedermayer <michaelni@gmx.at>2013-02-06 13:27:24 +0100
commit6c3888487686a2e6cd505cb60d58106954e3569b (patch)
treefed5222c8da1b4957ad67cdcbdf878ee7370a07c /libavcodec/ppc/fmtconvert_altivec.c
parent0ddca7d416cc8b80d9943405d6d0bb39bc2dec06 (diff)
parent620289a20e022b9c16c10d546ef86cc0bb77cc84 (diff)
downloadffmpeg-6c3888487686a2e6cd505cb60d58106954e3569b.tar.gz
Merge commit '620289a20e022b9c16c10d546ef86cc0bb77cc84'
* commit '620289a20e022b9c16c10d546ef86cc0bb77cc84': sh4: Fix silly type vs. variable name search and replace typo configure: Group all hwaccels together in a separate variable Add av_cold attributes to arch-specific init functions Conflicts: configure libavcodec/arm/mpegvideo_armv5te.c libavcodec/x86/mlpdsp.c libavcodec/x86/motion_est.c libavcodec/x86/mpegvideoenc.c libavcodec/x86/videodsp_init.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/ppc/fmtconvert_altivec.c')
-rw-r--r--libavcodec/ppc/fmtconvert_altivec.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/ppc/fmtconvert_altivec.c b/libavcodec/ppc/fmtconvert_altivec.c
index 740614d335..b29c7d4d39 100644
--- a/libavcodec/ppc/fmtconvert_altivec.c
+++ b/libavcodec/ppc/fmtconvert_altivec.c
@@ -21,6 +21,7 @@
#include "libavcodec/fmtconvert.h"
#include "libavutil/ppc/util_altivec.h"
+#include "libavutil/attributes.h"
#include "libavutil/mem.h"
#include "dsputil_altivec.h"
@@ -155,7 +156,7 @@ static void float_to_int16_interleave_altivec(int16_t *dst, const float **src,
}
}
-void ff_fmt_convert_init_altivec(FmtConvertContext *c, AVCodecContext *avctx)
+av_cold 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)) {