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/rgb2rgb_template.c | |
parent | 1fda184a85178cfd7b98d9e308d18e1ded76a511 (diff) | |
download | ffmpeg-2b677ffca54a5fbef9c8860841c32f28ecd68f70.tar.gz |
swscale: Add av_cold attributes to init functions missing them
Diffstat (limited to 'libswscale/rgb2rgb_template.c')
-rw-r--r-- | libswscale/rgb2rgb_template.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libswscale/rgb2rgb_template.c b/libswscale/rgb2rgb_template.c index 3785ef9f07..3da2b0b2aa 100644 --- a/libswscale/rgb2rgb_template.c +++ b/libswscale/rgb2rgb_template.c @@ -26,6 +26,8 @@ #include <stddef.h> +#include "libavutil/attributes.h" + static inline void rgb24tobgr32_c(const uint8_t *src, uint8_t *dst, int src_size) { @@ -907,7 +909,7 @@ static void uyvytoyuv422_c(uint8_t *ydst, uint8_t *udst, uint8_t *vdst, } } -static inline void rgb2rgb_init_c(void) +static av_cold void rgb2rgb_init_c(void) { rgb15to16 = rgb15to16_c; rgb15tobgr24 = rgb15tobgr24_c; |