os/mm/mm_plat/eaacplusutil_api/inc/EAacPlusUtil.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
/*
sl@0
     2
* Copyright (c) 2007 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     3
* All rights reserved.
sl@0
     4
* This component and the accompanying materials are made available
sl@0
     5
* under the terms of "Eclipse Public License v1.0"
sl@0
     6
* which accompanies this distribution, and is available
sl@0
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     8
*
sl@0
     9
* Initial Contributors:
sl@0
    10
* Nokia Corporation - initial contribution.
sl@0
    11
*
sl@0
    12
* Contributors:
sl@0
    13
*
sl@0
    14
* Description:  Header file for EAacPlusUtil.cpp
sl@0
    15
*
sl@0
    16
*/
sl@0
    17
sl@0
    18
sl@0
    19
#ifndef 	EAACPLUSUTIL_H
sl@0
    20
#define 	EAACPLUSUTIL_H
sl@0
    21
sl@0
    22
// INCLUDES
sl@0
    23
#include <e32base.h>
sl@0
    24
sl@0
    25
// CLASS DECLARATION
sl@0
    26
class EAacpAudioFrameInfo;
sl@0
    27
sl@0
    28
/**
sl@0
    29
*  This class implements utility functions to extract AAC frame
sl@0
    30
*  information.
sl@0
    31
*
sl@0
    32
*  @lib MmfEAacPlusUtil.lib
sl@0
    33
*  @since 3.2
sl@0
    34
*/
sl@0
    35
