From c9f933b5b62d3054021fcdca8597d1c2fb6bdb2f Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Fri, 1 Feb 2013 10:31:59 +0100 Subject: Add av_cold attributes to arch-specific init functions --- libavcodec/x86/mpegvideo.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libavcodec/x86/mpegvideo.c') diff --git a/libavcodec/x86/mpegvideo.c b/libavcodec/x86/mpegvideo.c index 599db949a8..4e16142182 100644 --- a/libavcodec/x86/mpegvideo.c +++ b/libavcodec/x86/mpegvideo.c @@ -19,6 +19,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include "libavutil/attributes.h" #include "libavutil/cpu.h" #include "libavutil/x86/asm.h" #include "libavcodec/avcodec.h" @@ -584,7 +585,7 @@ static void denoise_dct_sse2(MpegEncContext *s, int16_t *block){ #endif /* HAVE_INLINE_ASM */ -void ff_MPV_common_init_x86(MpegEncContext *s) +av_cold void ff_MPV_common_init_x86(MpegEncContext *s) { #if HAVE_INLINE_ASM int mm_flags = av_get_cpu_flags(); -- cgit v1.2.3