zenilib  0.5.3.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
vorbisfile.h
Go to the documentation of this file.
1 /********************************************************************
2  * *
3  * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
4  * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
5  * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
6  * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
7  * *
8  * THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2007 *
9  * by the Xiph.Org Foundation http://www.xiph.org/ *
10  * *
11  ********************************************************************
12 
13  function: stdio-based convenience library for opening/seeking/decoding
14  last mod: $Id: vorbisfile.h 17182 2010-04-29 03:48:32Z xiphmont $
15 
16  ********************************************************************/
17 
18 #ifndef _OV_FILE_H_
19 #define _OV_FILE_H_
20 
21 #ifdef __cplusplus
22 extern "C"
23 {
24 #endif /* __cplusplus */
25 
26 #include <stdio.h>
27 #include "codec.h"
28 
29 /* The function prototypes for the callbacks are basically the same as for
30  * the stdio functions fread, fseek, fclose, ftell.
31  * The one difference is that the FILE * arguments have been replaced with
32  * a void * - this is to be used as a pointer to whatever internal data these
33  * functions might need. In the stdio case, it's just a FILE * cast to a void *
34  *
35  * If you use other functions, check the docs for these functions and return
36  * the right values. For seek_func(), you *MUST* return -1 if the stream is
37  * unseekable
38  */
39 typedef struct {
40  size_t (*read_func) (void *ptr, size_t size, size_t nmemb, void *datasource);
41  int (*seek_func) (void *datasource, ogg_int64_t offset, int whence);
42  int (*close_func) (void *datasource);
43  long (*tell_func) (void *datasource);
44 } ov_callbacks;
45 
46 #ifndef OV_EXCLUDE_STATIC_CALLBACKS
47 
48 /* a few sets of convenient callbacks, especially for use under
49  * Windows where ov_open_callbacks() should always be used instead of
50  * ov_open() to avoid problems with incompatible crt.o version linking
51  * issues. */
52 
53 static int _ov_header_fseek_wrap(FILE *f,ogg_int64_t off,int whence){
54  if(f==NULL)return(-1);
55 
56 #ifdef __MINGW32__
57  return fseeko64(f,off,whence);
58 #elif defined (_WIN32)
59  return _fseeki64(f,off,whence);
60 #else
61  return fseek(f,off,whence);
62 #endif
63 }
64 
65 /* These structs below (OV_CALLBACKS_DEFAULT etc) are defined here as
66  * static data. That means that every file which includes this header
67  * will get its own copy of these structs whether it uses them or
68  * not unless it #defines OV_EXCLUDE_STATIC_CALLBACKS.
69  * These static symbols are essential on platforms such as Windows on
70  * which several different versions of stdio support may be linked to
71  * by different DLLs, and we need to be certain we know which one
72  * we're using (the same one as the main application).
73  */
74 
76  (size_t (*)(void *, size_t, size_t, void *)) fread,
77  (int (*)(void *, ogg_int64_t, int)) _ov_header_fseek_wrap,
78  (int (*)(void *)) fclose,
79  (long (*)(void *)) ftell
80 };
81 
83  (size_t (*)(void *, size_t, size_t, void *)) fread,
84  (int (*)(void *, ogg_int64_t, int)) _ov_header_fseek_wrap,
85  (int (*)(void *)) NULL,
86  (long (*)(void *)) ftell
87 };
88 
90  (size_t (*)(void *, size_t, size_t, void *)) fread,
91  (int (*)(void *, ogg_int64_t, int)) NULL,
92  (int (*)(void *)) fclose,
93  (long (*)(void *)) NULL
94 };
95 
97  (size_t (*)(void *, size_t, size_t, void *)) fread,
98  (int (*)(void *, ogg_int64_t, int)) NULL,
99  (int (*)(void *)) NULL,
100  (long (*)(void *)) NULL
101 };
102 
103 #endif
104 
105 #define NOTOPEN 0
106 #define PARTOPEN 1
107 #define OPENED 2
108 #define STREAMSET 3
109 #define INITSET 4
110 
111 typedef struct OggVorbis_File {
112  void *datasource; /* Pointer to a FILE *, etc. */
113  int seekable;
117 
118  /* If the FILE handle isn't seekable (eg, a pipe), only the current
119  stream appears */
120  int links;
123  long *serialnos;
124  ogg_int64_t *pcmlengths; /* overloaded to maintain binary
125  compatibility; x2 size, stores both
126  beginning and end values */
129 
130  /* Decoding working state local storage */
135 
136  double bittrack;
137  double samptrack;
138 
139  ogg_stream_state os; /* take physical pages, weld into a logical
140  stream of packets */
141  vorbis_dsp_state vd; /* central working state for the packet->PCM decoder */
142  vorbis_block vb; /* local working space for packet->PCM decode */
143 
145 
147 
148 
149 VORBISFILE_DLL int ov_clear(OggVorbis_File *vf);
150 VORBISFILE_DLL int ov_fopen(const char *path,OggVorbis_File *vf);
151 VORBISFILE_DLL int ov_open(FILE *f,OggVorbis_File *vf,const char *initial,long ibytes);
152 VORBISFILE_DLL int ov_open_callbacks(void *datasource, OggVorbis_File *vf,
153  const char *initial, long ibytes, ov_callbacks callbacks);
154 
155 VORBISFILE_DLL int ov_test(FILE *f,OggVorbis_File *vf,const char *initial,long ibytes);
156 VORBISFILE_DLL int ov_test_callbacks(void *datasource, OggVorbis_File *vf,
157  const char *initial, long ibytes, ov_callbacks callbacks);
158 VORBISFILE_DLL int ov_test_open(OggVorbis_File *vf);
159 
160 VORBISFILE_DLL long ov_bitrate(OggVorbis_File *vf,int i);
161 VORBISFILE_DLL long ov_bitrate_instant(OggVorbis_File *vf);
162 VORBISFILE_DLL long ov_streams(OggVorbis_File *vf);
163 VORBISFILE_DLL long ov_seekable(OggVorbis_File *vf);
164 VORBISFILE_DLL long ov_serialnumber(OggVorbis_File *vf,int i);
165 
166 VORBISFILE_DLL ogg_int64_t ov_raw_total(OggVorbis_File *vf,int i);
167 VORBISFILE_DLL ogg_int64_t ov_pcm_total(OggVorbis_File *vf,int i);
168 VORBISFILE_DLL double ov_time_total(OggVorbis_File *vf,int i);
169 
170 VORBISFILE_DLL int ov_raw_seek(OggVorbis_File *vf,ogg_int64_t pos);
171 VORBISFILE_DLL int ov_pcm_seek(OggVorbis_File *vf,ogg_int64_t pos);
172 VORBISFILE_DLL int ov_pcm_seek_page(OggVorbis_File *vf,ogg_int64_t pos);
173 VORBISFILE_DLL int ov_time_seek(OggVorbis_File *vf,double pos);
174 VORBISFILE_DLL int ov_time_seek_page(OggVorbis_File *vf,double pos);
175 
176 VORBISFILE_DLL int ov_raw_seek_lap(OggVorbis_File *vf,ogg_int64_t pos);
177 VORBISFILE_DLL int ov_pcm_seek_lap(OggVorbis_File *vf,ogg_int64_t pos);
178 VORBISFILE_DLL int ov_pcm_seek_page_lap(OggVorbis_File *vf,ogg_int64_t pos);
179 VORBISFILE_DLL int ov_time_seek_lap(OggVorbis_File *vf,double pos);
180 VORBISFILE_DLL int ov_time_seek_page_lap(OggVorbis_File *vf,double pos);
181 
182 VORBISFILE_DLL ogg_int64_t ov_raw_tell(OggVorbis_File *vf);
183 VORBISFILE_DLL ogg_int64_t ov_pcm_tell(OggVorbis_File *vf);
184 VORBISFILE_DLL double ov_time_tell(OggVorbis_File *vf);
185 
186 VORBISFILE_DLL vorbis_info *ov_info(OggVorbis_File *vf,int link);
187 VORBISFILE_DLL vorbis_comment *ov_comment(OggVorbis_File *vf,int link);
188 
189 VORBISFILE_DLL long ov_read_float(OggVorbis_File *vf,float ***pcm_channels,int samples,
190  int *bitstream);
191 VORBISFILE_DLL long ov_read_filter(OggVorbis_File *vf,char *buffer,int length,
192  int bigendianp,int word,int sgned,int *bitstream,
193  void (*filter)(float **pcm,long channels,long samples,void *filter_param),void *filter_param);
194 VORBISFILE_DLL long ov_read(OggVorbis_File *vf,char *buffer,int length,
195  int bigendianp,int word,int sgned,int *bitstream);
196 VORBISFILE_DLL int ov_crosslap(OggVorbis_File *vf1,OggVorbis_File *vf2);
197 
198 VORBISFILE_DLL int ov_halfrate(OggVorbis_File *vf,int flag);
199 VORBISFILE_DLL int ov_halfrate_p(OggVorbis_File *vf);
200 
201 #ifdef __cplusplus
202 }
203 #endif /* __cplusplus */
204 
205 #endif
206 
ogg_int64_t pcm_offset
Definition: vorbisfile.h:131
ogg_int64_t ov_pcm_tell(OggVorbis_File *vf)
Definition: vorbisfile.c:1756
int ov_open_callbacks(void *datasource, OggVorbis_File *vf, const char *initial, long ibytes, ov_callbacks callbacks)
Definition: vorbisfile.c:993
int ov_time_seek_lap(OggVorbis_File *vf, double pos)
Definition: vorbisfile.c:2331
vorbis_comment * vc
Definition: vorbisfile.h:128
GLint GLint GLint GLint GLint GLint GLint GLbitfield GLenum filter
Definition: gl2ext.h:961
int ov_test(FILE *f, OggVorbis_File *vf, const char *initial, long ibytes)
Definition: vorbisfile.c:1066
#define NULL
Definition: ftobjs.h:61
ov_callbacks callbacks
Definition: vorbisfile.h:144
ogg_int64_t end
Definition: vorbisfile.h:115
GLclampf f
Definition: glew.h:3390
int ov_test_open(OggVorbis_File *vf)
Definition: vorbisfile.c:1077
double ov_time_total(OggVorbis_File *vf, int i)
Definition: vorbisfile.c:1208
ogg_int64_t offset
Definition: vorbisfile.h:114
ogg_stream_state os
Definition: vorbisfile.h:139
long ov_seekable(OggVorbis_File *vf)
Definition: vorbisfile.c:1088
vorbis_dsp_state vd
Definition: vorbisfile.h:141
int ov_clear(OggVorbis_File *vf)
Definition: vorbisfile.c:955
vorbis_block vb
Definition: vorbisfile.h:142
ogg_int64_t * pcmlengths
Definition: vorbisfile.h:124
int ov_fopen(const char *path, OggVorbis_File *vf)
Definition: vorbisfile.c:1011
GLsizei const GLchar *const * path
Definition: glew.h:5828
static ov_callbacks OV_CALLBACKS_STREAMONLY
Definition: vorbisfile.h:89
int ov_open(FILE *f, OggVorbis_File *vf, const char *initial, long ibytes)
Definition: vorbisfile.c:1000
int ov_test_callbacks(void *datasource, OggVorbis_File *vf, const char *initial, long ibytes, ov_callbacks callbacks)
Definition: vorbisfile.c:1060
ogg_int64_t ov_pcm_total(OggVorbis_File *vf, int i)
Definition: vorbisfile.c:1189
int ov_pcm_seek_page(OggVorbis_File *vf, ogg_int64_t pos)
Definition: vorbisfile.c:1404
double ov_time_tell(OggVorbis_File *vf)
Definition: vorbisfile.c:1762
int ov_halfrate_p(OggVorbis_File *vf)
Definition: vorbisfile.c:1050
double bittrack
Definition: vorbisfile.h:136
EGLContext EGLenum EGLClientBuffer buffer
Definition: eglext.h:87
int ov_raw_seek(OggVorbis_File *vf, ogg_int64_t pos)
Definition: vorbisfile.c:1229
int ov_halfrate(OggVorbis_File *vf, int flag)
Definition: vorbisfile.c:1025
static ov_callbacks OV_CALLBACKS_NOCLOSE
Definition: vorbisfile.h:82
long ov_bitrate(OggVorbis_File *vf, int i)
Definition: vorbisfile.c:1101
int
Definition: SDL_systhread.c:37
GLsizei GLsizei * length
Definition: gl2ext.h:792
long * serialnos
Definition: vorbisfile.h:123
vorbis_info * ov_info(OggVorbis_File *vf, int link)
Definition: vorbisfile.c:1791
ogg_int64_t ov_raw_total(OggVorbis_File *vf, int i)
Definition: vorbisfile.c:1170
ogg_int64_t * offsets
Definition: vorbisfile.h:121
GLsizei samples
Definition: gl2ext.h:970
long ov_read(OggVorbis_File *vf, char *buffer, int length, int bigendianp, int word, int sgned, int *bitstream)
Definition: vorbisfile.c:2007
int ov_pcm_seek_lap(OggVorbis_File *vf, ogg_int64_t pos)
Definition: vorbisfile.c:2274
long ov_bitrate_instant(OggVorbis_File *vf)
Definition: vorbisfile.c:1143
long current_serialno
Definition: vorbisfile.h:133
double samptrack
Definition: vorbisfile.h:137
int ov_raw_seek_lap(OggVorbis_File *vf, ogg_int64_t pos)
Definition: vorbisfile.c:2270
ogg_int64_t * dataoffsets
Definition: vorbisfile.h:122
struct OggVorbis_File OggVorbis_File
GLintptr offset
Definition: glew.h:1668
static ov_callbacks OV_CALLBACKS_STREAMONLY_NOCLOSE
Definition: vorbisfile.h:96
vorbis_comment * ov_comment(OggVorbis_File *vf, int link)
Definition: vorbisfile.c:1809
ogg_sync_state oy
Definition: vorbisfile.h:116
long ov_read_float(OggVorbis_File *vf, float ***pcm_channels, int samples, int *bitstream)
Definition: vorbisfile.c:2026
int ov_time_seek_page_lap(OggVorbis_File *vf, double pos)
Definition: vorbisfile.c:2335
int ov_pcm_seek_page_lap(OggVorbis_File *vf, ogg_int64_t pos)
Definition: vorbisfile.c:2278
int ov_crosslap(OggVorbis_File *vf1, OggVorbis_File *vf2)
Definition: vorbisfile.c:2168
vorbis_info * vi
Definition: vorbisfile.h:127
int i
Definition: pngrutil.c:1377
ogg_int64_t ov_raw_tell(OggVorbis_File *vf)
Definition: vorbisfile.c:1750
int ov_time_seek(OggVorbis_File *vf, double pos)
Definition: vorbisfile.c:1690
static int _ov_header_fseek_wrap(FILE *f, ogg_int64_t off, int whence)
Definition: vorbisfile.h:53
long ov_read_filter(OggVorbis_File *vf, char *buffer, int length, int bigendianp, int word, int sgned, int *bitstream, void(*filter)(float **pcm, long channels, long samples, void *filter_param), void *filter_param)
Definition: vorbisfile.c:1869
long ov_streams(OggVorbis_File *vf)
Definition: vorbisfile.c:1083
static ov_callbacks OV_CALLBACKS_DEFAULT
Definition: vorbisfile.h:75
int ov_pcm_seek(OggVorbis_File *vf, ogg_int64_t pos)
Definition: vorbisfile.c:1590
long ov_serialnumber(OggVorbis_File *vf, int i)
Definition: vorbisfile.c:1155
long ogg_int64_t
Definition: config_types.h:23
void * datasource
Definition: vorbisfile.h:112
unsigned int size_t
GLsizei size
Definition: gl2ext.h:1467
int ov_time_seek_page(OggVorbis_File *vf, double pos)
Definition: vorbisfile.c:1720