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

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 _MPALOWL3_H_
  36. #define _MPALOWL3_H_
  37. /*****************************************************************
  38. low level decoder functions Layer III
  39. ******************************************************************/
  40. #ifdef __cplusplus
  41. extern "C" {
  42. #endif
  43. #include "bitget.h"
  44. // sbtL3.c
  45. void sbt_mono_L3(float *sample,   unsigned char  *pcm, int ch, float vbuf[][512], int vb_ptr[]);
  46. void sbt_dual_L3(float *sample,   unsigned char  *pcm, int ch, float vbuf[][512], int vb_ptr[]);
  47. void sbt16_mono_L3(float *sample, unsigned char  *pcm, int ch, float vbuf[][512], int vb_ptr[]);
  48. void sbt16_dual_L3(float *sample, unsigned char  *pcm, int ch, float vbuf[][512], int vb_ptr[]);
  49. void sbt8_mono_L3(float *sample,  unsigned char  *pcm, int ch, float vbuf[][512], int vb_ptr[]);
  50. void sbt8_dual_L3(float *sample,  unsigned char  *pcm, int ch, float vbuf[][512], int vb_ptr[]);
  51. void sbtB_mono_L3(float *sample,   unsigned char *pcm, int ch, float vbuf[][512], int vb_ptr[]);
  52. void sbtB_dual_L3(float *sample,   unsigned char *pcm, int ch, float vbuf[][512], int vb_ptr[]);
  53. void sbtB16_mono_L3(float *sample, unsigned char *pcm, int ch, float vbuf[][512], int vb_ptr[]);
  54. void sbtB16_dual_L3(float *sample, unsigned char *pcm, int ch, float vbuf[][512], int vb_ptr[]);
  55. void sbtB8_mono_L3(float *sample,  unsigned char *pcm, int ch, float vbuf[][512], int vb_ptr[]);
  56. void sbtB8_dual_L3(float *sample,  unsigned char *pcm, int ch, float vbuf[][512], int vb_ptr[]);
  57. // hwin.c
  58. int hybrid(void *xin, void *xprev, float *y,
  59.             int btype, int nlong, int ntot, int nprev, int band_limit_nsb);
  60. int hybrid_sum(void *xin, void *xin_left, float *y,
  61.             int btype, int nlong, int ntot);
  62. void sum_f_bands( void *a, void *b, int n);
  63. void FreqInvert(float *y, int n);
  64. // msis.c
  65. void antialias(void *x, int n);
  66. void ms_process(void *x, int n);  /* sum-difference stereo */
  67. void is_process_MPEG1(void *x,    /* intensity stereo */
  68.                 SCALEFACT *sf, 
  69.                 CB_INFO cb_info[2],         /* [ch] */
  70.                 int nsamp, int ms_mode, int nBand[2][22], int sfBandIndex[2][22]);
  71. void is_process_MPEG2(void *x,    /* intensity stereo */
  72.                 SCALEFACT *sf, 
  73.                 CB_INFO cb_info[2],     /* [ch] */
  74.                 IS_SF_INFO *is_sf_info,
  75.                 int nsamp, int ms_mode, int nBand[2][22], int sfBandIndex[2][22]);
  76. // uph.c
  77. void unpack_huff(void *xy, int n, int ntable, BITDAT *bitdat);
  78. int unpack_huff_quad(void *vwxy, int n, int nbits, int ntable, BITDAT *bitdat);
  79. // L3dq.c
  80. void dequant(SAMPLE sample[], int *nsamp, 
  81.              SCALEFACT *sf, 
  82.              GR *gr,
  83.              CB_INFO *cb_info, int ncbl_mixed, int nBand[2][22], float re_buf[192][3]);
  84. // upsf.c
  85. void unpack_sf_sub_MPEG1(SCALEFACT *scalefac, GR *gr, 
  86.                            int scfsi,   /* bit flag */
  87.                            int igr, BITDAT *bitdat);
  88. void unpack_sf_sub_MPEG2(SCALEFACT sf[],  /* return intensity scale */
  89.                             GR *grdat,
  90.                             int is_and_ch, IS_SF_INFO *is_sf_info, BITDAT *bitdat);
  91. #ifdef __cplusplus
  92. }  // end extern C
  93. #endif
  94. #endif //__MPALOWL3_H_