summaryrefslogtreecommitdiffstats
path: root/libavcodec/ppc/h264_qpel.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2013-02-01 10:31:59 +0100
committerDiego Biurrun <diego@biurrun.de>2013-02-05 17:01:05 +0100
commitc9f933b5b62d3054021fcdca8597d1c2fb6bdb2f (patch)
treec806492fc39c6605545f5e2b216fdfb36ed4840b /libavcodec/ppc/h264_qpel.c
parent25841dfe806a13de526ae09c11149ab1f83555a8 (diff)
downloadffmpeg-streaming-c9f933b5b62d3054021fcdca8597d1c2fb6bdb2f.zip
ffmpeg-streaming-c9f933b5b62d3054021fcdca8597d1c2fb6bdb2f.tar.gz
Add av_cold attributes to arch-specific init functions
Diffstat (limited to 'libavcodec/ppc/h264_qpel.c')
-rw-r--r--libavcodec/ppc/h264_qpel.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/libavcodec/ppc/h264_qpel.c b/libavcodec/ppc/h264_qpel.c
index c32e07b..b70d4a9 100644
--- a/libavcodec/ppc/h264_qpel.c
+++ b/libavcodec/ppc/h264_qpel.c
@@ -19,6 +19,7 @@
*/
#include "config.h"
+#include "libavutil/attributes.h"
#include "libavcodec/h264qpel.h"
#if HAVE_ALTIVEC
@@ -286,7 +287,8 @@ void ff_dsputil_h264_init_ppc(DSPContext* c, AVCodecContext *avctx)
}
#endif /* HAVE_ALTIVEC */
-void ff_h264qpel_init_ppc(H264QpelContext* c, int bit_depth) {
+av_cold void ff_h264qpel_init_ppc(H264QpelContext *c, int bit_depth)
+{
#if HAVE_ALTIVEC
const int high_bit_depth = bit_depth > 8;
OpenPOWER on IntegriCloud