Lines Matching refs:stb_vorbis

112 typedef struct stb_vorbis stb_vorbis;  typedef
127 extern stb_vorbis_info stb_vorbis_get_info(stb_vorbis *f);
130 extern int stb_vorbis_get_error(stb_vorbis *f);
133 extern void stb_vorbis_close(stb_vorbis *f);
140 extern int stb_vorbis_get_sample_offset(stb_vorbis *f);
144 extern unsigned int stb_vorbis_get_file_offset(stb_vorbis *f);
157 extern stb_vorbis *stb_vorbis_open_pushdata(
172 stb_vorbis *f,
201 extern void stb_vorbis_flush_pushdata(stb_vorbis *f);
236 extern stb_vorbis * stb_vorbis_open_memory(const unsigned char *data, int len,
242 extern stb_vorbis * stb_vorbis_open_filename(const char *filename,
247 extern stb_vorbis * stb_vorbis_open_file(FILE *f, int close_handle_on_close,
257 extern stb_vorbis * stb_vorbis_open_file_section(FILE *f, int close_handle_on_close,
266 extern int stb_vorbis_seek_frame(stb_vorbis *f, unsigned int sample_number);
267 extern int stb_vorbis_seek(stb_vorbis *f, unsigned int sample_number);
275 extern int stb_vorbis_seek_start(stb_vorbis *f);
278 extern unsigned int stb_vorbis_stream_length_in_samples(stb_vorbis *f);
279 extern float stb_vorbis_stream_length_in_seconds(stb_vorbis *f);
282 extern int stb_vorbis_get_frame_float(stb_vorbis *f, int *channels, float ***output);
293 extern int stb_vorbis_get_frame_short_interleaved(stb_vorbis *f, int num_c, short *buffer, int num_…
294 extern int stb_vorbis_get_frame_short (stb_vorbis *f, int num_c, short **buffer, int num…
321 extern int stb_vorbis_get_samples_float_interleaved(stb_vorbis *f, int channels, float *buffer, int…
322 extern int stb_vorbis_get_samples_float(stb_vorbis *f, int channels, float **buffer, int num_sample…
329 extern int stb_vorbis_get_samples_short_interleaved(stb_vorbis *f, int channels, short *buffer, int…
330 extern int stb_vorbis_get_samples_short(stb_vorbis *f, int channels, short **buffer, int num_sample…
744 struct stb_vorbis struct
863 typedef struct stb_vorbis vorb; argument
1351 static int set_file_offset(stb_vorbis *f, unsigned int loc) in set_file_offset()
3434 static int vorbis_finish_frame(stb_vorbis *f, int len, int left, int right) in vorbis_finish_frame()
3486 static int vorbis_pump_first_frame(stb_vorbis *f) in vorbis_pump_first_frame()
3496 static int is_whole_packet_present(stb_vorbis *f, int end_page) in is_whole_packet_present()
4110 static void vorbis_deinit(stb_vorbis *p) in vorbis_deinit()
4166 void stb_vorbis_close(stb_vorbis *p) in stb_vorbis_close()
4173 static void vorbis_init(stb_vorbis *p, const stb_vorbis_alloc *z) in vorbis_init()
4192 int stb_vorbis_get_sample_offset(stb_vorbis *f) in stb_vorbis_get_sample_offset()
4200 stb_vorbis_info stb_vorbis_get_info(stb_vorbis *f) in stb_vorbis_get_info()
4212 int stb_vorbis_get_error(stb_vorbis *f) in stb_vorbis_get_error()
4219 static stb_vorbis * vorbis_alloc(stb_vorbis *f) in vorbis_alloc()
4221 stb_vorbis *p = (stb_vorbis *) setup_malloc(f, sizeof(*p)); in vorbis_alloc()
4227 void stb_vorbis_flush_pushdata(stb_vorbis *f) in stb_vorbis_flush_pushdata()
4331 stb_vorbis *f, // the file we're decoding in stb_vorbis_decode_frame_pushdata()
4400 stb_vorbis *stb_vorbis_open_pushdata( in stb_vorbis_open_pushdata()
4405 stb_vorbis *f, p; in stb_vorbis_open_pushdata()
4430 unsigned int stb_vorbis_get_file_offset(stb_vorbis *f) in stb_vorbis_get_file_offset()
4446 static uint32 vorbis_find_page(stb_vorbis *f, uint32 *end, uint32 *last) in vorbis_find_page()
4528 static int get_seek_page_info(stb_vorbis *f, ProbedPage *z) in get_seek_page_info()
4560 static int go_to_page_before(stb_vorbis *f, unsigned int limit_offset) in go_to_page_before()
4585 static int seek_to_sample_coarse(stb_vorbis *f, uint32 sample_number) in seek_to_sample_coarse()
4760 int stb_vorbis_seek_frame(stb_vorbis *f, unsigned int sample_number) in stb_vorbis_seek_frame()
4799 int stb_vorbis_seek(stb_vorbis *f, unsigned int sample_number) in stb_vorbis_seek()
4816 int stb_vorbis_seek_start(stb_vorbis *f) in stb_vorbis_seek_start()
4826 unsigned int stb_vorbis_stream_length_in_samples(stb_vorbis *f) in stb_vorbis_stream_length_in_samples()
4901 float stb_vorbis_stream_length_in_seconds(stb_vorbis *f) in stb_vorbis_stream_length_in_seconds()
4908 int stb_vorbis_get_frame_float(stb_vorbis *f, int *channels, float ***output) in stb_vorbis_get_frame_float()
4932 stb_vorbis * stb_vorbis_open_file_section(FILE *file, int close_on_free, int *error, const stb_vorb… in stb_vorbis_open_file_section()
4934 stb_vorbis *f, p; in stb_vorbis_open_file_section()
4953 stb_vorbis * stb_vorbis_open_file(FILE *file, int close_on_free, int *error, const stb_vorbis_alloc… in stb_vorbis_open_file()
4963 stb_vorbis * stb_vorbis_open_filename(const char *filename, int *error, const stb_vorbis_alloc *all… in stb_vorbis_open_filename()
4973 stb_vorbis * stb_vorbis_open_memory(const unsigned char *data, int len, int *error, const stb_vorbi… in stb_vorbis_open_memory()
4975 stb_vorbis *f, p; in stb_vorbis_open_memory()
5129 int stb_vorbis_get_frame_short(stb_vorbis *f, int num_c, short **buffer, int num_samples) in stb_vorbis_get_frame_short()
5165 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()
5178 int stb_vorbis_get_samples_short_interleaved(stb_vorbis *f, int channels, short *buffer, int num_sh… in stb_vorbis_get_samples_short_interleaved()
5199 int stb_vorbis_get_samples_short(stb_vorbis *f, int channels, short **buffer, int len) in stb_vorbis_get_samples_short()
5223 stb_vorbis *v = stb_vorbis_open_filename(filename, &error, NULL); in stb_vorbis_decode_filename()
5263 stb_vorbis *v = stb_vorbis_open_memory(mem, len, &error, NULL); in stb_vorbis_decode_memory()
5299 int stb_vorbis_get_samples_float_interleaved(stb_vorbis *f, int channels, float *buffer, int num_fl… in stb_vorbis_get_samples_float_interleaved()
5326 int stb_vorbis_get_samples_float(stb_vorbis *f, int channels, float **buffer, int num_samples) in stb_vorbis_get_samples_float()