diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-04-18 15:54:45 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-05-04 22:48:05 +0200 |
commit | 2b677ffca54a5fbef9c8860841c32f28ecd68f70 (patch) | |
tree | 7fb8d59367a3d45f1811f7eb0d9ddd41effd0d19 /libswscale/x86 | |
parent | 1fda184a85178cfd7b98d9e308d18e1ded76a511 (diff) | |
download | ffmpeg-2b677ffca54a5fbef9c8860841c32f28ecd68f70.tar.gz |
swscale: Add av_cold attributes to init functions missing them
Diffstat (limited to 'libswscale/x86')
-rw-r--r-- | libswscale/x86/rgb2rgb_template.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libswscale/x86/rgb2rgb_template.c b/libswscale/x86/rgb2rgb_template.c index 205b749244..5aeef8ca2c 100644 --- a/libswscale/x86/rgb2rgb_template.c +++ b/libswscale/x86/rgb2rgb_template.c @@ -26,6 +26,8 @@ #include <stddef.h> +#include "libavutil/attributes.h" + #undef PREFETCH #undef MOVNTQ #undef EMMS @@ -2465,7 +2467,7 @@ static void RENAME(uyvytoyuv422)(uint8_t *ydst, uint8_t *udst, uint8_t *vdst, co #endif /* !COMPILE_TEMPLATE_AMD3DNOW */ #endif /* !COMPILE_TEMPLATE_SSE2 */ -static inline void RENAME(rgb2rgb_init)(void) +static av_cold void RENAME(rgb2rgb_init)(void) { #if !COMPILE_TEMPLATE_SSE2 #if !COMPILE_TEMPLATE_AMD3DNOW |