HomeSort by relevance Sort by last modified time
    Searched full:ogg_sync_state (Results 1 - 25 of 29) sorted by null

1 2

  /external/libogg/doc/libogg/
ogg_sync_wrote.html 20 <p>This function is used to tell the <a href="ogg_sync_state.html">ogg_sync_state</a> struct how many bytes we wrote into the buffer.
24 <a href="ogg_sync_state.html">ogg_sync_state</a> buffer by calling
35 int ogg_sync_wrote(<a href="ogg_sync_state.html">ogg_sync_state</a> *oy, long bytes);
44 <dd>Pointer to a previously declared <a href="ogg_sync_state.html">ogg_sync_state</a> struct.</dd>
52 <li>-1 if the number of bytes written overflows the internal storage of the <a href="ogg_sync_state.html">ogg_sync_state</a> struct or an internal error occurred
    [all...]
ogg_sync_init.html 20 <p>This function is used to initialize an <a href="ogg_sync_state.html">ogg_sync_state</a> struct to a known initial value in preparation for manipulation of an Ogg bitstream.
28 int ogg_sync_init(<a href="ogg_sync_state.html">ogg_sync_state</a> *oy);
37 <dd>Pointer to a previously declared <a href="ogg_sync_state.html">ogg_sync_state</a> struct. After this function call, this struct has been initialized.</dd>
ogg_sync_reset.html 20 <p>This function is used to reset the internal counters of the <a href="ogg_sync_state.html">ogg_sync_state</a> struct to initial values.
28 int ogg_sync_reset(<a href="ogg_sync_state.html">ogg_sync_state</a> *oy);
37 <dd>Pointer to a previously declared <a href="ogg_sync_state.html">ogg_sync_state</a> struct.</dd>
ogg_sync_destroy.html 20 <p>This function is used to destroy an <a href="ogg_sync_state.html">ogg_sync_state</a> struct and free all memory used.</p>
23 function if you've allocated the ogg_sync_state on the heap. If it is
33 int ogg_sync_destroy(<a href="ogg_sync_state.html">ogg_sync_state</a> *oy);
42 <dd>Pointer to a previously declared <a href="ogg_sync_state.html">ogg_sync_state</a> struct.</dd>
ogg_sync_clear.html 20 <p>This function is used to free the internal storage of an <a href="ogg_sync_state.html">ogg_sync_state</a> struct and resets the struct to the initial state. To free the entire struct, <a href="ogg_sync_destroy.html">ogg_sync_destroy</a> should be used instead. In situations where the struct needs to be reset but the internal storage does not need to be freed, <a href="ogg_sync_reset.html">ogg_sync_reset</a> should be used.
27 int ogg_sync_clear(<a href="ogg_sync_state.html">ogg_sync_state</a> *oy);
36 <dd>Pointer to a previously declared <a href="ogg_sync_state.html">ogg_sync_state</a> struct.</dd>
ogg_sync_buffer.html 22 <p>The buffer exposed by this function is empty internal storage from the <a href="ogg_sync_state.html">ogg_sync_state</a> struct, beginning at the fill mark within the struct.
30 char *ogg_sync_buffer(ogg_sync_state *oy, long size);
39 <dd>Pointer to a previously declared <a href="ogg_sync_state.html">ogg_sync_state</a> struct.</dd>
ogg_sync_pageseek.html 20 <p>This function synchronizes the ogg_sync_state struct to the next ogg_page.
28 int ogg_sync_pageseek(<a href="ogg_sync_state.html">ogg_sync_state</a> *oy, <a href="ogg_page.html">ogg_page</a> *og);
37 <dd>Pointer to a previously declared <a href="ogg_sync_state.html">ogg_sync_state</a> struct.</dd>
ogg_sync_pageout.html 20 <p>This function takes the data stored in the buffer of the <a href="ogg_sync_state.html">ogg_sync_state</a> struct and inserts them into an <a href="ogg_page.html">ogg_page</a>.
23 <p><b>Caution:</b>This function should be called before reading into the buffer to ensure that data does not remain in the ogg_sync_state struct. Failing to do so may result in a memory leak. See the example code below for details.
30 int ogg_sync_pageout(<a href="ogg_sync_state.html">ogg_sync_state</a> *oy, <a href="ogg_page.html">ogg_page</a> *og);
39 <dd>Pointer to a previously declared <a href="ogg_sync_state.html">ogg_sync_state</a> struct. Normally, the internal storage of this struct should be filled with newly read data and verified using <a href="ogg_sync_wrote.html">ogg_sync_wrote</a>.</dd>
ogg_sync_state.html 4 <title>libogg - datatype - ogg_sync_state</title>
16 <h1>ogg_sync_state</h1>
21 The ogg_sync_state struct tracks the synchronization of the current page.
38 } ogg_sync_state;
datastructures.html 40 <td><a href="ogg_sync_state.html">ogg_sync_state</a></td>
Makefile.am 18 ogg_sync_reset.html ogg_sync_state.html ogg_sync_wrote.html\
ogg_stream_clear.html 20 <p>This function clears and frees the internal memory used by the <a href="ogg_sync_state.html">ogg_stream_state</a> struct, but does not free the structure itself. It is safe to call ogg_stream_clear on the same structure more than once.
ogg_stream_init.html 20 <p>This function is used to initialize an <a href="ogg_sync_state.html">ogg_stream_state</a> struct and allocates appropriate memory in preparation for encoding or decoding.
ogg_stream_reset.html 20 <p>This function sets values in the <a href="ogg_sync_state.html">ogg_stream_state</a> struct back to initial values.
decoding.html 21 <p>Decoding is based around the ogg synchronization layer. The <a href="ogg_sync_state.html">ogg_sync_state</a> struct coordinates between incoming data and the decoder. We read data into the synchronization layer, submit the data to the stream, and output raw packets to the decoder.
reference.html 24 <a href="ogg_sync_state.html">ogg_sync_state</a><br>
  /external/tremolo/Tremolo/
