summaryrefslogtreecommitdiff
path: root/ffmpeg/libavcodec/msmpeg4enc.c
diff options
context:
space:
mode:
authorTim Redfern <tim@eclectronics.org>2013-12-29 12:19:38 +0000
committerTim Redfern <tim@eclectronics.org>2013-12-29 12:19:38 +0000
commitf7813a5324be39d13ab536c245d15dfc602a7849 (patch)
treefad99148b88823d34a5df2f0a25881a002eb291b /ffmpeg/libavcodec/msmpeg4enc.c
parentb7a5a477b8ff4d4e3028b9dfb9a9df0a41463f92 (diff)
basic type mechanism working
Diffstat (limited to 'ffmpeg/libavcodec/msmpeg4enc.c')
-rw-r--r--ffmpeg/libavcodec/msmpeg4enc.c4
1 files changed, 2 insertions, 2 deletions
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 <stdint.h>
#include <string.h>
+#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;