diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-08-20 10:52:54 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-08-29 10:23:53 +0200 |
commit | 4e0799a4d04404abfa8fbc072640be76465158cf (patch) | |
tree | 65fcb6089c03d1c09b193bb371db01550c00fc23 /libswscale/bfin/swscale_bfin.c | |
parent | 3aa682f25324d811ec284edc808eb71a46eae950 (diff) | |
download | ffmpeg-4e0799a4d04404abfa8fbc072640be76465158cf.tar.gz |
swscale: Add some missing av_cold to arch-specific init functions
Diffstat (limited to 'libswscale/bfin/swscale_bfin.c')
-rw-r--r-- | libswscale/bfin/swscale_bfin.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libswscale/bfin/swscale_bfin.c b/libswscale/bfin/swscale_bfin.c index d4980e5d71..99bbfe4577 100644 --- a/libswscale/bfin/swscale_bfin.c +++ b/libswscale/bfin/swscale_bfin.c @@ -23,6 +23,7 @@ #include <stdint.h> #include "config.h" +#include "libavutil/attributes.h" #include "libswscale/swscale_internal.h" #if defined (__FDPIC__) && CONFIG_SRAM @@ -71,7 +72,7 @@ static int yuyvtoyv12_unscaled(SwsContext *c, const uint8_t *src[], return srcSliceH; } -void ff_get_unscaled_swscale_bfin(SwsContext *c) +av_cold void ff_get_unscaled_swscale_bfin(SwsContext *c) { if (c->dstFormat == AV_PIX_FMT_YUV420P && c->srcFormat == AV_PIX_FMT_UYVY422) { av_log(NULL, AV_LOG_VERBOSE, |