Lines Matching refs:channel_buffer_start

884    int channel_buffer_start;  member
3113 f->channel_buffer_start = f->channel_buffer_end = 0; in vorbis_decode_initial()
4330 f->channel_buffer_start = 0; in stb_vorbis_flush_pushdata()
4909 assert(f->channel_buffer_start + (int) (sample_number-frame_start) <= f->channel_buffer_end); in stb_vorbis_seek()
4910 f->channel_buffer_start += (sample_number - frame_start); in stb_vorbis_seek()
5014 f->channel_buffer_start = f->channel_buffer_end = 0; in stb_vorbis_get_frame_float()
5022 f->channel_buffer_start = left; in stb_vorbis_get_frame_float()
5292 int k = f->channel_buffer_end - f->channel_buffer_start; in stb_vorbis_get_samples_short_interleaved()
5295 …s_short_interleaved(channels, buffer, f->channels, f->channel_buffers, f->channel_buffer_start, k); in stb_vorbis_get_samples_short_interleaved()
5298 f->channel_buffer_start += k; in stb_vorbis_get_samples_short_interleaved()
5312 int k = f->channel_buffer_end - f->channel_buffer_start; in stb_vorbis_get_samples_short()
5315 …rt_samples_short(channels, buffer, n, f->channels, f->channel_buffers, f->channel_buffer_start, k); in stb_vorbis_get_samples_short()
5317 f->channel_buffer_start += k; in stb_vorbis_get_samples_short()
5414 int k = f->channel_buffer_end - f->channel_buffer_start; in stb_vorbis_get_samples_float_interleaved()
5418 *buffer++ = f->channel_buffers[i][f->channel_buffer_start+j]; in stb_vorbis_get_samples_float_interleaved()
5423 f->channel_buffer_start += k; in stb_vorbis_get_samples_float_interleaved()
5440 int k = f->channel_buffer_end - f->channel_buffer_start; in stb_vorbis_get_samples_float()
5444 memcpy(buffer[i]+n, f->channel_buffers[i]+f->channel_buffer_start, sizeof(float)*k); in stb_vorbis_get_samples_float()
5449 f->channel_buffer_start += k; in stb_vorbis_get_samples_float()