From f7813a5324be39d13ab536c245d15dfc602a7849 Mon Sep 17 00:00:00 2001 From: Tim Redfern Date: Sun, 29 Dec 2013 12:19:38 +0000 Subject: basic type mechanism working --- ffmpeg/libavcodec/h264qpel.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'ffmpeg/libavcodec/h264qpel.c') diff --git a/ffmpeg/libavcodec/h264qpel.c b/ffmpeg/libavcodec/h264qpel.c index f46da8f..7c86d2a 100644 --- a/ffmpeg/libavcodec/h264qpel.c +++ b/ffmpeg/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 pixeltmp int16_t @@ -45,7 +46,7 @@ #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 -- cgit v1.2.3