summaryrefslogtreecommitdiff
path: root/libavcodec/8svx.c
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2008-10-02 15:51:44 +0000
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2008-10-02 15:51:44 +0000
commit6dbfb7de82552062bb892e9f775f83a3e7072af4 (patch)
tree12e95d18fe21a1fcf2ffeee77d3f8ba4018dc45d /libavcodec/8svx.c
parentf974f1faafb51e74f683cfe5e55255e980071592 (diff)
Use "static const" instead of "const static"
Originally committed as revision 15514 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/8svx.c')
-rw-r--r--libavcodec/8svx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/8svx.c b/libavcodec/8svx.c
index 4a7f5d9fed..e4a5d84eff 100644
--- a/libavcodec/8svx.c
+++ b/libavcodec/8svx.c
@@ -35,9 +35,9 @@ typedef struct EightSvxContext {
int16_t *table;
} EightSvxContext;
-const static 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,
0, 1<<8, 2<<8, 3<<8, 5<<8, 8<<8, 13<<8, 21<<8 };
-const static int16_t exponential[16] = { -128<<8, -64<<8, -32<<8, -16<<8, -8<<8, -4<<8, -2<<8, -1<<8,
+static const int16_t exponential[16] = { -128<<8, -64<<8, -32<<8, -16<<8, -8<<8, -4<<8, -2<<8, -1<<8,
0, 1<<8, 2<<8, 4<<8, 8<<8, 16<<8, 32<<8, 64<<8 };
/** decode a frame */