Commit 9ad5675f authored by Sigbjørn Skjæret's avatar Sigbjørn Skjæret Committed by Diego Biurrun

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
parent 6ba90c20
...@@ -70,7 +70,7 @@ static int msmpeg4v12_decode_mb(MpegEncContext *s, DCTELEM block[6][64]); ...@@ -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]); static int msmpeg4v34_decode_mb(MpegEncContext *s, DCTELEM block[6][64]);
/* vc1 externs */ /* vc1 externs */
extern uint8_t wmv3_dc_scale_table[32]; extern const uint8_t wmv3_dc_scale_table[32];
#ifdef DEBUG #ifdef DEBUG
int intra_count = 0; int intra_count = 0;
......
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
#include "base64.h" #include "base64.h"
/* ---------------- private code */ /* ---------------- private code */
static uint8_t map2[] = static const uint8_t map2[] =
{ {
0x3e, 0xff, 0xff, 0xff, 0x3f, 0x34, 0x35, 0x36, 0x3e, 0xff, 0xff, 0xff, 0x3f, 0x34, 0x35, 0x36,
0x37, 0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0xff, 0x37, 0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0xff,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment