DECODER.H
上传用户:njqiyou
上传日期:2007-01-08
资源大小:574k
文件大小:9k
源码类别:

mpeg/mp3

开发平台:

C/C++

  1. /**********************************************************************
  2.  * ISO MPEG Audio Subgroup Software Simulation Group (1996)
  3.  * ISO 13818-3 MPEG-2 Audio Decoder - Lower Sampling Frequency Extension
  4.  *
  5.  * $Id: decoder.h,v 1.2 1996/03/28 03:13:37 rowlands Exp $
  6.  *
  7.  * $Log: decoder.h,v $
  8.  * Revision 1.2  1996/03/28 03:13:37  rowlands
  9.  * Merged layers 1-2 and layer 3 revisions
  10.  *
  11.  * Revision 1.1  1996/02/14 03:45:52  rowlands
  12.  * Initial revision
  13.  *
  14.  * Received from FhG
  15.  **********************************************************************/
  16. /**********************************************************************
  17.  *   date   programmers         comment                               *
  18.  * 2/25/91  Doulas Wong,        start of version 1.0 records          *
  19.  *          Davis Pan                                                 *
  20.  * 5/10/91  Vish (PRISM)        Renamed and regrouped all ".h" files  *
  21.  *                              into "common.h" and "decoder.h".      *
  22.  *                              Ported to Macintosh and Unix.         *
  23.  * 27jun91  dpwe (Aware)        New prototype for out_fifo()          *
  24.  *                              Moved "alloc_*" stuff to common.h     *
  25.  *                              Use ifdef PROTO_ARGS for prototypes   *
  26.  *                              prototypes reflect frame_params struct*
  27.  * 10/3/91  Don H. Lee          implemented CRC-16 error protection   *
  28.  * 2/11/92  W. Joseph Carter    Ported new code to Macintosh.  Most   *
  29.  *                              important fixes involved changing     *
  30.  *                              16-bit ints to long or unsigned in    *
  31.  *                              bit alloc routines for quant of 65535 *
  32.  *                              and passing proper function args.     *
  33.  *                              Removed "Other Joint Stereo" option   *
  34.  *                              and made bitrate be total channel     *
  35.  *                              bitrate, irrespective of the mode.    *
  36.  *                              Fixed many small bugs & reorganized.  *
  37.  *                              Modified some function prototypes.    *
  38.  * 08/07/92 Mike Coleman        Made small changes for portability    *
  39.  * 9/07/93  Toshiyuki Ishino    Integrated with Layer III.            *
  40.  * 11/04/94 Jon Rowlands        fix protos for usage() and            *
  41.  *                              recover_CRC_error()                   *
  42.  *          Roland Bitto  Adapted to MPEG2 low bitrate       *
  43.  **********************************************************************/
  44. /***********************************************************************
  45. *
  46. *  Decoder Include Files
  47. *
  48. ***********************************************************************/
  49. /***********************************************************************
  50. *
  51. *  Decoder Definitions
  52. *
  53. ***********************************************************************/
  54. #define   DFLT_OPEXT        ".dec"  /* default output file name extension */
  55. /*
  56.  NOTE: The value of a multiple-character constant is
  57.  implementation-defined.
  58. */
  59. #if !defined(MS_DOS) && !defined(AIX)
  60. #define   FILTYP_DEC_AIFF   'AIFF'
  61. #define   FILTYP_DEC_BNRY   'TEXT'
  62. #define   CREATR_DEC_AIFF   'Sd2a'
  63. /*
  64.   The following character constant is ASCII '????'
  65.   It is declared in hex because the character
  66.   constant contains a trigraph, causing an error in
  67.   parsing with ANSI preprocessors.
  68. */
  69. #define   CREATR_DEC_BNRY   0x3f3f3f3f
  70. #else
  71. #define   FILTYP_DEC_AIFF   "AIFF"
  72. #define   FILTYP_DEC_BNRY   "TEXT"
  73. #define   CREATR_DEC_AIFF   "Sd2a"
  74. #define   CREATR_DEC_BNRY   "????"
  75. #endif
  76. #define   SYNC_WORD         (long) 0xfff
  77. #define   SYNC_WORD_LNGTH   12
  78. #define   MUTE              0
  79. /***********************************************************************
  80. *
  81. *  Decoder Type Definitions
  82. *
  83. ***********************************************************************/
  84. /***********************************************************************
  85. *
  86. *  Decoder Variable External Declarations
  87. *
  88. ***********************************************************************/
  89. /***********************************************************************
  90. *
  91. *  Decoder Function Prototype Declarations
  92. *
  93. ***********************************************************************/
  94. /* The following functions are in the file "musicout.c" */
  95. #ifdef   PROTO_ARGS
  96. static void   usage(void);
  97. #else
  98. static void   usage();
  99. #endif
  100. /* The following functions are in the file "decode.c" */
  101. #ifdef   PROTO_ARGS
  102. extern void   decode_info(Bit_stream_struc*, frame_params*);
  103. extern void   II_decode_bitalloc(Bit_stream_struc*, unsigned int[2][SBLIMIT],
  104.                        frame_params*);
  105. extern void   I_decode_bitalloc(Bit_stream_struc*, unsigned int[2][SBLIMIT],
  106.                        frame_params*);
  107. extern void   I_decode_scale(Bit_stream_struc*, unsigned int[2][SBLIMIT],
  108.                        unsigned int[2][3][SBLIMIT], frame_params*);
  109. extern void   II_decode_scale(Bit_stream_struc*, unsigned int[2][SBLIMIT],
  110.                        unsigned int[2][SBLIMIT], unsigned int[2][3][SBLIMIT],
  111.                        frame_params*);
  112. extern void   I_buffer_sample(Bit_stream_struc*, unsigned int[2][3][SBLIMIT],
  113.                        unsigned int[2][SBLIMIT], frame_params*);
  114. extern void   II_buffer_sample(Bit_stream_struc*, unsigned int[2][3][SBLIMIT],
  115.                        unsigned int[2][SBLIMIT], frame_params*);
  116. extern void   read_quantizer_table(double[17], double[17]);
  117. extern void   II_dequantize_sample(unsigned int[2][3][SBLIMIT], 
  118.                        unsigned int[2][SBLIMIT], double[2][3][SBLIMIT],
  119.                        frame_params*);
  120. extern void   I_dequantize_sample(unsigned int[2][3][SBLIMIT],
  121.                        double[2][3][SBLIMIT], unsigned int[2][SBLIMIT],
  122.                        frame_params*);
  123. extern void   read_scale_factor(double[SCALE_RANGE]);
  124. extern void   II_denormalize_sample(double[2][3][SBLIMIT],
  125.                        unsigned int[2][3][SBLIMIT], frame_params*, int);
  126. extern void   I_denormalize_sample(double[2][3][SBLIMIT],
  127.                        unsigned int[2][3][SBLIMIT], frame_params*);
  128. extern void   create_syn_filter(double[64][SBLIMIT]);
  129. extern int    SubBandSynthesis (double*, int, short*);
  130. extern void   read_syn_window(double[HAN_SIZE]);
  131. extern void   window_sample(double*, double*);
  132. extern void   out_fifo(short[2][SSLIMIT][SBLIMIT], int, frame_params*, int,
  133.                        FILE*, unsigned long*);
  134. extern void   buffer_CRC(Bit_stream_struc*, unsigned int*);
  135. extern void   recover_CRC_error(short[2][SSLIMIT][SBLIMIT], int, frame_params*,
  136.                        FILE*, unsigned long*);
  137. extern void   III_dequantize_sample(long int[SBLIMIT][SSLIMIT],
  138. double [SBLIMIT][SSLIMIT], III_scalefac_t *,
  139.                         struct gr_info_s *, int, frame_params *);
  140. extern void   III_antialias(double[SBLIMIT][SSLIMIT], double[SBLIMIT][SSLIMIT], 
  141.                           struct gr_info_s *, frame_params *);
  142. extern void   inv_mdct(double[18], double[36], int);
  143. extern void   III_hybrid(double[SSLIMIT], double[SSLIMIT] , int, int,
  144.                        struct gr_info_s *, frame_params *);
  145. extern void   III_get_side_info(Bit_stream_struc *,
  146.                                  III_side_info_t *,
  147.                                  frame_params *);
  148. extern void   III_put_side_info(Bit_stream_struc *,
  149.                                  III_side_info_t *,
  150.                                  frame_params *);
  151. extern void III_get_scale_factors(III_scalefac_t *,
  152.                                  III_side_info_t *, 
  153.                                  int, 
  154.                                  int, 
  155.                                  frame_params *);
  156. #else
  157. extern void   decode_info();
  158. extern void   II_decode_bitalloc();
  159. extern void   I_decode_bitalloc();
  160. extern void   I_decode_scale();
  161. extern void   II_decode_scale();
  162. extern void   I_buffer_sample();
  163. extern void   II_buffer_sample();
  164. extern void   read_quantizer_table();
  165. extern void   II_dequantize_sample();
  166. extern void   I_dequantize_sample();
  167. extern void   read_scale_factor();
  168. extern void   II_denormalize_sample();
  169. extern void   I_denormalize_sample();
  170. extern void   create_syn_filter();
  171. extern int    SubBandSynthesis ();
  172. extern void   read_syn_window();
  173. extern void   window_sample();
  174. extern void   out_fifo();
  175. extern void   buffer_CRC();
  176. extern void   recover_CRC_error();
  177. extern void   III_dequantize_sample();
  178. extern void   III_antialias();
  179. extern void   inv_mdct();
  180. extern void   III_hybrid();
  181. #endif