GPAC
Open Source Multimedia Framework. For more information, check out http://gpac.wp.mines-telecom.fr
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups
ogg.h File Reference
#include <gpac/tools.h>
+ Include dependency graph for ogg.h:
+ This graph shows which files directly or indirectly include this file:

Data Structures

struct  oggpack_buffer
 
struct  ogg_page
 
struct  ogg_stream_state
 
struct  ogg_packet
 
struct  ogg_sync_state
 

Functions

void oggpack_writeinit (oggpack_buffer *b)
 
void oggpack_writetrunc (oggpack_buffer *b, s32 bits)
 
void oggpack_writealign (oggpack_buffer *b)
 
void oggpack_writecopy (oggpack_buffer *b, void *source, s32 bits)
 
void oggpack_reset (oggpack_buffer *b)
 
void oggpack_writeclear (oggpack_buffer *b)
 
void oggpack_readinit (oggpack_buffer *b, unsigned char *buf, s32 bytes)
 
void oggpack_write (oggpack_buffer *b, u32 value, s32 bits)
 
s32 oggpack_look (oggpack_buffer *b, s32 bits)
 
s32 oggpack_look1 (oggpack_buffer *b)
 
void oggpack_adv (oggpack_buffer *b, s32 bits)
 
void oggpack_adv1 (oggpack_buffer *b)
 
s32 oggpack_read (oggpack_buffer *b, s32 bits)
 
s32 oggpack_read1 (oggpack_buffer *b)
 
s32 oggpack_bytes (oggpack_buffer *b)
 
s32 oggpack_bits (oggpack_buffer *b)
 
unsigned char * oggpack_get_buffer (oggpack_buffer *b)
 
void oggpackB_writeinit (oggpack_buffer *b)
 
void oggpackB_writetrunc (oggpack_buffer *b, s32 bits)
 
void oggpackB_writealign (oggpack_buffer *b)
 
void oggpackB_writecopy (oggpack_buffer *b, void *source, s32 bits)
 
void oggpackB_reset (oggpack_buffer *b)
 
void oggpackB_writeclear (oggpack_buffer *b)
 
void oggpackB_readinit (oggpack_buffer *b, unsigned char *buf, s32 bytes)
 
void oggpackB_write (oggpack_buffer *b, u32 value, s32 bits)
 
s32 oggpackB_look (oggpack_buffer *b, s32 bits)
 
s32 oggpackB_look1 (oggpack_buffer *b)
 
void oggpackB_adv (oggpack_buffer *b, s32 bits)
 
void oggpackB_adv1 (oggpack_buffer *b)
 
s32 oggpackB_read (oggpack_buffer *b, s32 bits)
 
s32 oggpackB_read1 (oggpack_buffer *b)
 
s32 oggpackB_bytes (oggpack_buffer *b)
 
s32 oggpackB_bits (oggpack_buffer *b)
 
unsigned char * oggpackB_get_buffer (oggpack_buffer *b)
 
s32 ogg_stream_packetin (ogg_stream_state *os, ogg_packet *op)
 
s32 ogg_stream_pageout (ogg_stream_state *os, ogg_page *og)
 
s32 ogg_stream_flush (ogg_stream_state *os, ogg_page *og)
 
s32 ogg_sync_init (ogg_sync_state *oy)
 
s32 ogg_sync_clear (ogg_sync_state *oy)
 
s32 ogg_sync_reset (ogg_sync_state *oy)
 
s32 ogg_sync_destroy (ogg_sync_state *oy)
 
char * ogg_sync_buffer (ogg_sync_state *oy, s32 size)
 
s32 ogg_sync_wrote (ogg_sync_state *oy, s32 bytes)
 
s32 ogg_sync_pageseek (ogg_sync_state *oy, ogg_page *og)
 
s32 ogg_sync_pageout (ogg_sync_state *oy, ogg_page *og)
 
s32 ogg_stream_pagein (ogg_stream_state *os, ogg_page *og)
 
s32 ogg_stream_packetout (ogg_stream_state *os, ogg_packet *op)
 
s32 ogg_stream_packetpeek (ogg_stream_state *os, ogg_packet *op)
 
