Blame view

ios/cocos2d/external/android-specific/pvmp3dec/src/pvmp3_tables.h 4.02 KB
520389e3   xiaoyu   接入cocos源码,编译未通过,继续修改
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
  /* ------------------------------------------------------------------
   * Copyright (C) 1998-2009 PacketVideo
   *
   * Licensed under the Apache License, Version 2.0 (the "License");
   * you may not use this file except in compliance with the License.
   * You may obtain a copy of the License at
   *
   *      http://www.apache.org/licenses/LICENSE-2.0
   *
   * Unless required by applicable law or agreed to in writing, software
   * distributed under the License is distributed on an "AS IS" BASIS,
   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
   * express or implied.
   * See the License for the specific language governing permissions
   * and limitations under the License.
   * -------------------------------------------------------------------
   */
  /*
     Filename: pvmp3_tables.h
  
     Date: 09/21/2007
  
  ------------------------------------------------------------------------------
   REVISION HISTORY
  
   Description:
  ------------------------------------------------------------------------------
   INCLUDE DESCRIPTION
  
  ------------------------------------------------------------------------------
  */
  
  #ifndef PVMP3_TABLES_H
  #define PVMP3_TABLES_H
  
  /*----------------------------------------------------------------------------
  ; INCLUDES
  ----------------------------------------------------------------------------*/
  
  #include "pvmp3_dec_defs.h"
  #include "pv_mp3_huffman.h"
  
  /*----------------------------------------------------------------------------
  ; MACROS
  ; Define module specific macros here
  ----------------------------------------------------------------------------*/
  
  /*----------------------------------------------------------------------------
  ; EXTERNAL VARIABLES REFERENCES
  ----------------------------------------------------------------------------*/
  
  /*----------------------------------------------------------------------------
  ; DEFINES AND SIMPLE TYPEDEF'S
  ----------------------------------------------------------------------------*/
  #define Qfmt_28(a) (int32(double(0x10000000)*a))
  
  /*----------------------------------------------------------------------------
  ; SIMPLE TYPEDEF'S
  ----------------------------------------------------------------------------*/
  
  /*----------------------------------------------------------------------------
  ; ENUMERATED TYPEDEF'S
  ----------------------------------------------------------------------------*/
  
  /*----------------------------------------------------------------------------
  ; STRUCTURES TYPEDEF'S
  ----------------------------------------------------------------------------*/
  
  typedef struct
  {
      int16 l[23];
      int16 s[14];
  } mp3_scaleFactorBandIndex;
  
  
  
  /*----------------------------------------------------------------------------
  ; GLOBAL FUNCTION DEFINITIONS
  ; Function Prototype declaration
  ----------------------------------------------------------------------------*/
  
  #ifdef __cplusplus
  extern "C"
  {
  #endif
  
      extern const int32    mp3_s_freq[4][4];
      extern const int32    inv_sfreq[4];
      extern const int16    mp3_bitrate[3][15];
      extern const int32    power_one_third[513];
  
      extern const  mp3_scaleFactorBandIndex mp3_sfBandIndex[9];
      extern const int32 mp3_shortwindBandWidths[9][13];
      extern const int32 pqmfSynthWin[(HAN_SIZE/2) + 8];
  
  
      extern const uint16 huffTable_1[];
      extern const uint16 huffTable_2[];
      extern const uint16 huffTable_3[];
      extern const uint16 huffTable_5[];
      extern const uint16 huffTable_6[];
      extern const uint16 huffTable_7[];
      extern const uint16 huffTable_8[];
      extern const uint16 huffTable_9[];
      extern const uint16 huffTable_10[];
      extern const uint16 huffTable_11[];
      extern const uint16 huffTable_12[];
      extern const uint16 huffTable_13[];
      extern const uint16 huffTable_15[];
      extern const uint16 huffTable_16[];
      extern const uint16 huffTable_24[];
      extern const uint16 huffTable_32[];
      extern const uint16 huffTable_33[];
  
  
  #ifdef __cplusplus
  }
  #endif
  
  /*----------------------------------------------------------------------------
  ; END
  ----------------------------------------------------------------------------*/
  
  #endif