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

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: stdio-based convenience library for opening/seeking/decoding
  14.  ********************************************************************/
  15. #ifndef _OV_FILE_H_
  16. #define _OV_FILE_H_
  17. #ifdef __cplusplus
  18. extern "C"
  19. {
  20. #endif /* __cplusplus */
  21. #include <stdio.h>
  22. #include "ivorbiscodec.h"
  23. #define CHUNKSIZE 1024
  24. /* The function prototypes for the callbacks are basically the same as for
  25.  * the stdio functions fread, fseek, fclose, ftell. 
  26.  * The one difference is that the FILE * arguments have been replaced with
  27.  * a void * - this is to be used as a pointer to whatever internal data these
  28.  * functions might need. In the stdio case, it's just a FILE * cast to a void *
  29.  * 
  30.  * If you use other functions, check the docs for these functions and return
  31.  * the right values. For seek_func(), you *MUST* return -1 if the stream is
  32.  * unseekable
  33.  */
  34. typedef struct {
  35.   size_t (*read_func)  (void *ptr, size_t size, size_t nmemb, void *datasource);
  36.   int    (*seek_func)  (void *datasource, ogg_int64_t offset, int whence);
  37.   int    (*close_func) (void *datasource);
  38.   long   (*tell_func)  (void *datasource);
  39. } ov_callbacks;
  40. #define  NOTOPEN   0
  41. #define  PARTOPEN  1
  42. #define  OPENED    2
  43. #define  STREAMSET 3
  44. #define  INITSET   4
  45. typedef struct OggVorbis_File {
  46.   void            *datasource; /* Pointer to a FILE *, etc. */
  47.   int              seekable;
  48.   ogg_int64_t      offset;
  49.   ogg_int64_t      end;
  50.   ogg_sync_state   *oy; 
  51.   /* If the FILE handle isn't seekable (eg, a pipe), only the current
  52.      stream appears */
  53.   int              links;
  54.   ogg_int64_t     *offsets;
  55.   ogg_int64_t     *dataoffsets;
  56.   ogg_uint32_t    *serialnos;
  57.   ogg_int64_t     *pcmlengths;
  58.   vorbis_info     *vi;
  59.   vorbis_comment  *vc;
  60.   /* Decoding working state local storage */
  61.   ogg_int64_t      pcm_offset;
  62.   int              ready_state;
  63.   ogg_uint32_t     current_serialno;
  64.   int              current_link;
  65.   ogg_int64_t      bittrack;
  66.   ogg_int64_t      samptrack;
  67.   ogg_stream_state *os; /* take physical pages, weld into a logical
  68.                           stream of packets */
  69.   vorbis_dsp_state vd; /* central working state for the packet->PCM decoder */
  70.   vorbis_block     vb; /* local working space for packet->PCM decode */
  71.   ov_callbacks callbacks;
  72. } OggVorbis_File;
  73. extern int ov_clear(OggVorbis_File *vf);
  74. extern int ov_open(FILE *f,OggVorbis_File *vf,char *initial,long ibytes);
  75. extern int ov_open_callbacks(void *datasource, OggVorbis_File *vf,
  76. char *initial, long ibytes, ov_callbacks callbacks);
  77. extern int ov_test(FILE *f,OggVorbis_File *vf,char *initial,long ibytes);
  78. extern int ov_test_callbacks(void *datasource, OggVorbis_File *vf,
  79. char *initial, long ibytes, ov_callbacks callbacks);
  80. extern int ov_test_open(OggVorbis_File *vf);
  81. extern long ov_bitrate(OggVorbis_File *vf,int i);
  82. extern long ov_bitrate_instant(OggVorbis_File *vf);
  83. extern long ov_streams(OggVorbis_File *vf);
  84. extern long ov_seekable(OggVorbis_File *vf);
  85. extern long ov_serialnumber(OggVorbis_File *vf,int i);
  86. extern ogg_int64_t ov_raw_total(OggVorbis_File *vf,int i);
  87. extern ogg_int64_t ov_pcm_total(OggVorbis_File *vf,int i);
  88. extern ogg_int64_t ov_time_total(OggVorbis_File *vf,int i);
  89. extern int ov_raw_seek(OggVorbis_File *vf,ogg_int64_t pos);
  90. extern int ov_pcm_seek(OggVorbis_File *vf,ogg_int64_t pos);
  91. extern int ov_pcm_seek_page(OggVorbis_File *vf,ogg_int64_t pos);
  92. extern int ov_time_seek(OggVorbis_File *vf,ogg_int64_t pos);
  93. extern int ov_time_seek_page(OggVorbis_File *vf,ogg_int64_t pos);
  94. extern ogg_int64_t ov_raw_tell(OggVorbis_File *vf);
  95. extern ogg_int64_t ov_pcm_tell(OggVorbis_File *vf);
  96. extern ogg_int64_t ov_time_tell(OggVorbis_File *vf);
  97. extern vorbis_info *ov_info(OggVorbis_File *vf,int link);
  98. extern vorbis_comment *ov_comment(OggVorbis_File *vf,int link);
  99. extern long ov_read(OggVorbis_File *vf,char *buffer,int length,
  100.     int *bitstream);
  101. #ifdef __cplusplus
  102. }
  103. #endif /* __cplusplus */
  104. #endif