Commit 333538a9 authored by diego's avatar diego

Add a couple of missing consts.

patch by Sigbjørn Skjæret, cisc broadpark no


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@11528 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 4efe0239
...@@ -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