Commit df563360 authored by reimar's avatar reimar

Make 8svx codec context table pointer const to match the type of the

array.

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@15519 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent c57ae340
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
/** decoder context */ /** decoder context */
typedef struct EightSvxContext { typedef struct EightSvxContext {
int16_t fib_acc; int16_t fib_acc;
int16_t *table; const int16_t *table;
} EightSvxContext; } EightSvxContext;
static const int16_t fibonacci[16] = { -34<<8, -21<<8, -13<<8, -8<<8, -5<<8, -3<<8, -2<<8, -1<<8, static const int16_t fibonacci[16] = { -34<<8, -21<<8, -13<<8, -8<<8, -5<<8, -3<<8, -2<<8, -1<<8,
......
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