class CEAacPlusUtil : public CBase
sl@0
    36
	{
sl@0
    37
	public:
sl@0
    38
        // CONSTANTS
sl@0
    39
        enum TEAacPlusFormatType
sl@0
    40
	        {
sl@0
    41
		    EAacPlusFormatRaw=0,
sl@0
    42
		    EAacPlusFormatAdif=1,
sl@0
    43
		    EAacPlusFormatAdts=2
sl@0
    44
        	};
sl@0
    45
        /**
sl@0
    46
        *  EAAC+ frame info struct.
sl@0
    47
        *
sl@0
    48
        *  @lib MmfEAacPlusUtil.lib
sl@0
    49
        *  @since 3.2
sl@0
    50
        */
sl@0
    51
        class TEAacPlusFrameInfo
sl@0
    52
            {
sl@0
    53
        public:
sl@0
    54
	        TInt    	iOutFrameSize;			// Size of PCM Samples generated by decoder
sl@0
    55
            TInt    	iNoOfSamples;			// Number of PCM Samples generated by decoder per frame
sl@0
    56
            TInt    	iSamplingFrequency;		// Sampling freq of AAC Code decoder
sl@0
    57
            TInt		iNoOfChannels;			// No of output channel 1=Mono; 2=Stereo
sl@0
    58
        	TInt		iObjectType;			// MPEG Audio Object Type 2=AAC-LC; 4=AAC-LTP
sl@0
    59
        	TInt		iOutSamplingFrequency;  // Sampling Frequence for the output samples
sl@0
    60
        	TInt		iDownSampledMode;    	// 0=Normal Mode; 1=Down Sampled mode
sl@0
    61
        	TInt		iSbr;	                // 0=SBR not present; 1=SBR present
sl@0
    62
        	TInt		iPs;	                // 0=PS not present; 1=PS present
sl@0
    63
            };
sl@0
    64
sl@0
    65
        class TEAacPlusFrameLenConfig
sl@0
    66
            {
sl@0
    67
        public:
sl@0
    68
			TEAacPlusFormatType iFormatType;	// Container type.
sl@0
    69
            TInt    	iSamplingFrequency;		// Sampling freq of AAC core decoder
sl@0
    70
        	TInt		iObjectType;			// MPEG Audio Object Type 2=AAC-LC; 4=AAC-LTP
sl@0
    71
            };
sl@0
    72
sl@0
    73
sl@0
    74
    public:  // Constructors and destructor
sl@0
    75
sl@0
    76
        /**
sl@0
    77
        * Two-phased constructor.
sl@0
    78
        */
sl@0
    79
        IMPORT_C static CEAacPlusUtil* NewL();
sl@0
    80
sl@0
    81
        /**
sl@0
    82
        * Destructor.
sl@0
    83
        */
sl@0
    84
        IMPORT_C virtual ~CEAacPlusUtil();
sl@0
    85
sl@0
    86
    public: // New functions
sl@0
    87
sl@0
    88
		/**
sl@0
    89
        * Used to get the format type.
sl@0
    90
        * @since 3.2
sl@0
    91
        * @param	aBuf                 buffer of AAC data from start of aac content
sl@0
    92
        * @param	aBufLen              length of aBuf
sl@0
    93
        * @param	TEAacPlusFormatType  returned format type 0=raw; 1=ADIF; 2=ADTS
sl@0
    94
        * @return   status
sl@0
    95
        */
sl@0
    96
        IMPORT_C TInt GetAacFormatType(const TUint8* aBuf, TInt aBufLen, TEAacPlusFormatType& aFormatType);
sl@0
    97
sl@0
    98
		/**
sl@0
    99
        * Used to get the audio format information for ADIF and ADTS content.
sl@0
   100
        * Data should be provided beginning with start of aac content including header.
sl@0
   101
        * Enough data should follow the header to determine SBR and PS if needed.
sl@0
   102
        * Can be used with mpeg data where aHdrBuf will contain the AudioSpecificConfig. Implicit SBR and PS
sl@0
   103
        * will not be determined.
sl@0
   104
        * @since 3.2
sl@0
   105
        * @param	aHdrBuf buffer with AAC data beginning at start of aac content including ADIF or ADTS header
sl@0
   106
        * @param	aHdrLen length of aHdrBuf; header length is returned in this parameter
sl@0
   107
        * @param	aFrameInfo returns the format information
sl@0
   108
        * @return	status
sl@0
   109
        */
sl@0
   110
		IMPORT_C TInt GetAacFrameInfo (const TUint8* aHdrBuf, TInt& aHdrLen, TEAacPlusFrameInfo& aFrameInfo);
sl@0
   111
		
sl@0
   112
		/**
sl@0
   113
        * Used to get the audio format information for mpeg aac.
sl@0
   114
        * aHdrBuf will contain the AudioSpecificConfig. aDataBuf will contain data at beginning of raw audio frames.
sl@0
   115
        * Implicit SBR and PS can be determined.
sl@0
   116
        * @since 3.2
sl@0
   117
        * @param	aHdrBuf buffer with AudioSpecificConfig data.
sl@0
   118
        * @param	aHdrLen length of aHdrBuf
sl@0
   119
        * @param	aFrameInfo returns the format information
sl@0
   120
        * @param	aDataBuf buffer with raw audio frames
sl@0
   121
        * @param	aDataBufLen length of aDataBuf
sl@0
   122
        * @return	status
sl@0
   123
        */
sl@0
   124
		IMPORT_C TInt GetAacFrameInfo (const TUint8* aHdrBuf, TInt& aHdrLen, TEAacPlusFrameInfo& aFrameInfo,
sl@0
   125
									TUint8* aDataBuf, TInt aDataBufLen);
sl@0
   126
									
sl@0
   127
		/**
sl@0
   128
        * Used to get the size in bytes of the frame found at the start of aBuf.
sl@0
   129
        * @since 3.2
sl@0
   130
        * @param	aBuf buffer with AAC data frame
sl@0
   131
        * @param	aBufLen length of aBuf
sl@0
   132
        * @param	aFrameLen returns the frame size in bytes
sl@0
   133
        * @return   status
sl@0
   134
        */
sl@0
   135
		IMPORT_C TInt GetAacFrameLength(const TUint8* aBuf, TInt aBufLen, TInt& aFrameLen);
sl@0
   136
sl@0
   137
		/**
sl@0
   138
        * Used to configure the utility with information needed to enable the apis.
sl@0
   139
        * This api can be used if GetAacFrameInfo is not used to initialize the utility.
sl@0
   140
        * @since 3.2
sl@0
   141
        * @param	aFormatType format type
sl@0
   142
        * @param	aSamplingFrequency sampling frequency
sl@0
   143
        * @return   status
sl@0
   144
        */
sl@0
   145
		IMPORT_C TInt Config(TEAacPlusFrameLenConfig& aFrameLenConfig);
sl@0
   146
sl@0
   147
    private:
sl@0
   148
sl@0
   149
        /**
sl@0
   150
        * C++ default constructor.
sl@0
   151
        */
sl@0
   152
        CEAacPlusUtil();
sl@0
   153
sl@0
   154
        /**
sl@0
   155
        * By default Symbian 2nd phase constructor is private.
sl@0
   156
        */
sl@0
   157
        void ConstructL();
sl@0
   158
sl@0
   159
 	private:	// Data
sl@0
   160
		TEAacPlusFormatType iFormat;
sl@0
   161
		EAacpAudioFrameInfo* iGetFrameLenParam;
sl@0
   162
		TBool iInitialized;
sl@0
   163
	};
sl@0
   164
sl@0
   165
#endif      // EAACPLUSUTIL_H
sl@0
   166
sl@0
   167
// End of File