mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 12:09:55 +00:00
Two tables that should be const
Originally committed as revision 11692 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
ccac843872
commit
9c9519fd39
@ -54,13 +54,13 @@ typedef struct Indeo3DecodeContext {
|
|||||||
unsigned short *corrector_type;
|
unsigned short *corrector_type;
|
||||||
} Indeo3DecodeContext;
|
} Indeo3DecodeContext;
|
||||||
|
|
||||||
static int corrector_type_0[24] = {
|
static const int corrector_type_0[24] = {
|
||||||
195, 159, 133, 115, 101, 93, 87, 77,
|
195, 159, 133, 115, 101, 93, 87, 77,
|
||||||
195, 159, 133, 115, 101, 93, 87, 77,
|
195, 159, 133, 115, 101, 93, 87, 77,
|
||||||
128, 79, 79, 79, 79, 79, 79, 79
|
128, 79, 79, 79, 79, 79, 79, 79
|
||||||
};
|
};
|
||||||
|
|
||||||
static int corrector_type_2[8] = { 9, 7, 6, 8, 5, 4, 3, 2 };
|
static const int corrector_type_2[8] = { 9, 7, 6, 8, 5, 4, 3, 2 };
|
||||||
|
|
||||||
static void build_modpred(Indeo3DecodeContext *s)
|
static void build_modpred(Indeo3DecodeContext *s)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user