ogg.h
上传用户:hxb_1234
上传日期:2010-03-30
资源大小:8328k
文件大小:6k
源码类别:

VC书籍

开发平台:

Visual C++

  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-2001             *
  9.  * by the XIPHOPHORUS Company http://www.xiph.org/                  *
  10.  ********************************************************************
  11.  function: toplevel libogg include
  12.  last mod: $Id: ogg.h,v 1.1.1.1 2003/02/06 04:06:45 hurly Exp $
  13.  ********************************************************************/
  14. #ifndef _OGG_H
  15. #define _OGG_H
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19. #include "os_types.h"
  20. typedef struct {
  21.   long endbyte;
  22.   int  endbit;
  23.   unsigned char *buffer;
  24.   unsigned char *ptr;
  25.   long storage;
  26. } oggpack_buffer;
  27. /* ogg_page is used to encapsulate the data in one Ogg bitstream page *****/
  28. typedef struct {
  29.   unsigned char *header;
  30.   long header_len;
  31.   unsigned char *body;
  32.   long body_len;
  33. } ogg_page;
  34. /* ogg_stream_state contains the current encode/decode state of a logical
  35.    Ogg bitstream **********************************************************/
  36. typedef struct {
  37.   unsigned char   *body_data;    /* bytes from packet bodies */
  38.   long    body_storage;          /* storage elements allocated */
  39.   long    body_fill;             /* elements stored; fill mark */
  40.   long    body_returned;         /* elements of fill returned */
  41.   int     *lacing_vals;      /* The values that will go to the segment table */
  42.   ogg_int64_t *granule_vals; /* granulepos values for headers. Not compact
  43. this way, but it is simple coupled to the
  44. lacing fifo */
  45.   long    lacing_storage;
  46.   long    lacing_fill;
  47.   long    lacing_packet;
  48.   long    lacing_returned;
  49.   unsigned char    header[282];      /* working space for header encode */
  50.   int              header_fill;
  51.   int     e_o_s;          /* set when we have buffered the last packet in the
  52.                              logical bitstream */
  53.   int     b_o_s;          /* set after we've written the initial page
  54.                              of a logical bitstream */
  55.   long    serialno;
  56.   long    pageno;
  57.   ogg_int64_t  packetno;      /* sequence number for decode; the framing
  58.                              knows where there's a hole in the data,
  59.                              but we need coupling so that the codec
  60.                              (which is in a seperate abstraction
  61.                              layer) also knows about the gap */
  62.   ogg_int64_t   granulepos;
  63. } ogg_stream_state;
  64. /* ogg_packet is used to encapsulate the data and metadata belonging
  65.    to a single raw Ogg/Vorbis packet *************************************/
  66. typedef struct {
  67.   unsigned char *packet;
  68.   long  bytes;
  69.   long  b_o_s;
  70.   long  e_o_s;
  71.   ogg_int64_t  granulepos;
  72.   
  73.   ogg_int64_t  packetno;     /* sequence number for decode; the framing
  74. knows where there's a hole in the data,
  75. but we need coupling so that the codec
  76. (which is in a seperate abstraction
  77. layer) also knows about the gap */
  78. } ogg_packet;
  79. typedef struct {
  80.   unsigned char *data;
  81.   int storage;
  82.   int fill;
  83.   int returned;
  84.   int unsynced;
  85.   int headerbytes;
  86.   int bodybytes;
  87. } ogg_sync_state;
  88. /* Ogg BITSTREAM PRIMITIVES: bitstream ************************/
  89. extern void  oggpack_writeinit(oggpack_buffer *b);
  90. extern void  oggpack_reset(oggpack_buffer *b);
  91. extern void  oggpack_writeclear(oggpack_buffer *b);
  92. extern void  oggpack_readinit(oggpack_buffer *b,unsigned char *buf,int bytes);
  93. extern void  oggpack_write(oggpack_buffer *b,unsigned long value,int bits);
  94. extern long  oggpack_look(oggpack_buffer *b,int bits);
  95. extern long  oggpack_look_huff(oggpack_buffer *b,int bits);
  96. extern long  oggpack_look1(oggpack_buffer *b);
  97. extern void  oggpack_adv(oggpack_buffer *b,int bits);
  98. extern int   oggpack_adv_huff(oggpack_buffer *b,int bits);
  99. extern void  oggpack_adv1(oggpack_buffer *b);
  100. extern long  oggpack_read(oggpack_buffer *b,int bits);
  101. extern long  oggpack_read1(oggpack_buffer *b);
  102. extern long  oggpack_bytes(oggpack_buffer *b);
  103. extern long  oggpack_bits(oggpack_buffer *b);
  104. extern unsigned char *oggpack_get_buffer(oggpack_buffer *b);
  105. /* Ogg BITSTREAM PRIMITIVES: encoding **************************/
  106. extern int      ogg_stream_packetin(ogg_stream_state *os, ogg_packet *op);
  107. extern int      ogg_stream_pageout(ogg_stream_state *os, ogg_page *og);
  108. extern int      ogg_stream_flush(ogg_stream_state *os, ogg_page *og);
  109. /* Ogg BITSTREAM PRIMITIVES: decoding **************************/
  110. extern int      ogg_sync_init(ogg_sync_state *oy);
  111. extern int      ogg_sync_clear(ogg_sync_state *oy);
  112. extern int      ogg_sync_reset(ogg_sync_state *oy);
  113. extern int ogg_sync_destroy(ogg_sync_state *oy);
  114. extern char    *ogg_sync_buffer(ogg_sync_state *oy, long size);
  115. extern int      ogg_sync_wrote(ogg_sync_state *oy, long bytes);
  116. extern long     ogg_sync_pageseek(ogg_sync_state *oy,ogg_page *og);
  117. extern int      ogg_sync_pageout(ogg_sync_state *oy, ogg_page *og);
  118. extern int      ogg_stream_pagein(ogg_stream_state *os, ogg_page *og);
  119. extern int      ogg_stream_packetout(ogg_stream_state *os,ogg_packet *op);
  120. /* Ogg BITSTREAM PRIMITIVES: general ***************************/
  121. extern int      ogg_stream_init(ogg_stream_state *os,int serialno);
  122. extern int      ogg_stream_clear(ogg_stream_state *os);
  123. extern int      ogg_stream_reset(ogg_stream_state *os);
  124. extern int      ogg_stream_destroy(ogg_stream_state *os);
  125. extern int      ogg_stream_eos(ogg_stream_state *os);
  126. extern int      ogg_page_version(ogg_page *og);
  127. extern int      ogg_page_continued(ogg_page *og);
  128. extern int      ogg_page_bos(ogg_page *og);
  129. extern int      ogg_page_eos(ogg_page *og);
  130. extern ogg_int64_t  ogg_page_granulepos(ogg_page *og);
  131. extern int      ogg_page_serialno(ogg_page *og);
  132. extern long     ogg_page_pageno(ogg_page *og);
  133. extern int      ogg_page_packets(ogg_page *og);
  134. extern void     ogg_packet_clear(ogg_packet *op);
  135. #ifdef __cplusplus
  136. }
  137. #endif
  138. #endif  /* _OGG_H */