gaConfig.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. /* parse an MPEG-4 general audio specific config structure from a bitstream */
  36. #ifndef GACONFIG_H
  37. #define GACONFIG_H
  38. #include "hxresult.h"
  39. #include "hxtypes.h"
  40. #include "bitstream.h"
  41. #include "bitstrmint.h"
  42. class CPCE
  43. {
  44. public:
  45. CPCE() ;
  46. ~CPCE() ;
  47. HX_RESULT Read(struct BITSTREAM &bs) ;
  48. HX_RESULT SetChannelConfiguration(UINT32 channelConfig) ;
  49. UINT32 GetNChannels() const ;
  50. private:
  51. enum {
  52. MAX_FRONT_ELEMS = 16,
  53. MAX_SIDE_ELEMS = 16,
  54. MAX_BACK_ELEMS = 16,
  55. MAX_LFE_ELEMS = 4,
  56. MAX_ASSOC_ELEMS = 8,
  57. MAX_CC_ELEMS = 16
  58. } ;
  59. CBitstreamInt element_instance_tag ;
  60. CBitstreamInt object_type ;
  61. CBitstreamInt sampling_frequency_index ;
  62. CBitstreamInt num_front_channel_elements ;
  63. CBitstreamInt num_side_channel_elements ;
  64. CBitstreamInt num_back_channel_elements ;
  65. CBitstreamInt num_lfe_channel_elements ;
  66. CBitstreamInt num_assoc_data_elements ;
  67. CBitstreamInt num_valid_cc_elements ;
  68. CBitstreamInt mono_mixdown_present ;
  69. CBitstreamInt mono_mixdown_element_number ;
  70. CBitstreamInt stereo_mixdown_present ;
  71. CBitstreamInt stereo_mixdown_element_number ;
  72. CBitstreamInt matrix_mixdown_idx_present ;
  73. CBitstreamInt matrix_mixdown_idx ;
  74. CBitstreamInt pseudo_surround_enable ;
  75. BOOL front_element_is_cpe[MAX_FRONT_ELEMS] ;
  76. BOOL side_element_is_cpe[MAX_SIDE_ELEMS] ;
  77. BOOL back_element_is_cpe[MAX_BACK_ELEMS] ;
  78. BOOL cc_element_is_ind_sw[MAX_CC_ELEMS] ;
  79. int front_element_tag_select[MAX_FRONT_ELEMS] ;
  80. int side_element_tag_select[MAX_SIDE_ELEMS] ;
  81. int back_element_tag_select[MAX_BACK_ELEMS] ;
  82. int lfe_element_tag_select[MAX_LFE_ELEMS] ;
  83. int assoc_data_element_tag_select[MAX_ASSOC_ELEMS] ;
  84. int valid_cc_element_tag_select[MAX_CC_ELEMS] ;
  85. CBitstreamInt comment_field_bytes ;
  86. char *comment_field_data ;
  87. int num_front_channels ;
  88. int num_side_channels ;
  89. int num_back_channels ;
  90. static const int channelMapping[8][4] ;
  91. } ;
  92. class CGASpecificConfig
  93. {
  94. public:
  95. CGASpecificConfig() ;
  96. ~CGASpecificConfig() ;
  97.     HX_RESULT Read(struct BITSTREAM &bs,
  98. UINT32 samplingFrequency,
  99. UINT32 ChannelConfiguration,
  100. UINT32 AudioObjectType) ;
  101. UINT32 GetNChannels() const {return mPCE.GetNChannels();}
  102. UINT32 GetFrameLength() const ;
  103. private:
  104. CBitstreamInt mFrameLengthFlag ;
  105. CBitstreamInt mDependsOnCoreCoder ;
  106. CBitstreamInt mCoreCoderDelay ;
  107. CBitstreamInt mExtensionFlag ;
  108. CPCE mPCE ;
  109. UINT32 mFrameLength ;
  110. } ;
  111. class CAudioSpecificConfig
  112. {
  113. public:
  114. CAudioSpecificConfig() ;
  115. ~CAudioSpecificConfig() ;
  116. HX_RESULT Read(struct BITSTREAM &bs) ;
  117. UINT32 GetNChannels() const {return GASpecificConfig.GetNChannels();}
  118. UINT32 GetSampleRate() const ;
  119. UINT32 GetCoreSampleRate() const ;
  120.         UINT32 GetCoreSamplingFrequencyIndex() const;
  121. UINT32 GetObjectType() const ;
  122. UINT32 GetFrameLength() const {return GASpecificConfig.GetFrameLength();}
  123. BOOL   GetIsSBR() const {return m_bSBR;}
  124. private:
  125. CBitstreamInt AudioObjectType ;
  126. CBitstreamInt samplingFrequencyIndex ;
  127. CBitstreamInt samplingFrequency ;
  128. CBitstreamInt extensionSamplingFrequencyIndex ;
  129. CBitstreamInt extensionSamplingFrequency ;
  130. CBitstreamInt channelConfiguration ;
  131. CGASpecificConfig GASpecificConfig ;
  132. static const UINT32 aSampleRate[13] ;
  133. BOOL m_bSBR ;
  134. enum AudioObjectType
  135. {
  136. AACMAIN = 1,
  137. AACLC   = 2,
  138. AACSSR  = 3,
  139. AACLTP  = 4,
  140. AACSBR  = 5,
  141. AACSCALABLE = 6,
  142. TWINVQ  = 7
  143. } ;
  144. } ;
  145. #endif /* #ifndef GACONFIG_H */