Skip to content

Commit 393684a

Browse files
ccawley2011sezero
authored andcommitted
stb_vorbis: Make static arrays const.
nothings/stb#1660
1 parent e6775a3 commit 393684a

File tree

1 file changed

+25
-25
lines changed

1 file changed

+25
-25
lines changed

src/codecs/stb_vorbis/stb_vorbis.h

+25-25
Original file line numberDiff line numberDiff line change
@@ -839,9 +839,9 @@ struct stb_vorbis
839839
int close_on_free;
840840
#endif
841841

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;
845845

846846
uint32 stream_len;
847847

@@ -1081,7 +1081,7 @@ static float square(float x)
10811081
// @OPTIMIZE: called multiple times per-packet with "constants"; move to setup
10821082
static int ilog(int32 n)
10831083
{
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 };
10851085

10861086
if (n < 0) return 0; // signed n returns 0
10871087

@@ -1218,8 +1218,8 @@ static void compute_accelerated_huffman(Codebook *c)
12181218

12191219
static int STBV_CDECL uint32_compare(const void *p, const void *q)
12201220
{
1221-
uint32 x = * (uint32 *) p;
1222-
uint32 y = * (uint32 *) q;
1221+
uint32 x = * (const uint32 *) p;
1222+
uint32 y = * (const uint32 *) q;
12231223
return x < y ? -1 : x > y;
12241224
}
12251225

@@ -1289,7 +1289,7 @@ static void compute_sorted_huffman(Codebook *c, uint8 *lengths, uint32 *values)
12891289
// only run while parsing the header (3 times)
12901290
static int vorbis_validate(uint8 *data)
12911291
{
1292-
static uint8 vorbis[6] = { 'v', 'o', 'r', 'b', 'i', 's' };
1292+
static const uint8 vorbis[6] = { 'v', 'o', 'r', 'b', 'i', 's' };
12931293
return memcmp(data, vorbis, 6) == 0;
12941294
}
12951295

@@ -1380,8 +1380,8 @@ typedef struct
13801380

13811381
static int STBV_CDECL point_compare(const void *p, const void *q)
13821382
{
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;
13851385
return a->x < b->x ? -1 : a->x > b->x;
13861386
}
13871387

@@ -1526,7 +1526,7 @@ static int set_file_offset(stb_vorbis *f, unsigned int loc)
15261526
}
15271527

15281528

1529-
static uint8 ogg_page_header[4] = { 0x4f, 0x67, 0x67, 0x53 };
1529+
static const uint8 ogg_page_header[4] = { 0x4f, 0x67, 0x67, 0x53 };
15301530

15311531
static int capture_pattern(vorb *f)
15321532
{
@@ -2047,7 +2047,7 @@ static int predict_point(int x, int x0, int x1, int y0, int y1)
20472047
}
20482048

20492049
// the following table is block-copied from the specification
2050-
static float inverse_db_table[256] =
2050+
static const float inverse_db_table[256] =
20512051
{
20522052
1.0649863e-07f, 1.1341951e-07f, 1.2079015e-07f, 1.2863978e-07f,
20532053
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,
33103310
if (get_bits(f, 1)) {
33113311
short *finalY;
33123312
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 };
33143314
int range = range_list[g->floor1_multiplier-1];
33153315
int offset = 2;
33163316
finalY = f->finalY[i];
@@ -3633,7 +3633,7 @@ static int is_whole_packet_present(stb_vorbis *f)
36333633
// of state to restore (primarily the page segment table)
36343634

36353635
int s = f->next_seg, first = TRUE;
3636-
uint8 *p = f->stream;
3636+
const uint8 *p = f->stream;
36373637

36383638
if (s != -1) { // if we're not starting the packet with a 'continue on next page' flag
36393639
for (; s < f->segment_count; ++s) {
@@ -3648,7 +3648,7 @@ static int is_whole_packet_present(stb_vorbis *f)
36483648
first = FALSE;
36493649
}
36503650
for (; s == -1;) {
3651-
uint8 *q;
3651+
const uint8 *q;
36523652
int n;
36533653

36543654
// check that we have the page header ready
@@ -4513,7 +4513,7 @@ void stb_vorbis_flush_pushdata(stb_vorbis *f)
45134513
f->channel_buffer_end = 0;
45144514
}
45154515

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)
45174517
{
45184518
int i,n;
45194519
for (i=0; i < f->page_crc_tests; ++i)
@@ -4619,11 +4619,11 @@ int stb_vorbis_decode_frame_pushdata(
46194619

46204620
if (f->page_crc_tests >= 0) {
46214621
*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);
46234623
}
46244624

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;
46274627
f->error = VORBIS__no_error;
46284628

46294629
// check that we have the entire packet in memory
@@ -4681,8 +4681,8 @@ stb_vorbis *stb_vorbis_open_pushdata(
46814681
{
46824682
stb_vorbis *f, p;
46834683
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;
46864686
p.push_mode = TRUE;
46874687
if (!start_decoder(&p)) {
46884688
if (p.eof)
@@ -5310,9 +5310,9 @@ stb_vorbis * stb_vorbis_open_memory(const unsigned char *data, int len, int *err
53105310
return NULL;
53115311
}
53125312
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;
53165316
p.stream_len = len;
53175317
p.push_mode = FALSE;
53185318
if (start_decoder(&p)) {
@@ -5338,7 +5338,7 @@ stb_vorbis * stb_vorbis_open_memory(const unsigned char *data, int len, int *err
53385338
#define C (PLAYBACK_LEFT | PLAYBACK_RIGHT | PLAYBACK_MONO)
53395339
#define R (PLAYBACK_RIGHT | PLAYBACK_MONO)
53405340

5341-
static int8 channel_position[7][6] =
5341+
static const int8 channel_position[7][6] =
53425342
{
53435343
{ 0 },
53445344
{ C },
@@ -5453,7 +5453,7 @@ static void convert_samples_short(int buf_c, short **buffer, int b_offset, int d
54535453
{
54545454
int i;
54555455
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} };
54575457
for (i=0; i < buf_c; ++i)
54585458
compute_samples(channel_selector[buf_c][i], buffer[i]+b_offset, data_c, data, d_offset, samples);
54595459
} else {

0 commit comments

Comments
 (0)