diff options
author | Sigbjørn Skjæret <cisc@broadpark.no> | 2008-01-14 22:10:19 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-01-14 22:10:19 +0000 |
commit | 9ad5675f251fae2950a8132347feeb9105d44f70 (patch) | |
tree | 636a8bde7c7ef8f35444f105b6c6cb5868ae8022 | |
parent | 6ba90c204c4921ba72602d734bb17111851baaed (diff) | |
download | ffmpeg-9ad5675f251fae2950a8132347feeb9105d44f70.tar.gz |
Add a couple of missing consts.
patch by Sigbjørn Skjæret, cisc broadpark no
Originally committed as revision 11528 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/msmpeg4.c | 2 | ||||
-rw-r--r-- | libavutil/base64.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/msmpeg4.c b/libavcodec/msmpeg4.c index 420dc4dc67..8ca17c99d8 100644 --- a/libavcodec/msmpeg4.c +++ b/libavcodec/msmpeg4.c @@ -70,7 +70,7 @@ static int msmpeg4v12_decode_mb(MpegEncContext *s, DCTELEM block[6][64]); static int msmpeg4v34_decode_mb(MpegEncContext *s, DCTELEM block[6][64]); /* vc1 externs */ -extern uint8_t wmv3_dc_scale_table[32]; +extern const uint8_t wmv3_dc_scale_table[32]; #ifdef DEBUG int intra_count = 0; diff --git a/libavutil/base64.c b/libavutil/base64.c index 0f497981c2..8567c9924b 100644 --- a/libavutil/base64.c +++ b/libavutil/base64.c @@ -29,7 +29,7 @@ #include "base64.h" /* ---------------- private code */ -static uint8_t map2[] = +static const uint8_t map2[] = { 0x3e, 0xff, 0xff, 0xff, 0x3f, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0xff, |