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

VC书籍

开发平台:

Visual C++

  1. # ifndef LIBMAD_STREAM_H
  2. # define LIBMAD_STREAM_H
  3. # include "bit.h"
  4. # define MAD_BUFFER_GUARD 8
  5. # define MAD_BUFFER_MDLEN (511 + 2048 + MAD_BUFFER_GUARD)
  6. enum mad_error {
  7.   MAD_ERROR_NONE    = 0x0000,
  8.   MAD_ERROR_BUFLEN    = 0x0001,
  9.   MAD_ERROR_BUFPTR    = 0x0002,
  10.   MAD_ERROR_NOMEM    = 0x0031,
  11.   MAD_ERROR_LOSTSYNC    = 0x0101,
  12.   MAD_ERROR_BADLAYER    = 0x0102,
  13.   MAD_ERROR_BADBITRATE    = 0x0103,
  14.   MAD_ERROR_BADSAMPLERATE  = 0x0104,
  15.   MAD_ERROR_BADEMPHASIS    = 0x0105,
  16.   MAD_ERROR_BADCRC    = 0x0201,
  17.   MAD_ERROR_BADBITALLOC    = 0x0211,
  18.   MAD_ERROR_BADSCALEFACTOR = 0x0221,
  19.   MAD_ERROR_BADFRAMELEN    = 0x0231,
  20.   MAD_ERROR_BADBIGVALUES   = 0x0232,
  21.   MAD_ERROR_BADBLOCKTYPE   = 0x0233,
  22.   MAD_ERROR_BADSCFSI    = 0x0234,
  23.   MAD_ERROR_BADDATAPTR    = 0x0235,
  24.   MAD_ERROR_BADPART3LEN    = 0x0236,
  25.   MAD_ERROR_BADHUFFTABLE   = 0x0237,
  26.   MAD_ERROR_BADHUFFDATA    = 0x0238,
  27.   MAD_ERROR_BADSTEREO    = 0x0239
  28. };
  29. # define MAD_RECOVERABLE(error) ((error) & 0xff00)
  30. struct mad_stream {
  31.   unsigned char const *buffer;
  32.   unsigned char const *bufend;
  33.   unsigned long skiplen;
  34.   int sync;
  35.   unsigned long freerate;
  36.   unsigned char const *this_frame;
  37.   unsigned char const *next_frame;
  38.   struct mad_bitptr ptr;
  39.   struct mad_bitptr anc_ptr;
  40.   unsigned int anc_bitlen;
  41.   unsigned char (*main_data)[MAD_BUFFER_MDLEN];
  42.   unsigned int md_len;
  43.   int options;
  44.   enum mad_error error;
  45. };
  46. enum {
  47.   MAD_OPTION_IGNORECRC      = 0x0001,
  48.   MAD_OPTION_HALFSAMPLERATE = 0x0002
  49. # if 0  
  50.   MAD_OPTION_LEFTCHANNEL    = 0x0010,
  51.   MAD_OPTION_RIGHTCHANNEL   = 0x0020,
  52.   MAD_OPTION_SINGLECHANNEL  = 0x0030
  53. # endif
  54. };
  55. void mad_stream_init(struct mad_stream *);
  56. void mad_stream_finish(struct mad_stream *);
  57. # define mad_stream_options(stream, opts)  
  58.     ((void) ((stream)->options = (opts)))
  59. void mad_stream_buffer(struct mad_stream *,
  60.        unsigned char const *, unsigned long);
  61. void mad_stream_skip(struct mad_stream *, unsigned long);
  62. int mad_stream_sync(struct mad_stream *);
  63. char const *mad_stream_errorstr(struct mad_stream const *);
  64. # endif