diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-02-01 10:31:59 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-05-04 21:09:45 +0200 |
commit | 6fee1b90ce3bf4fbdfde7016e0890057c9000487 (patch) | |
tree | c1b37ab53c8caab6b47702ec4451038c5d2882e4 /libavcodec/h264qpel.c | |
parent | 72e228b274a98af1aba9588415d0cd87fde44663 (diff) | |
download | ffmpeg-6fee1b90ce3bf4fbdfde7016e0890057c9000487.tar.gz |
avcodec: Add av_cold attributes to init functions missing them
Diffstat (limited to 'libavcodec/h264qpel.c')
-rw-r--r-- | libavcodec/h264qpel.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/h264qpel.c b/libavcodec/h264qpel.c index 1bf31688f5..24c9299786 100644 --- a/libavcodec/h264qpel.c +++ b/libavcodec/h264qpel.c @@ -19,6 +19,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include "libavutil/attributes.h" #include "h264qpel.h" #define BIT_DEPTH 8 @@ -33,7 +34,7 @@ #include "h264qpel_template.c" #undef BIT_DEPTH -void ff_h264qpel_init(H264QpelContext *c, int bit_depth) +av_cold void ff_h264qpel_init(H264QpelContext *c, int bit_depth) { #undef FUNCC #define FUNCC(f, depth) f ## _ ## depth ## _c |