Lines Matching refs:stb_vorbis

126 typedef struct stb_vorbis stb_vorbis;  typedef
149 FAUDIOAPI stb_vorbis_info stb_vorbis_get_info(stb_vorbis *f);
152 FAUDIOAPI stb_vorbis_comment stb_vorbis_get_comment(stb_vorbis *f);
155 FAUDIOAPI int stb_vorbis_get_error(stb_vorbis *f);
158 FAUDIOAPI void stb_vorbis_close(stb_vorbis *f);
165 FAUDIOAPI int stb_vorbis_get_sample_offset(stb_vorbis *f);
169 FAUDIOAPI unsigned int stb_vorbis_get_file_offset(stb_vorbis *f);
182 extern stb_vorbis *stb_vorbis_open_pushdata(
197 stb_vorbis *f,
226 extern void stb_vorbis_flush_pushdata(stb_vorbis *f);
261 FAUDIOAPI stb_vorbis * stb_vorbis_open_memory(const unsigned char *data, int len,
267 FAUDIOAPI stb_vorbis * stb_vorbis_open_filename(const char *filename,
272 FAUDIOAPI stb_vorbis * stb_vorbis_open_file(FILE *f, int close_handle_on_close,
282 FAUDIOAPI stb_vorbis * stb_vorbis_open_file_section(FILE *f, int close_handle_on_close,
291 FAUDIOAPI int stb_vorbis_seek_frame(stb_vorbis *f, unsigned int sample_number);
292 FAUDIOAPI int stb_vorbis_seek(stb_vorbis *f, unsigned int sample_number);
300 FAUDIOAPI int stb_vorbis_seek_start(stb_vorbis *f);
303 FAUDIOAPI unsigned int stb_vorbis_stream_length_in_samples(stb_vorbis *f);
304 FAUDIOAPI float stb_vorbis_stream_length_in_seconds(stb_vorbis *f);
307 FAUDIOAPI int stb_vorbis_get_frame_float(stb_vorbis *f, int *channels, float ***output);
318 extern int stb_vorbis_get_frame_short_interleaved(stb_vorbis *f, int num_c, short *buffer, int num_…
319 extern int stb_vorbis_get_frame_short (stb_vorbis *f, int num_c, short **buffer, int num…
346 FAUDIOAPI int stb_vorbis_get_samples_float_interleaved(stb_vorbis *f, int channels, float *buffer, …
347 FAUDIOAPI int stb_vorbis_get_samples_float(stb_vorbis *f, int channels, float **buffer, int num_sam…
354 extern int stb_vorbis_get_samples_short_interleaved(stb_vorbis *f, int channels, short *buffer, int…
355 extern int stb_vorbis_get_samples_short(stb_vorbis *f, int channels, short **buffer, int num_sample…
774 struct stb_vorbis struct
900 typedef struct stb_vorbis vorb; argument
1391 static int set_file_offset(stb_vorbis *f, unsigned int loc) in set_file_offset()
3449 static int vorbis_finish_frame(stb_vorbis *f, int len, int left, int right) in vorbis_finish_frame()
3502 static int vorbis_pump_first_frame(stb_vorbis *f) in vorbis_pump_first_frame()
3512 static int is_whole_packet_present(stb_vorbis *f) in is_whole_packet_present()
4198 static void vorbis_deinit(stb_vorbis *p) in vorbis_deinit()
4261 void stb_vorbis_close(stb_vorbis *p) in stb_vorbis_close()
4268 static void vorbis_init(stb_vorbis *p, const stb_vorbis_alloc *z) in vorbis_init()
4287 int stb_vorbis_get_sample_offset(stb_vorbis *f) in stb_vorbis_get_sample_offset()
4295 stb_vorbis_info stb_vorbis_get_info(stb_vorbis *f) in stb_vorbis_get_info()
4307 stb_vorbis_comment stb_vorbis_get_comment(stb_vorbis *f) in stb_vorbis_get_comment()
4316 int stb_vorbis_get_error(stb_vorbis *f) in stb_vorbis_get_error()
4323 static stb_vorbis * vorbis_alloc(stb_vorbis *f) in vorbis_alloc()
4325 stb_vorbis *p = (stb_vorbis *) setup_malloc(f, sizeof(*p)); in vorbis_alloc()
4331 void stb_vorbis_flush_pushdata(stb_vorbis *f) in stb_vorbis_flush_pushdata()
4435 stb_vorbis *f, // the file we're decoding in stb_vorbis_decode_frame_pushdata()
4504 stb_vorbis *stb_vorbis_open_pushdata( in stb_vorbis_open_pushdata()
4509 stb_vorbis *f, p; in stb_vorbis_open_pushdata()
4534 unsigned int stb_vorbis_get_file_offset(stb_vorbis *f) in stb_vorbis_get_file_offset()
4550 static uint32 vorbis_find_page(stb_vorbis *f, uint32 *end, uint32 *last) in vorbis_find_page()
4632 static int get_seek_page_info(stb_vorbis *f, ProbedPage *z) in get_seek_page_info()
4664 static int go_to_page_before(stb_vorbis *f, unsigned int limit_offset) in go_to_page_before()
4689 static int seek_to_sample_coarse(stb_vorbis *f, uint32 sample_number) in seek_to_sample_coarse()
4869 int stb_vorbis_seek_frame(stb_vorbis *f, unsigned int sample_number) in stb_vorbis_seek_frame()
4908 int stb_vorbis_seek(stb_vorbis *f, unsigned int sample_number) in stb_vorbis_seek()
4925 int stb_vorbis_seek_start(stb_vorbis *f) in stb_vorbis_seek_start()
4935 unsigned int stb_vorbis_stream_length_in_samples(stb_vorbis *f) in stb_vorbis_stream_length_in_samples()
5010 float stb_vorbis_stream_length_in_seconds(stb_vorbis *f) in stb_vorbis_stream_length_in_seconds()
5017 int stb_vorbis_get_frame_float(stb_vorbis *f, int *channels, float ***output) in stb_vorbis_get_frame_float()
5041 stb_vorbis * stb_vorbis_open_file_section(FILE *file, int close_on_free, int *error, const stb_vorb… in stb_vorbis_open_file_section()
5043 stb_vorbis *f, p; in stb_vorbis_open_file_section()
5062 stb_vorbis * stb_vorbis_open_file(FILE *file, int close_on_free, int *error, const stb_vorbis_alloc… in stb_vorbis_open_file()
5072 stb_vorbis * stb_vorbis_open_filename(const char *filename, int *error, const stb_vorbis_alloc *all… in stb_vorbis_open_filename()
5088 stb_vorbis * stb_vorbis_open_memory(const unsigned char *data, int len, int *error, const stb_vorbi… in stb_vorbis_open_memory()
5090 stb_vorbis *f, p; in stb_vorbis_open_memory()
5244 int stb_vorbis_get_frame_short(stb_vorbis *f, int num_c, short **buffer, int num_samples) in stb_vorbis_get_frame_short()
5280 int stb_vorbis_get_frame_short_interleaved(stb_vorbis *f, int num_c, short *buffer, int num_shorts) in stb_vorbis_get_frame_short_interleaved()
5293 int stb_vorbis_get_samples_short_interleaved(stb_vorbis *f, int channels, short *buffer, int num_sh… in stb_vorbis_get_samples_short_interleaved()
5314 int stb_vorbis_get_samples_short(stb_vorbis *f, int channels, short **buffer, int len) in stb_vorbis_get_samples_short()
5338 stb_vorbis *v = stb_vorbis_open_filename(filename, &error, NULL); in stb_vorbis_decode_filename()
5378 stb_vorbis *v = stb_vorbis_open_memory(mem, len, &error, NULL); in stb_vorbis_decode_memory()
5414 int stb_vorbis_get_samples_float_interleaved(stb_vorbis *f, int channels, float *buffer, int num_fl… in stb_vorbis_get_samples_float_interleaved()
5441 int stb_vorbis_get_samples_float(stb_vorbis *f, int channels, float **buffer, int num_samples) in stb_vorbis_get_samples_float()