s32 ogg_stream_init (ogg_stream_state *os, s32 serialno)
 
s32 ogg_stream_clear (ogg_stream_state *os)
 
s32 ogg_stream_reset (ogg_stream_state *os)
 
s32 ogg_stream_reset_serialno (ogg_stream_state *os, s32 serialno)
 
s32 ogg_stream_destroy (ogg_stream_state *os)
 
s32 ogg_stream_eos (ogg_stream_state *os)
 
void ogg_page_checksum_set (ogg_page *og)
 
s32 ogg_page_version (ogg_page *og)
 
s32 ogg_page_continued (ogg_page *og)
 
s32 ogg_page_bos (ogg_page *og)
 
s32 ogg_page_eos (ogg_page *og)
 
s64 ogg_page_granulepos (ogg_page *og)
 
s32 ogg_page_serialno (ogg_page *og)
 
s32 ogg_page_pageno (ogg_page *og)
 
s32 ogg_page_packets (ogg_page *og)
 
void ogg_packet_clear (ogg_packet *op)
 

Data Structure Documentation

struct oggpack_buffer
+ Collaboration diagram for oggpack_buffer:
Data Fields
s32 endbyte
s32 endbit
unsigned char * buffer
unsigned char * ptr
s32 storage
struct ogg_page
+ Collaboration diagram for ogg_page:
Data Fields
unsigned char * header
s32 header_len
unsigned char * body
s32 body_len
struct ogg_stream_state
+ Collaboration diagram for ogg_stream_state:
Data Fields
unsigned char * body_data
s32 body_storage
s32 body_fill
s32 body_returned
s32 * lacing_vals
s64 * granule_vals
s32 lacing_storage
s32 lacing_fill
s32 lacing_packet
s32 lacing_returned
unsigned char header[282]
s32 header_fill
s32 e_o_s
s32 b_o_s
s32 serialno
s32 pageno
s64 packetno
s64 granulepos
struct ogg_packet
+ Collaboration diagram for ogg_packet:
Data Fields
unsigned char * packet
s32 bytes
s32 b_o_s
s32 e_o_s
s64 granulepos
s64 packetno
struct ogg_sync_state
+ Collaboration diagram for ogg_sync_state:
Data Fields
unsigned char * data
s32 storage
s32 fill
s32 returned
s32 unsynced
s32 headerbytes
s32 bodybytes

Function Documentation

void oggpack_writeinit ( oggpack_buffer b)

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

void oggpack_writetrunc ( oggpack_buffer b,
s32  bits 
)
void oggpack_writealign ( oggpack_buffer b)

+ Here is the call graph for this function:

void oggpack_writecopy ( oggpack_buffer b,
void *  source,
s32  bits 
)

+ Here is the call graph for this function:

void oggpack_reset ( oggpack_buffer b)

+ Here is the caller graph for this function:

void oggpack_writeclear ( oggpack_buffer b)

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

void oggpack_readinit ( oggpack_buffer b,
unsigned char *  buf,
s32  bytes 
)

+ Here is the caller graph for this function:

void oggpack_write ( oggpack_buffer b,
u32  value,
s32  bits 
)

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

s32 oggpack_look ( oggpack_buffer b,
s32  bits 
)
s32 oggpack_look1 ( oggpack_buffer b)
void oggpack_adv ( oggpack_buffer b,
s32  bits 
)

+ Here is the caller graph for this function:

void oggpack_adv1 ( oggpack_buffer b)

+ Here is the caller graph for this function:

s32 oggpack_read ( oggpack_buffer b,
s32  bits 
)

+ Here is the caller graph for this function:

s32 oggpack_read1 ( oggpack_buffer b)
s32 oggpack_bytes ( oggpack_buffer b)

+ Here is the caller graph for this function:

s32 oggpack_bits ( oggpack_buffer b)

+ Here is the caller graph for this function:

unsigned char* oggpack_get_buffer ( oggpack_buffer b)

+ Here is the caller graph for this function:

void oggpackB_writeinit ( oggpack_buffer b)

+ Here is the call graph for this function:

void oggpackB_writetrunc ( oggpack_buffer b,
s32  bits 
)
void oggpackB_writealign ( oggpack_buffer b)

