[FFmpeg-cvslog] r15519 - trunk/libavcodec/8svx.c

reimar subversion
Thu Oct 2 18:29:06 CEST 2008


Author: reimar
Date: Thu Oct  2 18:29:06 2008
New Revision: 15519

Log:
Make 8svx codec context table pointer const to match the type of the
array.

Modified:
   trunk/libavcodec/8svx.c

Modified: trunk/libavcodec/8svx.c
==============================================================================
--- trunk/libavcodec/8svx.c	(original)
+++ trunk/libavcodec/8svx.c	Thu Oct  2 18:29:06 2008
@@ -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,




More information about the ffmpeg-cvslog mailing list