[xiph-cvs] cvs commit: theora/lib dct_decode.c
Ralph Giles
giles at xiph.org
Sun Nov 9 18:46:22 PST 2003
giles 03/11/09 21:46:22
Modified: lib dct_decode.c
Log:
'static' comes before 'const'. corrects a warning from gcc 3.3.
Revision Changes Path
1.8 +3 -3 theora/lib/dct_decode.c
Index: dct_decode.c
===================================================================
RCS file: /usr/local/cvsroot/theora/lib/dct_decode.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- dct_decode.c 18 Jun 2003 23:00:15 -0000 1.7
+++ dct_decode.c 10 Nov 2003 02:46:21 -0000 1.8
@@ -11,7 +11,7 @@
********************************************************************
function:
- last mod: $Id: dct_decode.c,v 1.7 2003/06/18 23:00:15 tterribe Exp $
+ last mod: $Id: dct_decode.c,v 1.8 2003/11/10 02:46:21 giles Exp $
********************************************************************/
@@ -28,7 +28,7 @@
#define PL 1
#define HIGHBITDUPPED(X) (((signed short) X) >> 15)
-const static ogg_uint32_t LoopFilterLimitValuesV1[Q_TABLE_SIZE] = {
+static const ogg_uint32_t LoopFilterLimitValuesV1[Q_TABLE_SIZE] = {
30, 25, 20, 20, 15, 15, 14, 14,
13, 13, 12, 12, 11, 11, 10, 10,
9, 9, 8, 8, 7, 7, 7, 7,
@@ -39,7 +39,7 @@
0, 0, 0, 0, 0, 0, 0, 0
};
-const static ogg_uint32_t LoopFilterLimitValuesV2[Q_TABLE_SIZE] = {
+static const ogg_uint32_t LoopFilterLimitValuesV2[Q_TABLE_SIZE] = {
30, 25, 20, 20, 15, 15, 14, 14,
13, 13, 12, 12, 11, 11, 10, 10,
9, 9, 8, 8, 7, 7, 7, 7,
<p><p>--- >8 ----
List archives: http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/ogg/
To unsubscribe from this list, send a message to 'cvs-request at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
More information about the commits
mailing list