+ Here is the call graph for this function:

void oggpackB_writecopy ( oggpack_buffer b,
void *  source,
s32  bits 
)

+ Here is the call graph for this function:

void oggpackB_reset ( oggpack_buffer b)

+ Here is the call graph for this function:

void oggpackB_writeclear ( oggpack_buffer b)

+ Here is the call graph for this function:

void oggpackB_readinit ( oggpack_buffer b,
unsigned char *  buf,
s32  bytes 
)

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

void oggpackB_write ( oggpack_buffer b,
u32  value,
s32  bits 
)

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

s32 oggpackB_look ( oggpack_buffer b,
s32  bits 
)
s32 oggpackB_look1 ( oggpack_buffer b)
void oggpackB_adv ( oggpack_buffer b,
s32  bits 
)

+ Here is the call graph for this function:

void oggpackB_adv1 ( oggpack_buffer b)

+ Here is the call graph for this function:

s32 oggpackB_read ( oggpack_buffer b,
s32  bits 
)

+ Here is the caller graph for this function:

s32 oggpackB_read1 ( oggpack_buffer b)
s32 oggpackB_bytes ( oggpack_buffer b)

+ Here is the call graph for this function:

s32 oggpackB_bits ( oggpack_buffer b)

+ Here is the call graph for this function:

unsigned char* oggpackB_get_buffer ( oggpack_buffer b)

+ Here is the call graph for this function:

s32 ogg_stream_packetin ( ogg_stream_state os,
ogg_packet op 
)

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

s32 ogg_stream_pageout ( ogg_stream_state os,
ogg_page og 
)

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

s32 ogg_stream_flush ( ogg_stream_state os,
ogg_page og 
)

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

s32 ogg_sync_init ( ogg_sync_state oy)

+ Here is the caller graph for this function:

s32 ogg_sync_clear ( ogg_sync_state oy)

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

s32 ogg_sync_reset ( ogg_sync_state oy)
s32 ogg_sync_destroy ( ogg_sync_state oy)

+ Here is the call graph for this function:

char* ogg_sync_buffer ( ogg_sync_state oy,
s32  size 
)

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

s32 ogg_sync_wrote ( ogg_sync_state oy,
s32  bytes 
)

+ Here is the caller graph for this function:

s32 ogg_sync_pageseek ( ogg_sync_state oy,
ogg_page og 
)

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

s32 ogg_sync_pageout ( ogg_sync_state oy,
ogg_page og 
)

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

s32 ogg_stream_pagein ( ogg_stream_state os,
ogg_page og 
)

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

s32 ogg_stream_packetout ( ogg_stream_state os,
ogg_packet op 
)

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

s32 ogg_stream_packetpeek ( ogg_stream_state os,
ogg_packet op 
)

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

s32 ogg_stream_init ( ogg_stream_state os,
s32  serialno 
)

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

s32 ogg_stream_clear ( ogg_stream_state os)

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

s32 ogg_stream_reset ( ogg_stream_state os)

+ Here is the caller graph for this function:

s32 ogg_stream_reset_serialno ( ogg_stream_state os,
s32  serialno 
)

+ Here is the call graph for this function:

s32 ogg_stream_destroy ( ogg_stream_state os)

+ Here is the call graph for this function:

s32 ogg_stream_eos ( ogg_stream_state os)
void ogg_page_checksum_set ( ogg_page og)

+ Here is the caller graph for this function:

s32 ogg_page_version ( ogg_page og)

+ Here is the caller graph for this function:

s32 ogg_page_continued ( ogg_page og)

+ Here is the caller graph for this function:

s32 ogg_page_bos ( ogg_page og)

+ Here is the caller graph for this function:

s32 ogg_page_eos ( ogg_page og)

+ Here is the caller graph for this function:

s64 ogg_page_granulepos ( ogg_page og)

+ Here is the caller graph for this function:

s32 ogg_page_serialno ( ogg_page og)

+ Here is the caller graph for this function:

s32 ogg_page_pageno ( ogg_page og)

+ Here is the caller graph for this function:

s32 ogg_page_packets ( ogg_page og)
void ogg_packet_clear ( ogg_packet op)

+ Here is the call graph for this function: