@@ -839,9 +839,9 @@ struct stb_vorbis
839
839
int close_on_free ;
840
840
#endif
841
841
842
- uint8 * stream ;
843
- uint8 * stream_start ;
844
- uint8 * stream_end ;
842
+ const uint8 * stream ;
843
+ const uint8 * stream_start ;
844
+ const uint8 * stream_end ;
845
845
846
846
uint32 stream_len ;
847
847
@@ -1081,7 +1081,7 @@ static float square(float x)
1081
1081
// @OPTIMIZE: called multiple times per-packet with "constants"; move to setup
1082
1082
static int ilog (int32 n )
1083
1083
{
1084
- static signed char log2_4 [16 ] = { 0 ,1 ,2 ,2 ,3 ,3 ,3 ,3 ,4 ,4 ,4 ,4 ,4 ,4 ,4 ,4 };
1084
+ static const signed char log2_4 [16 ] = { 0 ,1 ,2 ,2 ,3 ,3 ,3 ,3 ,4 ,4 ,4 ,4 ,4 ,4 ,4 ,4 };
1085
1085
1086
1086
if (n < 0 ) return 0 ; // signed n returns 0
1087
1087
@@ -1218,8 +1218,8 @@ static void compute_accelerated_huffman(Codebook *c)
1218
1218
1219
1219
static int STBV_CDECL uint32_compare (const void * p , const void * q )
1220
1220
{
1221
- uint32 x = * (uint32 * ) p ;
1222
- uint32 y = * (uint32 * ) q ;
1221
+ uint32 x = * (const uint32 * ) p ;
1222
+ uint32 y = * (const uint32 * ) q ;
1223
1223
return x < y ? -1 : x > y ;
1224
1224
}
1225
1225
@@ -1289,7 +1289,7 @@ static void compute_sorted_huffman(Codebook *c, uint8 *lengths, uint32 *values)
1289
1289
// only run while parsing the header (3 times)
1290
1290
static int vorbis_validate (uint8 * data )
1291
1291
{
1292
- static uint8 vorbis [6 ] = { 'v' , 'o' , 'r' , 'b' , 'i' , 's' };
1292
+ static const uint8 vorbis [6 ] = { 'v' , 'o' , 'r' , 'b' , 'i' , 's' };
1293
1293
return memcmp (data , vorbis , 6 ) == 0 ;
1294
1294
}
1295
1295
@@ -1380,8 +1380,8 @@ typedef struct
1380
1380
1381
1381
static int STBV_CDECL point_compare (const void * p , const void * q )
1382
1382
{
1383
- stbv__floor_ordering * a = (stbv__floor_ordering * ) p ;
1384
- stbv__floor_ordering * b = (stbv__floor_ordering * ) q ;
1383
+ const stbv__floor_ordering * a = (const stbv__floor_ordering * ) p ;
1384
+ const stbv__floor_ordering * b = (const stbv__floor_ordering * ) q ;
1385
1385
return a -> x < b -> x ? -1 : a -> x > b -> x ;
1386
1386
}
1387
1387
@@ -1526,7 +1526,7 @@ static int set_file_offset(stb_vorbis *f, unsigned int loc)
1526
1526
}
1527
1527
1528
1528
1529
- static uint8 ogg_page_header [4 ] = { 0x4f , 0x67 , 0x67 , 0x53 };
1529
+ static const uint8 ogg_page_header [4 ] = { 0x4f , 0x67 , 0x67 , 0x53 };
1530
1530
1531
1531
static int capture_pattern (vorb * f )
1532
1532
{
@@ -2047,7 +2047,7 @@ static int predict_point(int x, int x0, int x1, int y0, int y1)
2047
2047
}
2048
2048
2049
2049
// the following table is block-copied from the specification
2050
- static float inverse_db_table [256 ] =
2050
+ static const float inverse_db_table [256 ] =
2051
2051
{
2052
2052
1.0649863e-07f , 1.1341951e-07f , 1.2079015e-07f , 1.2863978e-07f ,
2053
2053
1.3699951e-07f , 1.4590251e-07f , 1.5538408e-07f , 1.6548181e-07f ,
@@ -3310,7 +3310,7 @@ static int vorbis_decode_packet_rest(vorb *f, int *len, Mode *m, int left_start,
3310
3310
if (get_bits (f , 1 )) {
3311
3311
short * finalY ;
3312
3312
uint8 step2_flag [256 ];
3313
- static int range_list [4 ] = { 256 , 128 , 86 , 64 };
3313
+ static const int range_list [4 ] = { 256 , 128 , 86 , 64 };
3314
3314
int range = range_list [g -> floor1_multiplier - 1 ];
3315
3315
int offset = 2 ;
3316
3316
finalY = f -> finalY [i ];
@@ -3633,7 +3633,7 @@ static int is_whole_packet_present(stb_vorbis *f)
3633
3633
// of state to restore (primarily the page segment table)
3634
3634
3635
3635
int s = f -> next_seg , first = TRUE;
3636
- uint8 * p = f -> stream ;
3636
+ const uint8 * p = f -> stream ;
3637
3637
3638
3638
if (s != -1 ) { // if we're not starting the packet with a 'continue on next page' flag
3639
3639
for (; s < f -> segment_count ; ++ s ) {
@@ -3648,7 +3648,7 @@ static int is_whole_packet_present(stb_vorbis *f)
3648
3648
first = FALSE;
3649
3649
}
3650
3650
for (; s == -1 ;) {
3651
- uint8 * q ;
3651
+ const uint8 * q ;
3652
3652
int n ;
3653
3653
3654
3654
// check that we have the page header ready
@@ -4513,7 +4513,7 @@ void stb_vorbis_flush_pushdata(stb_vorbis *f)
4513
4513
f -> channel_buffer_end = 0 ;
4514
4514
}
4515
4515
4516
- static int vorbis_search_for_page_pushdata (vorb * f , uint8 * data , int data_len )
4516
+ static int vorbis_search_for_page_pushdata (vorb * f , const uint8 * data , int data_len )
4517
4517
{
4518
4518
int i ,n ;
4519
4519
for (i = 0 ; i < f -> page_crc_tests ; ++ i )
@@ -4619,11 +4619,11 @@ int stb_vorbis_decode_frame_pushdata(
4619
4619
4620
4620
if (f -> page_crc_tests >= 0 ) {
4621
4621
* samples = 0 ;
4622
- return vorbis_search_for_page_pushdata (f , ( uint8 * ) data , data_len );
4622
+ return vorbis_search_for_page_pushdata (f , data , data_len );
4623
4623
}
4624
4624
4625
- f -> stream = (uint8 * ) data ;
4626
- f -> stream_end = (uint8 * ) data + data_len ;
4625
+ f -> stream = (const uint8 * ) data ;
4626
+ f -> stream_end = (const uint8 * ) data + data_len ;
4627
4627
f -> error = VORBIS__no_error ;
4628
4628
4629
4629
// check that we have the entire packet in memory
@@ -4681,8 +4681,8 @@ stb_vorbis *stb_vorbis_open_pushdata(
4681
4681
{
4682
4682
stb_vorbis * f , p ;
4683
4683
vorbis_init (& p , alloc );
4684
- p .stream = (uint8 * ) data ;
4685
- p .stream_end = (uint8 * ) data + data_len ;
4684
+ p .stream = (const uint8 * ) data ;
4685
+ p .stream_end = (const uint8 * ) data + data_len ;
4686
4686
p .push_mode = TRUE;
4687
4687
if (!start_decoder (& p )) {
4688
4688
if (p .eof )
@@ -5310,9 +5310,9 @@ stb_vorbis * stb_vorbis_open_memory(const unsigned char *data, int len, int *err
5310
5310
return NULL ;
5311
5311
}
5312
5312
vorbis_init (& p , alloc );
5313
- p .stream = (uint8 * ) data ;
5314
- p .stream_end = (uint8 * ) data + len ;
5315
- p .stream_start = (uint8 * ) p .stream ;
5313
+ p .stream = (const uint8 * ) data ;
5314
+ p .stream_end = (const uint8 * ) data + len ;
5315
+ p .stream_start = (const uint8 * ) p .stream ;
5316
5316
p .stream_len = len ;
5317
5317
p .push_mode = FALSE;
5318
5318
if (start_decoder (& p )) {
@@ -5338,7 +5338,7 @@ stb_vorbis * stb_vorbis_open_memory(const unsigned char *data, int len, int *err
5338
5338
#define C (PLAYBACK_LEFT | PLAYBACK_RIGHT | PLAYBACK_MONO)
5339
5339
#define R (PLAYBACK_RIGHT | PLAYBACK_MONO)
5340
5340
5341
- static int8 channel_position [7 ][6 ] =
5341
+ static const int8 channel_position [7 ][6 ] =
5342
5342
{
5343
5343
{ 0 },
5344
5344
{ C },
@@ -5453,7 +5453,7 @@ static void convert_samples_short(int buf_c, short **buffer, int b_offset, int d
5453
5453
{
5454
5454
int i ;
5455
5455
if (buf_c != data_c && buf_c <= 2 && data_c <= 6 ) {
5456
- static int channel_selector [3 ][2 ] = { {0 }, {PLAYBACK_MONO }, {PLAYBACK_LEFT , PLAYBACK_RIGHT } };
5456
+ static const int channel_selector [3 ][2 ] = { {0 }, {PLAYBACK_MONO }, {PLAYBACK_LEFT , PLAYBACK_RIGHT } };
5457
5457
for (i = 0 ; i < buf_c ; ++ i )
5458
5458
compute_samples (channel_selector [buf_c ][i ], buffer [i ]+ b_offset , data_c , data , d_offset , samples );
5459
5459
} else {
0 commit comments