Update contrib.
2 * Copyright (c) 2002-2006 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: Used to configure the AAC decoder.
19 #ifndef CAACDECODERCONFIG_H
20 #define CAACDECODERCONFIG_H
24 #include <AudioConfig.h>
27 const TUid KUidAacDecoderConfig = {0x10207AAE};
33 // FUNCTION PROTOTYPES
35 // FORWARD DECLARATIONS
37 class CMdaAudioOutputStream;
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.
47 * @lib AacDecoderConfig.lib
50 class CAacDecoderConfig : public CBase
52 public: // Constructors and destructor
55 * Creates the interface.
57 IMPORT_C static CAacDecoderConfig*
58 NewL(CMMFDevSound& aDevSound);
61 * Creates the interface.
63 IMPORT_C static CAacDecoderConfig*
64 NewL(CMdaAudioOutputStream& aUtility);
66 public: // New functions
68 * Configures the decoder for decoding raw AAC data.
70 * @param aAudioConfig stucture defining configuration information.
73 IMPORT_C virtual TInt SetAudioConfig(TAudioConfig& aAudioConfig) = 0;
75 public: // Functions from base classes
76 protected: // New functions
77 protected: // Functions from base classes
83 public: // Friend classes
84 protected: // Friend classes
85 private: // Friend classes
89 #endif // CAACDECODERCONFIGCI_H