mpadecl3.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:7k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer of the Original Code and owns the copyrights in the portions 
  21.  * it created. 
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */ 
  35. #ifndef _MPADECl3_H_
  36. #define _MPADECL3_H_
  37. #include "mpadec.h"
  38. #include "sconceal.h"   // error concealment (for lost frames)
  39. typedef void (*SBT_FUNCTION_L3)(float *sample, unsigned char *pcm, 
  40.                              int ch, float vbuf[][512], int vb_ptr[]);
  41. #define NBUF (8*1024)
  42. #define BUF_TRIGGER (NBUF-1500)
  43. ///////////////////////////////////////////////////////////////////////////////
  44. // CMpaDecoderL3 is the layer1 MPEG audio decoder
  45. ///////////////////////////////////////////////////////////////////////////////
  46. class CMpaDecoderL3 : public CMpaDecoder
  47. {
  48. public:
  49.     CMpaDecoderL3();
  50.     ~CMpaDecoderL3();
  51.     // initialize Layer3 audio decoder
  52.     // conceal_enable determines missing frame handling
  53.     // for reformatted frames
  54.     //   if conceal_enable != 0, conceal by Wolfgang's method
  55.     //   if conceal_enable == 0, handle by null spectrum
  56.     int         audio_decode_init(MPEG_HEAD *h,
  57.                                  int framebytes_arg,
  58.                                  int reduction_code = 0,
  59.                                  int transform_code = 0,
  60.                                  int convert_code = 0,
  61.                                  int freq_limit = 24000,
  62.                                  int conceal_enable = 0);
  63.     // decode standard Layer3 frame
  64.     // no error concealment
  65.     IN_OUT      audio_decode(unsigned char *bs,
  66.                              unsigned char *pcm);
  67.     // decode reformatted frames (self contained, main_data_begin=0)
  68.     // call fails if main_data_begin != 0
  69.     // optional error concealment for missing frames
  70.     // missing frame indicated to decoder by size <= 0 
  71.     //   if conceal_enable != 0, conceal by Wolfgang's method
  72.     //   if conceal_enable == 0, handle by null spectrum
  73.     //     
  74.     IN_OUT      audio_decode(unsigned char *bs,
  75.                              unsigned char *pcm,
  76.                              int size);
  77. #ifdef REFORMAT
  78.     // test code, reformats to self contained frame, main_data_begin = 0
  79.     IN_OUT audio_decode_reformat(unsigned char *bs, unsigned char *bs_out);
  80. private:
  81.     unsigned char reformat_buf[2400]; /* Flawfinder: ignore */
  82.     int reformat_bytes;
  83.     int reformat_side_bytes;
  84. #endif
  85. private:    
  86.     IN_OUT L3audio_decode_MPEG1(unsigned char *bs, 
  87.                                 unsigned char *pcm);
  88.     IN_OUT L3audio_decode_MPEG2(unsigned char *bs, 
  89.                                 unsigned char *pcm); 
  90.     void Xform(unsigned char *pcm, int igr);
  91.     void Xform_mono(unsigned char *pcm, int igr);
  92.     void Xform_dual(unsigned char *pcm, int igr);
  93.     void Xform_dual_mono(unsigned char *pcm, int igr);
  94.     void Xform_dual_right(unsigned char *pcm, int igr);
  95.     int unpack_side_MPEG1();
  96.     int unpack_side_MPEG2(int igr);
  97. //    void unpack_main(unsigned char *buf, unsigned char *pcm, int igr);
  98.     void unpack_main(unsigned char *buf, int igr);
  99.     /*-- short portion is 3*x !! --*/
  100.     int     nBand[2][22]; /* [long/short][cb] */
  101.     int     sfBandIndex[2][22]; /* [long/short][cb] */
  102. BITDAT bitdat; /* JR - new (no longer C global) */
  103. float re_buf[192][3]; /* JR - new (no longer C global) */
  104.     /*------------*/
  105.     int mpeg25_flag;
  106.     int stereo_flag;
  107.     int igr;    
  108.     int band_limit;
  109.     int band_limit21;   // limit for sf band 21
  110.     int band_limit12;   // limit for sf band 12 short
  111.     int band_limit_nsb;  /* copy to global for hybrid */
  112.     int gain_adjust;     /* adjust gain e.g. cvt to mono */
  113.     int id;
  114.     int ncbl_mixed;   /* number of long cb's in mixed block 8 or 6 */
  115.     int half_outbytes;
  116.     unsigned int zero_level_pcm;
  117.     /* cb_info[igr][ch], compute by dequant, used by joint */
  118.     CB_INFO cb_info[2][2]; 
  119.     IS_SF_INFO is_sf_info;   /* MPEG-2 intensity stereo */
  120.     /*---------------------------------*/
  121.     /* main data bit buffer */
  122.     unsigned char buf[NBUF]; /* Flawfinder: ignore */
  123.     int buf_ptr0;
  124.     int buf_ptr1;
  125.     int main_pos_bit;
  126.     /*---------------------------------*/
  127.     SIDE_INFO side_info;
  128.     SCALEFACT sf[2][2];   /* [gr][ch] */
  129.     int nsamp[2][2];   /* must start = 0, for nsamp[igr_prev] */
  130.     float yout[576];     /* hybrid out, sbt in */
  131.     /* sample buffer */
  132.     /*- sample union of int/float  sample[ch][gr][576] */
  133.     /* static SAMPLE sample[2][2][576]; */
  134.     SAMPLE sample[2][2][576];
  135.     int iXform;
  136.     SBT_FUNCTION_L3 sbt_L3;
  137. //======= concealment =========
  138.     int conceal_flag;
  139.     CConcealment *conceal[2];
  140.     IN_OUT L3audio_decode_reformattedMPEG1(unsigned char *bs, 
  141.                            unsigned char *pcm, int size);
  142.     IN_OUT L3audio_decode_reformattedMPEG2(unsigned char *bs, 
  143.                            unsigned char *pcm, int size);
  144.     
  145.     void conceal_insert(int igr);
  146.     void conceal_fixup(int igr);
  147. #ifdef REFORMAT
  148.     // test code,  reformats frame
  149.     IN_OUT L3reformat_MPEG1(unsigned char *bs, unsigned char *bs_out);
  150.     // test code,  reformats frame
  151.     IN_OUT L3reformat_MPEG2(unsigned char *bs, unsigned char *bs_out);
  152. #endif
  153. };
  154. #endif