This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
Make 8svx codec context table pointer const to match the type of the
array. Originally committed as revision 15519 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Reimar Döffinger
16 years ago
parent
910f02a054
commit
19998314cd
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/8svx.c
+ 1
- 1
libavcodec/8svx.c
View File
@@ -32,7 +32,7 @@
/** decoder context */
typedef struct EightSvxContext {
int16_t fib_acc;
int16_t *table;
const
int16_t *table;
} EightSvxContext;
static const int16_t fibonacci[16] = { -34<<8, -21<<8, -13<<8, -8<<8, -5<<8, -3<<8, -2<<8, -1<<8,
Write
Preview
Loading…
Cancel
Save