|
@@ -4989,7 +4989,7 @@ unsigned int stb_vorbis_stream_length_in_samples(stb_vorbis *f)
|
|
|
// set. whoops!
|
|
|
break;
|
|
|
}
|
|
|
- previous_safe = last_page_loc+1;
|
|
|
+ //previous_safe = last_page_loc+1; // NOTE: not used after this point, but note for debugging
|
|
|
last_page_loc = stb_vorbis_get_file_offset(f);
|
|
|
}
|
|
|
|
|
@@ -5309,8 +5309,6 @@ int stb_vorbis_get_samples_short_interleaved(stb_vorbis *f, int channels, short
|
|
|
float **outputs;
|
|
|
int len = num_shorts / channels;
|
|
|
int n=0;
|
|
|
- int z = f->channels;
|
|
|
- if (z > channels) z = channels;
|
|
|
while (n < len) {
|
|
|
int k = f->channel_buffer_end - f->channel_buffer_start;
|
|
|
if (n+k >= len) k = len - n;
|
|
@@ -5329,8 +5327,6 @@ int stb_vorbis_get_samples_short(stb_vorbis *f, int channels, short **buffer, in
|
|
|
{
|
|
|
float **outputs;
|
|
|
int n=0;
|
|
|
- int z = f->channels;
|
|
|
- if (z > channels) z = channels;
|
|
|
while (n < len) {
|
|
|
int k = f->channel_buffer_end - f->channel_buffer_start;
|
|
|
if (n+k >= len) k = len - n;
|