ivorbiscodec.h
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:7k
源码类别:

Windows CE

开发平台:

C/C++

  1. /********************************************************************
  2.  *                                                                  *
  3.  * THIS FILE IS PART OF THE OggVorbis 'TREMOR' CODEC SOURCE CODE.   *
  4.  *                                                                  *
  5.  * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS     *
  6.  * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
  7.  * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING.       *
  8.  *                                                                  *
  9.  * THE OggVorbis 'TREMOR' SOURCE CODE IS (C) COPYRIGHT 1994-2002    *
  10.  * BY THE Xiph.Org FOUNDATION http://www.xiph.org/                  *
  11.  *                                                                  *
  12.  ********************************************************************
  13.  function: libvorbis codec headers
  14.  ********************************************************************/
  15. #ifndef _vorbis_codec_h_
  16. #define _vorbis_codec_h_
  17. #ifdef __cplusplus
  18. extern "C"
  19. {
  20. #endif /* __cplusplus */
  21. #include "ogg.h"
  22. typedef struct vorbis_info{
  23.   int version;
  24.   int channels;
  25.   long rate;
  26.   /* The below bitrate declarations are *hints*.
  27.      Combinations of the three values carry the following implications:
  28.      
  29.      all three set to the same value: 
  30.        implies a fixed rate bitstream
  31.      only nominal set: 
  32.        implies a VBR stream that averages the nominal bitrate.  No hard 
  33.        upper/lower limit
  34.      upper and or lower set: 
  35.        implies a VBR bitstream that obeys the bitrate limits. nominal 
  36.        may also be set to give a nominal rate.
  37.      none set:
  38.        the coder does not care to speculate.
  39.   */
  40.   long bitrate_upper;
  41.   long bitrate_nominal;
  42.   long bitrate_lower;
  43.   long bitrate_window;
  44.   void *codec_setup;
  45. } vorbis_info;
  46. /* vorbis_dsp_state buffers the current vorbis audio
  47.    analysis/synthesis state.  The DSP state belongs to a specific
  48.    logical bitstream ****************************************************/
  49. typedef struct vorbis_dsp_state{
  50.   int analysisp;
  51.   vorbis_info *vi;
  52.   ogg_int32_t **pcm;
  53.   ogg_int32_t **pcmret;
  54.   int      pcm_storage;
  55.   int      pcm_current;
  56.   int      pcm_returned;
  57.   int  preextrapolate;
  58.   int  eofflag;
  59.   long lW;
  60.   long W;
  61.   long nW;
  62.   long centerW;
  63.   ogg_int64_t granulepos;
  64.   ogg_int64_t sequence;
  65.   void       *backend_state;
  66. } vorbis_dsp_state;
  67. typedef struct vorbis_block{
  68.   /* necessary stream state for linking to the framing abstraction */
  69.   ogg_int32_t  **pcm;       /* this is a pointer into local storage */ 
  70.   oggpack_buffer opb;
  71.   
  72.   long  lW;
  73.   long  W;
  74.   long  nW;
  75.   int   pcmend;
  76.   int   mode;
  77.   int         eofflag;
  78.   ogg_int64_t granulepos;
  79.   ogg_int64_t sequence;
  80.   vorbis_dsp_state *vd; /* For read-only access of configuration */
  81.   /* local storage to avoid remallocing; it's up to the mapping to
  82.      structure it */
  83.   void               *localstore;
  84.   long                localtop;
  85.   long                localalloc;
  86.   long                totaluse;
  87.   struct alloc_chain *reap;
  88. } vorbis_block;
  89. /* vorbis_block is a single block of data to be processed as part of
  90. the analysis/synthesis stream; it belongs to a specific logical
  91. bitstream, but is independant from other vorbis_blocks belonging to
  92. that logical bitstream. *************************************************/
  93. struct alloc_chain{
  94.   void *ptr;
  95.   struct alloc_chain *next;
  96. };
  97. /* vorbis_info contains all the setup information specific to the
  98.    specific compression/decompression mode in progress (eg,
  99.    psychoacoustic settings, channel setup, options, codebook
  100.    etc). vorbis_info and substructures are in backends.h.
  101. *********************************************************************/
  102. /* the comments are not part of vorbis_info so that vorbis_info can be
  103.    static storage */
  104. typedef struct vorbis_comment{
  105.   /* unlimited user comment fields.  libvorbis writes 'libvorbis'
  106.      whatever vendor is set to in encode */
  107.   char **user_comments;
  108.   int   *comment_lengths;
  109.   int    comments;
  110.   char  *vendor;
  111. } vorbis_comment;
  112. /* libvorbis encodes in two abstraction layers; first we perform DSP
  113.    and produce a packet (see docs/analysis.txt).  The packet is then
  114.    coded into a framed OggSquish bitstream by the second layer (see
  115.    docs/framing.txt).  Decode is the reverse process; we sync/frame
  116.    the bitstream and extract individual packets, then decode the
  117.    packet back into PCM audio.
  118.    The extra framing/packetizing is used in streaming formats, such as
  119.    files.  Over the net (such as with UDP), the framing and
  120.    packetization aren't necessary as they're provided by the transport
  121.    and the streaming layer is not used */
  122. /* Vorbis PRIMITIVES: general ***************************************/
  123. extern void     vorbis_info_init(vorbis_info *vi);
  124. extern void     vorbis_info_clear(vorbis_info *vi);
  125. extern int      vorbis_info_blocksize(vorbis_info *vi,int zo);
  126. extern void     vorbis_comment_init(vorbis_comment *vc);
  127. extern void     vorbis_comment_add(vorbis_comment *vc, char *comment); 
  128. extern void     vorbis_comment_add_tag(vorbis_comment *vc, 
  129.        char *tag, char *contents);
  130. extern char    *vorbis_comment_query(vorbis_comment *vc, char *tag, int count);
  131. extern int      vorbis_comment_query_count(vorbis_comment *vc, char *tag);
  132. extern void     vorbis_comment_clear(vorbis_comment *vc);
  133. extern int      vorbis_block_init(vorbis_dsp_state *v, vorbis_block *vb);
  134. extern int      vorbis_block_clear(vorbis_block *vb);
  135. extern void     vorbis_dsp_clear(vorbis_dsp_state *v);
  136. /* Vorbis PRIMITIVES: synthesis layer *******************************/
  137. extern int      vorbis_synthesis_headerin(vorbis_info *vi,vorbis_comment *vc,
  138.   ogg_packet *op);
  139. extern int      vorbis_synthesis_init(vorbis_dsp_state *v,vorbis_info *vi);
  140. extern int      vorbis_synthesis_restart(vorbis_dsp_state *v);
  141. extern int      vorbis_synthesis(vorbis_block *vb,ogg_packet *op,int decodep);
  142. extern int      vorbis_synthesis_blockin(vorbis_dsp_state *v,vorbis_block *vb);
  143. extern int      vorbis_synthesis_pcmout(vorbis_dsp_state *v,ogg_int32_t ***pcm);
  144. extern int      vorbis_synthesis_read(vorbis_dsp_state *v,int samples);
  145. extern long     vorbis_packet_blocksize(vorbis_info *vi,ogg_packet *op);
  146. /* Vorbis ERRORS and return codes ***********************************/
  147. #define OV_FALSE      -1  
  148. #define OV_EOF        -2
  149. #define OV_HOLE       -3
  150. #define OV_EREAD      -128
  151. #define OV_EFAULT     -129
  152. #define OV_EIMPL      -130
  153. #define OV_EINVAL     -131
  154. #define OV_ENOTVORBIS -132
  155. #define OV_EBADHEADER -133
  156. #define OV_EVERSION   -134
  157. #define OV_ENOTAUDIO  -135
  158. #define OV_EBADPACKET -136
  159. #define OV_EBADLINK   -137
  160. #define OV_ENOSEEK    -138
  161. #ifdef __cplusplus
  162. }
  163. #endif /* __cplusplus */
  164. #endif