Update contrib.
2 * Copyright (c) 2007 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
14 * Description: Header file for EAacPlusUtil.cpp
19 #ifndef EAACPLUSUTIL_H
20 #define EAACPLUSUTIL_H
26 class EAacpAudioFrameInfo;
29 * This class implements utility functions to extract AAC frame
32 * @lib MmfEAacPlusUtil.lib
35 class CEAacPlusUtil : public CBase
39 enum TEAacPlusFormatType
46 * EAAC+ frame info struct.
48 * @lib MmfEAacPlusUtil.lib
51 class TEAacPlusFrameInfo
54 TInt iOutFrameSize; // Size of PCM Samples generated by decoder
55 TInt iNoOfSamples; // Number of PCM Samples generated by decoder per frame
56 TInt iSamplingFrequency; // Sampling freq of AAC Code decoder
57 TInt iNoOfChannels; // No of output channel 1=Mono; 2=Stereo
58 TInt iObjectType; // MPEG Audio Object Type 2=AAC-LC; 4=AAC-LTP
59 TInt iOutSamplingFrequency; // Sampling Frequence for the output samples
60 TInt iDownSampledMode; // 0=Normal Mode; 1=Down Sampled mode
61 TInt iSbr; // 0=SBR not present; 1=SBR present
62 TInt iPs; // 0=PS not present; 1=PS present
65 class TEAacPlusFrameLenConfig
68 TEAacPlusFormatType iFormatType; // Container type.
69 TInt iSamplingFrequency; // Sampling freq of AAC core decoder
70 TInt iObjectType; // MPEG Audio Object Type 2=AAC-LC; 4=AAC-LTP
74 public: // Constructors and destructor
77 * Two-phased constructor.
79 IMPORT_C static CEAacPlusUtil* NewL();
84 IMPORT_C virtual ~CEAacPlusUtil();
86 public: // New functions
89 * Used to get the format type.
91 * @param aBuf buffer of AAC data from start of aac content
92 * @param aBufLen length of aBuf
93 * @param TEAacPlusFormatType returned format type 0=raw; 1=ADIF; 2=ADTS
96 IMPORT_C TInt GetAacFormatType(const TUint8* aBuf, TInt aBufLen, TEAacPlusFormatType& aFormatType);
99 * Used to get the audio format information for ADIF and ADTS content.
100 * Data should be provided beginning with start of aac content including header.
101 * Enough data should follow the header to determine SBR and PS if needed.
102 * Can be used with mpeg data where aHdrBuf will contain the AudioSpecificConfig. Implicit SBR and PS
103 * will not be determined.
105 * @param aHdrBuf buffer with AAC data beginning at start of aac content including ADIF or ADTS header
106 * @param aHdrLen length of aHdrBuf; header length is returned in this parameter
107 * @param aFrameInfo returns the format information
110 IMPORT_C TInt GetAacFrameInfo (const TUint8* aHdrBuf, TInt& aHdrLen, TEAacPlusFrameInfo& aFrameInfo);
113 * Used to get the audio format information for mpeg aac.
114 * aHdrBuf will contain the AudioSpecificConfig. aDataBuf will contain data at beginning of raw audio frames.
115 * Implicit SBR and PS can be determined.
117 * @param aHdrBuf buffer with AudioSpecificConfig data.
118 * @param aHdrLen length of aHdrBuf
119 * @param aFrameInfo returns the format information
120 * @param aDataBuf buffer with raw audio frames
121 * @param aDataBufLen length of aDataBuf
124 IMPORT_C TInt GetAacFrameInfo (const TUint8* aHdrBuf, TInt& aHdrLen, TEAacPlusFrameInfo& aFrameInfo,
125 TUint8* aDataBuf, TInt aDataBufLen);
128 * Used to get the size in bytes of the frame found at the start of aBuf.
130 * @param aBuf buffer with AAC data frame
131 * @param aBufLen length of aBuf
132 * @param aFrameLen returns the frame size in bytes
135 IMPORT_C TInt GetAacFrameLength(const TUint8* aBuf, TInt aBufLen, TInt& aFrameLen);
138 * Used to configure the utility with information needed to enable the apis.
139 * This api can be used if GetAacFrameInfo is not used to initialize the utility.
141 * @param aFormatType format type
142 * @param aSamplingFrequency sampling frequency
145 IMPORT_C TInt Config(TEAacPlusFrameLenConfig& aFrameLenConfig);
150 * C++ default constructor.
155 * By default Symbian 2nd phase constructor is private.
160 TEAacPlusFormatType iFormat;
161 EAacpAudioFrameInfo* iGetFrameLenParam;
165 #endif // EAACPLUSUTIL_H