Update contrib.
2 * Copyright (c) 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: Project specification for WMA 10 Pro decoder
20 #ifndef WMADECODERINTFC_H
21 #define WMADECODERINTFC_H
27 const TUid KUidWmaDecoderIntfc = {0x10207BAD};
33 // FUNCTION PROTOTYPES
35 // FORWARD DECLARATIONS
37 class CMdaAudioInputStream;
38 class CMdaAudioOutputStream;
43 * Interface for sending configuration info to WMA 10 Pro decoder.
44 * This abstract class just provides the static NewL function for the
45 * creation of the proxy. Also, it defines the APIs to be implemented
46 * by the proxy and the real custom interface implementation.
48 * @lib WmaDecoderIntfc.lib
51 class CWmaDecoderIntfc : public CBase
67 EToolOutput32Bit = 1, //default = disabled
68 EDownMixToStereo = 2, //default = disabled
69 ELostDataConcealment= 3 // default = disabled
72 public: // Constructors and destructor
75 * Creates the interface.
77 IMPORT_C static CWmaDecoderIntfc*
78 NewL(CMMFDevSound& aDevSound);
81 * Creates the interface
82 * This function will always leave with KErrNotSuppored
84 IMPORT_C static CWmaDecoderIntfc*
85 NewL(CMdaAudioInputStream& aUtility);
88 * Creates the interface.
90 IMPORT_C static CWmaDecoderIntfc*
91 NewL(CMdaAudioOutputStream& aUtility);
93 public: // New functions
96 * Configures the compressed audio format
98 * @param aFormat - the audio format.
101 IMPORT_C virtual void SetFormat(TFormat aFormat) = 0;
104 * Configures the number of bits per sample
106 * @param aBitsPerSample - bits per sample.
109 IMPORT_C virtual void SetBitsPerSampleIn(TUint aBitsPerSample) = 0;
112 * Configures the number of audio channels
114 * @param aNumOfChannels: The number of audio channels.
117 IMPORT_C virtual void SetNumChannelsIn (TUint aNumChannelsIn) = 0;
120 * Configures the sampling rate
122 * @param aSamplesPerSec: Sample rate value in Hertz.
125 IMPORT_C virtual void SetSamplesPerSec (TUint aSamplesPerSec) = 0;
128 * Configures the average number of bytes per second
130 * @param aAvgBytesPerSec: Average bytes per second.
133 IMPORT_C virtual void SetAvgBytesPerSec (TUint aAvgBytesPerSec) = 0;
136 * Configures the block align size in bytes
138 * @param aBlockAlign: Block size in bytes
141 IMPORT_C virtual void SetBlockAlign (TUint aBlockAlign) = 0;
144 * Configures information specific to the WMA decoder
146 * @param aEncodeOptions: The encode options
149 IMPORT_C virtual void SetEncodeOptions (TUint aEncodeOptions) = 0;
152 * Configures information specific to the WMA 10 Pro decoder
154 * @param aEncodeOpts1: The encode options 1
157 IMPORT_C virtual void SetEncodeOptions1 (TUint aEncodeOpts1) = 0;
160 * Configures information specific to the WMA 10 Pro decoder
162 * @param aEncodeOpts2: The encode options 2
165 IMPORT_C virtual void SetEncodeOptions2 (TUint aEncodeOpts2) = 0;
168 * Configures the decoder for the channel data arrangement
170 * @param aChannelMask: Channel mask
173 IMPORT_C virtual void SetChannelMaskIn (TUint aChannelMask) = 0;
176 * Commits configuration settings to the decoder.
178 * @return TInt - Status
180 IMPORT_C virtual TInt ApplyConfig() = 0;
183 * Returns the configuration state of audio format.
185 * @return aFormat: The audio format
187 IMPORT_C virtual TInt GetFormat (TFormat& aFormat) = 0;
190 * Returns the configuration state of number of bits per sample.
192 * @return aBitsPerSample: Number of bits per sample
194 IMPORT_C virtual TInt GetBitsPerSampleIn(TUint& aBitsPerSample) = 0;
197 * Returns the configuration state of the number of channels.
199 * @return aNumOfChannels: Number of channels
201 IMPORT_C virtual TInt GetNumOfChannelsIn (TUint& aNumOfChannels) = 0;
204 * Returns the configuration state of the sample rate.
206 * @return aSamplesPerSec: Sample rate value in Hertz
208 IMPORT_C virtual TInt GetSamplesPerSec (TUint& aSamplesPerSec) = 0;
211 * Returns the configuration state of average bytes per second.
213 * @return aAvgBytesPerSec: Average bytes per second
215 IMPORT_C virtual TInt GetAvgBytesPerSec (TUint& aAvgBytesPerSec) = 0;
218 * Returns the configuration state of block alignment.
220 * @return aBlockAlign: Block size in bytes
222 IMPORT_C virtual TInt GetBlockAlign (TUint& aBlockAlign) = 0;
225 * Returns the configuration state of the encode options.
227 * @return aEncodeOpts: The encode options.
229 IMPORT_C virtual TInt GetEncodeOptions (TUint& aEncodeOpts) = 0;
232 * Returns the configuration state of the advanced encode options.
234 * @return aEncodeOpts1: The encode options
236 IMPORT_C virtual TInt GetEncodeOptions1 (TUint& aEncodeOpts1) = 0;
239 * Returns the configuration state of the advanced encode options.
241 * @return aEncodeOpts2: The encode options
243 IMPORT_C virtual TInt GetEncodeOptions2 (TUint& aEncodeOpts2) = 0;
246 * Returns the configuration state of the input channel mask.
248 * @return aChannelMask: Channel mask.
250 IMPORT_C virtual TInt GetChannelMaskIn (TUint& aChannelMask) = 0;
253 * Returns a list of formats supported by the decoder.
255 * @return aSupportedFormats: An array of the formats, as defined in TFormat
257 IMPORT_C virtual TInt GetSupportedFormats(RArray<TFormat>& aSupportedFormats) = 0;
260 * Returns a list of tools supported by the decoder.
262 * @return aSupportedTools: An array of the tools supported by the decoder
264 IMPORT_C virtual TInt GetSupportedTools(RArray<TTool>& aSupportedTools) = 0;
267 * Returns the maximum number of input channels supported by the decoder.
269 * @return aSupportedMaxChannelsIn: number of channels.
271 IMPORT_C virtual TInt GetSupportedMaxChannelsIn(TUint& aSupportedMaxChannelsIn) = 0;
274 * Returns the maximum bit rate supported by the decoder.
276 * @return aSupportedMaxBitrate: maximum bitrate
278 IMPORT_C virtual TInt GetSupportedMaxBitrate(TUint& aSupportedMaxBitrate) = 0;
281 * Returns the maximum sample rate supported by the decoder.
283 * @return aSupportedMaxSampleRate: maximum sample rate
285 IMPORT_C virtual TInt GetSupportedMaxSampleRate(TUint& aSupportedMaxSampleRate) = 0;
288 * Returns a list of the tools that are controllable through this interface.
290 * @return aControllableTools: An array of the tools that are controllable through this interface.
292 IMPORT_C virtual TInt GetControllableTools(RArray<TTool>& aControllableTools) = 0;
295 * Enables the tool specified.
297 * @return aTool: Specifies the tool to enable.
299 IMPORT_C virtual void EnableTool(TTool aTool) = 0;
302 * Disables the tool specified.
304 * @return aTool: Specifies the tool to disable.
306 IMPORT_C virtual void DisableTool(TTool aTool) = 0;
309 * Returns the state of the specified tool
311 * @return aTool: Specifies the tool for which the state is requested
312 * @ aEnabled : Indicates the state of the tool specified in aTool
314 IMPORT_C virtual TInt GetTool(TTool aTool, TBool& aEnabled) = 0;
318 #endif // WMADECODERINTFC_H