ogg.h 103 typedef struct ogg_sync_state { struct
117 } ogg_sync_state; typedef in typeref:struct:ogg_sync_state
185 extern void ogg_sync_init(ogg_sync_state *oy);
186 extern ogg_sync_state *ogg_sync_create(void);
187 extern int ogg_sync_clear(ogg_sync_state *oy);
188 extern int ogg_sync_destroy(ogg_sync_state *oy);
189 extern int ogg_sync_reset(ogg_sync_state *oy);
191 extern unsigned char *ogg_sync_bufferin(ogg_sync_state *oy, long size);
192 extern int ogg_sync_wrote(ogg_sync_state *oy, long bytes);
193 extern long ogg_sync_pageseek(ogg_sync_state *oy,ogg_page *og)
    [all...]
framing.c 580 void ogg_sync_init(ogg_sync_state *oy){
585 ogg_sync_state *ogg_sync_create(void){
586 ogg_sync_state *oy=_ogg_calloc(1,sizeof(*oy));
592 int ogg_sync_clear(ogg_sync_state *oy){
601 int ogg_sync_destroy(ogg_sync_state *oy){
611 unsigned char *ogg_sync_bufferin(ogg_sync_state *oy, long bytes){
655 int ogg_sync_wrote(ogg_sync_state *oy, long bytes){
694 long ogg_sync_pageseek(ogg_sync_state *oy,ogg_page *og){
810 int ogg_sync_pageout(ogg_sync_state *oy, ogg_page *og){
839 int ogg_sync_reset(ogg_sync_state *oy)
    [all...]
ivorbisfile.h 71 ogg_sync_state *oy;
  /external/libogg/include/ogg/
ogg.h 114 } ogg_sync_state; typedef in typeref:struct:__anon10712
166 extern int ogg_sync_init(ogg_sync_state *oy);
167 extern int ogg_sync_clear(ogg_sync_state *oy);
168 extern int ogg_sync_reset(ogg_sync_state *oy);
169 extern int ogg_sync_destroy(ogg_sync_state *oy);
170 extern int ogg_sync_check(ogg_sync_state *oy);
172 extern char *ogg_sync_buffer(ogg_sync_state *oy, long size);
173 extern int ogg_sync_wrote(ogg_sync_state *oy, long bytes);
174 extern long ogg_sync_pageseek(ogg_sync_state *oy,ogg_page *og);
175 extern int ogg_sync_pageout(ogg_sync_state *oy, ogg_page *og)
    [all...]
  /external/flac/libFLAC/include/private/
ogg_decoder_aspect.h 47 ogg_sync_state sync_state;
  /external/libvorbis/doc/
programming.html 107 into an <tt>ogg_sync_state</tt> buffer using <tt>ogg_sync_buffer()</tt>
111 buffered; allowing them to build up in the <tt>ogg_sync_state</tt>
444 char *ogg_sync_buffer(ogg_sync_state *oy, long size);
467 int ogg_sync_clear(ogg_sync_state *oy);
486 int ogg_sync_destroy(ogg_sync_state *oy);
501 int ogg_sync_init(ogg_sync_state *oy);
510 int ogg_sync_pageout(ogg_sync_state *oy, ogg_page *og);
526 int ogg_sync_reset(ogg_sync_state *oy);
536 int ogg_sync_wrote(ogg_sync_state *oy, long bytes);
  /external/llvm/test/Analysis/Dominators/
2007-01-14-BreakCritEdges.ll 4 %struct.OggVorbis_File = type { i8*, i32, i64, i64, %struct.ogg_sync_state, i32, i64*, i64*, i32*, i64*, %struct.vorbis_info*, %struct.vorbis_comment*, i64, i32, i32, i32, double, double, %struct.ogg_stream_state, %struct.vorbis_dsp_state, %struct.vorbis_block, %struct.ov_callbacks }
7 %struct.ogg_sync_state = type { i8*, i32, i32, i32, i32, i32, i32 }
  /external/libvorbis/doc/vorbisfile/
OggVorbis_File.html 72 ogg_sync_state oy;
  /external/libvorbis/include/vorbis/
vorbisfile.h 116 ogg_sync_state oy;

Completed in 248 milliseconds

1 2