os/mm/mm_plat/aac_decoder_config_api/inc/AacDecoderConfig.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2002-2006 Nokia Corporation and/or its subsidiary(-ies). 
     3 * All rights reserved.
     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".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description:  Used to configure the AAC decoder.
    15 *
    16 */
    17 
    18 
    19 #ifndef CAACDECODERCONFIG_H
    20 #define CAACDECODERCONFIG_H
    21 
    22 // INCLUDES
    23 #include <e32base.h>
    24 #include <AudioConfig.h>
    25 
    26 // CONSTANTS
    27 const TUid KUidAacDecoderConfig = {0x10207AAE};
    28 
    29 // MACROS
    30 
    31 // DATA TYPES
    32 
    33 // FUNCTION PROTOTYPES
    34 
    35 // FORWARD DECLARATIONS
    36 class CMMFDevSound;
    37 class CMdaAudioOutputStream;
    38 
    39 // CLASS DECLARATION
    40 
    41 /**
    42 *  Interface for sending configuration info to AAC decoder.
    43 *  This abstract class just provides the static NewL function for the creation
    44 *  of the proxy, and also defines the custom interface to be implemented by the
    45 *  proxy and the real custom interface implementation.
    46 *
    47 *  @lib AacDecoderConfig.lib
    48 *  @since S60 3.0
    49 */
    50 class CAacDecoderConfig : public CBase
    51 	{
    52     public:  // Constructors and destructor
    53         
    54         /**
    55         * Creates the interface.
    56         */
    57 		IMPORT_C static CAacDecoderConfig* 
    58 		                NewL(CMMFDevSound& aDevSound);
    59         
    60         /**
    61         * Creates the interface.
    62         */
    63 		IMPORT_C static CAacDecoderConfig* 
    64 		                NewL(CMdaAudioOutputStream& aUtility);
    65 
    66     public: // New functions
    67         /**
    68         * Configures the decoder for decoding raw AAC data.
    69         * @since S60 3.0
    70         * @param aAudioConfig stucture defining configuration information.
    71         * @return status
    72         */
    73 		IMPORT_C virtual TInt SetAudioConfig(TAudioConfig& aAudioConfig) = 0;
    74         
    75     public: // Functions from base classes
    76     protected:  // New functions
    77     protected:  // Functions from base classes
    78     private:
    79 
    80     public:     // Data
    81     protected:  // Data
    82     private:    // Data
    83     public:     // Friend classes
    84     protected:  // Friend classes
    85     private:    // Friend classes
    86 
    87 	};
    88 
    89 #endif      // CAACDECODERCONFIGCI_H
    90             
    91 // End of File