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/msmpeg4enc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ffmpeg/libavcodec/msmpeg4enc.c') diff --git a/ffmpeg/libavcodec/msmpeg4enc.c b/ffmpeg/libavcodec/msmpeg4enc.c index 82e6646..e7f51db 100644 --- a/ffmpeg/libavcodec/msmpeg4enc.c +++ b/ffmpeg/libavcodec/msmpeg4enc.c @@ -30,10 +30,10 @@ #include #include +#include "libavutil/attributes.h" #include "libavutil/avutil.h" #include "libavutil/mem.h" #include "mpegvideo.h" -#include "msmpeg4.h" #include "h263.h" #include "mpeg4video.h" #include "msmpeg4.h" @@ -45,7 +45,7 @@ static uint8_t rl_length[NB_RL_TABLES][MAX_LEVEL+1][MAX_RUN+1][2]; /* build the table which associate a (x,y) motion vector to a vlc */ -static void init_mv_table(MVTable *tab) +static av_cold void init_mv_table(MVTable *tab) { int i, x, y; -- cgit v1.2.3