mp4a-mux-cfg.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 MP4A_MUX_CFG_H
  36. #define MP4A_MUX_CFG_H
  37. #include "hxtypes.h"
  38. #include "bitstream.h"
  39. class MP4AAudioSpec
  40. {
  41. public:
  42.     MP4AAudioSpec();
  43.     MP4AAudioSpec(const MP4AAudioSpec& rhs);
  44.     ~MP4AAudioSpec();
  45.     MP4AAudioSpec& operator=(const MP4AAudioSpec& rhs);
  46.     BOOL Unpack(Bitstream& bs);
  47.     const UINT8* Config() const;
  48.     ULONG32 ConfigSize() const;
  49. private:
  50.     UINT8* m_pConfig;
  51.     ULONG32 m_ulConfigSize;
  52. };
  53. class MP4AStreamInfo
  54. {
  55. public:
  56.     MP4AStreamInfo();
  57.     
  58.     void SetProgram(ULONG32 program);
  59.     ULONG32 GetProgram() const;
  60.     void SetLayer(ULONG32 layer);
  61.     ULONG32 GetLayer() const;
  62.     void SetAudioSpec(const MP4AAudioSpec& audioSpec);
  63.     const MP4AAudioSpec& GetAudioSpec() const;
  64.     
  65.     void SetLengthType(ULONG32 type);
  66.     ULONG32 GetLengthType() const;
  67.     void SetBlockDelay(ULONG32 blockType);
  68.     ULONG32 GetBlockDelay() const;
  69.     void SetFracDelayPresent(BOOL present);
  70.     BOOL GetFracDelayPresent() const;
  71.     void SetFracDelay(ULONG32 fracDelay);
  72.     ULONG32 GetFracDelay() const;
  73.     void SetFrameLength(ULONG32 frameLength);
  74.     ULONG32 GetFrameLength() const;
  75.     void SetCELPIndex(ULONG32 celpIndex);
  76.     ULONG32 GetCELPIndex() const;
  77.     void SetHVXCIndex(ULONG32 hvxcIndex);
  78.     ULONG32 GetHVXCIndex() const;
  79. private:
  80.     ULONG32 m_ulProgram;
  81.     ULONG32 m_ulLayer;
  82.     MP4AAudioSpec m_audioSpec;
  83.     ULONG32 m_ulLengthType;
  84.     ULONG32 m_ulBlockDelay;
  85.     BOOL m_bFracDelayPresent;
  86.     ULONG32 m_ulFracDelay;
  87.     ULONG32 m_ulFrameLength;
  88.     ULONG32 m_ulCELPIndex;
  89.     ULONG32 m_ulHVXCIndex;
  90. };
  91. class MP4AMuxConfig
  92. {
  93. public:
  94.     MP4AMuxConfig();
  95.     ~MP4AMuxConfig();
  96.     BOOL Unpack(Bitstream& bs);
  97.     BOOL AllSameTiming() const;
  98.     ULONG32 NumSubFrames() const;
  99.     ULONG32 NumPrograms() const;
  100.     ULONG32 NumLayers(ULONG32 program) const;
  101.     ULONG32 GetStreamID(ULONG32 program, ULONG32 layer);
  102.     ULONG32 NumStreams() const;
  103.     const MP4AStreamInfo& GetStream(ULONG32 streamID) const;
  104.    
  105. protected :
  106.     void Reset();
  107.     void AddStream(const MP4AStreamInfo& info);   
  108. private:
  109.     BOOL m_bAllSameTiming;
  110.     ULONG32 m_ulNumSubFrames;
  111.     ULONG32 m_ulNumPrograms;
  112.     
  113.     ULONG32* m_pLayerCounts;
  114.     ULONG32** m_ppStreamLookup;
  115.     ULONG32 m_ulNumStreams;
  116.     MP4AStreamInfo* m_pStreamInfo;
  117. };
  118. inline
  119. const UINT8* MP4AAudioSpec::Config() const
  120. {
  121.     return m_pConfig;
  122. }
  123. inline
  124. ULONG32 MP4AAudioSpec::ConfigSize() const
  125. {
  126.     return m_ulConfigSize;
  127. }
  128. inline
  129. void MP4AStreamInfo::SetProgram(ULONG32 program)
  130. {
  131.     m_ulProgram = program;
  132. }
  133. inline
  134. ULONG32 MP4AStreamInfo::GetProgram() const
  135. {
  136.     return m_ulProgram;
  137. }
  138. inline
  139. void MP4AStreamInfo::SetLayer(ULONG32 layer)
  140. {
  141.     m_ulLayer = layer;
  142. }
  143. inline
  144. ULONG32 MP4AStreamInfo::GetLayer() const
  145. {
  146.     return m_ulLayer;
  147. }
  148. inline
  149. void MP4AStreamInfo::SetAudioSpec(const MP4AAudioSpec& audioSpec)
  150. {
  151.     m_audioSpec = audioSpec;
  152. }
  153. inline
  154. const MP4AAudioSpec& MP4AStreamInfo::GetAudioSpec() const
  155. {
  156.     return m_audioSpec;
  157. }
  158. inline
  159. void MP4AStreamInfo::SetLengthType(ULONG32 type)
  160. {
  161.     m_ulLengthType = type;
  162. }
  163. inline
  164. ULONG32 MP4AStreamInfo::GetLengthType() const
  165. {
  166.     return m_ulLengthType;
  167. }
  168. inline
  169. void MP4AStreamInfo::SetBlockDelay(ULONG32 blockType)
  170. {
  171.     m_ulBlockDelay = blockType;
  172. }
  173. inline
  174. ULONG32 MP4AStreamInfo::GetBlockDelay() const
  175. {
  176.     return m_ulBlockDelay;
  177. }
  178. inline
  179. void MP4AStreamInfo::SetFracDelayPresent(BOOL present)
  180. {
  181.     m_bFracDelayPresent = present;
  182. }
  183. inline
  184. BOOL MP4AStreamInfo::GetFracDelayPresent() const
  185. {
  186.     return m_bFracDelayPresent;
  187. }
  188. inline
  189. void MP4AStreamInfo::SetFracDelay(ULONG32 fracDelay)
  190. {
  191.     m_ulFracDelay = fracDelay;
  192. }
  193. inline
  194. ULONG32 MP4AStreamInfo::GetFracDelay() const
  195. {
  196.     return m_ulFracDelay;
  197. }
  198. inline
  199. void MP4AStreamInfo::SetFrameLength(ULONG32 frameLength)
  200. {
  201.     m_ulFrameLength = frameLength;
  202. }
  203. inline
  204. ULONG32 MP4AStreamInfo::GetFrameLength() const
  205. {
  206.     return m_ulFrameLength;
  207. }
  208. inline
  209. void MP4AStreamInfo::SetCELPIndex(ULONG32 celpIndex)
  210. {
  211.     m_ulCELPIndex = celpIndex;
  212. }
  213. inline
  214. ULONG32 MP4AStreamInfo::GetCELPIndex() const
  215. {
  216.     return m_ulCELPIndex;
  217. }
  218. inline
  219. void MP4AStreamInfo::SetHVXCIndex(ULONG32 hvxcIndex)
  220. {
  221.     m_ulHVXCIndex = hvxcIndex;
  222. }
  223. inline
  224. ULONG32 MP4AStreamInfo::GetHVXCIndex() const
  225. {
  226.     return m_ulHVXCIndex;
  227. }
  228. inline
  229. BOOL MP4AMuxConfig::AllSameTiming() const
  230. {
  231.     return m_bAllSameTiming;
  232. }
  233. inline
  234. ULONG32 MP4AMuxConfig::NumSubFrames() const
  235. {
  236.     return m_ulNumSubFrames;
  237. }
  238. inline
  239. ULONG32 MP4AMuxConfig::NumPrograms() const
  240. {
  241.     return m_ulNumPrograms;
  242. }
  243. inline
  244. ULONG32 MP4AMuxConfig::NumLayers(ULONG32 program) const
  245. {
  246.     return m_pLayerCounts[program];
  247. }
  248. inline
  249. ULONG32 MP4AMuxConfig::GetStreamID(ULONG32 program, ULONG32 layer)
  250. {
  251.     return m_ppStreamLookup[program][layer];
  252. }
  253. inline
  254. ULONG32 MP4AMuxConfig::NumStreams() const
  255. {
  256.     return m_ulNumStreams;
  257. }
  258. inline
  259. const MP4AStreamInfo& MP4AMuxConfig::GetStream(ULONG32 streamID) const
  260. {
  261.     return m_pStreamInfo[streamID];
  262. }
  263. #endif // MP4A_MUX_CFG_H