l3.h
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:5k
源码类别:

Symbian

开发平台:

Visual 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 _L3_H_
  36. #define _L3_H_
  37. /****  L3.h  ***************************************************
  38.   Layer III structures
  39.   *** Layer III is 32 bit only          ***
  40.   *** Layer III code assumes 32 bit int ***
  41. Copyright 1996-97 Xing Technology Corp.
  42. ******************************************************************/
  43. #define GLOBAL_GAIN_SCALE (4*15)
  44. /* #define GLOBAL_GAIN_SCALE 0 */
  45. #if defined _M_IX86 || defined __alpha__ || defined __i386__ || defined __i386 || defined i386 || defined _LITTLE_ENDIAN
  46. #define LITTLE_ENDIAN 1
  47. #else
  48. #define LITTLE_ENDIAN 0
  49. #endif
  50. #ifndef LITTLE_ENDIAN
  51. #error Layer III LITTLE_ENDIAN must be defined 0 or 1
  52. #endif
  53. /*-----------------------------------------------------------*/
  54. /*---- huffman lookup tables ---*/
  55. /* endian dependent !!! */
  56. #if LITTLE_ENDIAN
  57.     typedef union {
  58.         int ptr;
  59.         struct {
  60.             unsigned char signbits;
  61.             unsigned char x;
  62.             unsigned char y;
  63.             unsigned char purgebits;   // 0 = esc
  64.         } b;
  65.     } HUFF_ELEMENT;
  66. #else           /* big endian machines */
  67.     typedef union {
  68.         int ptr;        /* int must be 32 bits or more */
  69.         struct {
  70.             unsigned char purgebits;   // 0 = esc
  71.             unsigned char y;
  72.             unsigned char x;
  73.             unsigned char signbits;
  74.         } b;
  75.     } HUFF_ELEMENT;
  76. #endif
  77. /*--------------------------------------------------------------*/
  78. typedef struct {
  79.     unsigned int bitbuf;
  80.     int bits;
  81.     unsigned char *bs_ptr;
  82.     unsigned char *bs_ptr0;
  83.     unsigned char *bs_ptr_end;      // optional for overrun test
  84. } BITDAT;
  85. /*-- side info ---*/
  86. typedef struct {
  87.     int part2_3_length;
  88.     int big_values;
  89.     int global_gain;
  90.     int scalefac_compress;
  91.     int window_switching_flag;
  92.     int block_type;
  93.     int mixed_block_flag;
  94.     int table_select[3];
  95.     int subblock_gain[3];
  96.     int region0_count;
  97.     int region1_count;
  98.     int preflag;
  99.     int scalefac_scale;
  100.     int count1table_select;
  101. }   GR;
  102. typedef struct {
  103.     int mode;
  104.     int mode_ext;
  105.     /*---------------*/
  106.     int main_data_begin;    /* beginning, not end, my spec wrong */
  107.     int private_bits;
  108.     /*---------------*/
  109.     int scfsi[2];          /* 4 bit flags [ch] */
  110.     GR  gr[2][2];          /* [gran][ch] */
  111. }   SIDE_INFO;
  112. /*-----------------------------------------------------------*/
  113. /*-- scale factors ---*/
  114. // check dimensions - need 21 long, 3*12 short
  115. // plus extra for implicit sf=0 above highest cb
  116. typedef struct {
  117. int l[23];            /* [cb] */
  118. int s[3][13];         /* [window][cb] */
  119. } SCALEFACT;  
  120. /*-----------------------------------------------------------*/
  121. typedef struct {
  122.     int cbtype;     /* long=0 short=1 */
  123.     int cbmax;      /* max crit band */
  124.     int lb_type;    /* long block type 0 1 3 */
  125.     int cbs0;       /* short band start index 0 3 12 (12=no shorts */
  126.     int ncbl;       /* number long cb's 0 8 21 */
  127.     int cbmax_s[3]; /* cbmax by individual short blocks */
  128. } CB_INFO;
  129. /*-----------------------------------------------------------*/
  130. /* scale factor infor for MPEG2 intensity stereo  */
  131. typedef struct {
  132.     int nr[3];
  133.     int slen[3];
  134.     int intensity_scale;
  135. } IS_SF_INFO;       
  136. /*-----------------------------------------------------------*/
  137. typedef union {
  138.     int s;
  139.     float x;
  140. } SAMPLE;
  141. /*-----------------------------------------------------------*/
  142. #endif //_L3_H_