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: Interface definition for BT SBC Encoder configuration.
19 #ifndef CSBCENCODERINTFC_H
20 #define CSBCENCODERINTFC_H
26 const TUid KUidSbcEncoderIntfc = {0x10207B24};
32 // FUNCTION PROTOTYPES
34 // FORWARD DECLARATIONS
36 class CMdaAudioInputStream;
41 * Interface for configuring the SBC encoder.
42 * Used to configure the SBC encoder operating modes.
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 SbcEncoderIntfc.lib
50 class CSbcEncoderIntfc : public CBase
54 // Supported channel modes
60 ESbcChannelJointStereo
63 // Supported allocation methods
64 enum TSbcAllocationMethod
67 ESbcAllocationLoudness
70 public: // Constructors and destructor
73 * Creates the interface.
75 IMPORT_C static CSbcEncoderIntfc* NewL(CMMFDevSound& aDevSound);
78 * Creates the interface.
80 IMPORT_C static CSbcEncoderIntfc* NewL(CMdaAudioInputStream& aUtility);
82 public: // New functions
84 * Retrieves the sampling frequencies supported by the encoder.
86 * @param aSupportedSamplingFrequencies array returning the supported
90 IMPORT_C virtual TInt GetSupportedSamplingFrequencies(
91 RArray<TUint>& aSupportedSamplingFrequencies) = 0;
94 * Retrieves the channel configurations supported by the encoder.
96 * @param aSupportedChannelModes array returning the supported
100 IMPORT_C virtual TInt GetSupportedChannelModes(
101 RArray<TSbcChannelMode>&
102 aSupportedChannelModes) = 0;
105 * Retrieves array of supported block numbers by the encoder.
107 * @param aNumBlocks array returning block numbers.
108 * @return TInt status
110 IMPORT_C virtual TInt GetSupportedNumOfBlocks(
111 RArray<TUint>& aSupportedNumOfBlocks) = 0;
114 * Retrieves the number of subbands supported by the encoder.
116 * @param aSupportedNumOfSubbands array returning the supported number
118 * @return TInt status
120 IMPORT_C virtual TInt GetSupportedNumOfSubbands(
121 RArray<TUint>& aSupportedNumOfSubbands) = 0;
124 * Retrieves the allocation methods supported by the encoder.
126 * @param aSupportedAllocationMethods array returning the supported
127 * allocation methods.
128 * @return TInt status
130 IMPORT_C virtual TInt GetSupportedAllocationMethods(
131 RArray<TSbcAllocationMethod>&
132 aSupportedAllocationMethods) = 0;
135 * Retrieves the supported bitpool range by the encoder.
137 * @param aMinSupportedBitpoolSize returning the min bitpool size.
138 * @param aMaxSupportedBitpoolSize returning the max bitpool size.
139 * @return TInt status
141 IMPORT_C virtual TInt GetSupportedBitpoolRange(
142 TUint& aMinSupportedBitpoolSize,
143 TUint& aMaxSupportedBitpoolSize) = 0;
146 * Sets the sampling frequency for encoding.
148 * @param aSamplingFrequency requested encoding sampling frequency.
151 IMPORT_C virtual void SetSamplingFrequency(
152 TUint aSamplingFrequency) = 0;
155 * Retrieves the current encode sampling frequency.
157 * @param aSamplingFrequency returns current encode sampling frequency.
158 * @return TInt status
160 IMPORT_C virtual TInt GetSamplingFrequency(
161 TUint& aSamplingFrequency) = 0;
164 * Sets the channel mode for encoding.
166 * @param aChannelMode requested encoding channel mode.
169 IMPORT_C virtual void SetChannelMode(
170 TSbcChannelMode aChannelMode) = 0;
173 * Retrieves the current encode channel mode.
175 * @param aChannelMode returns current encode channel mode.
176 * @return TInt status
178 IMPORT_C virtual TInt GetChannelMode(
179 TSbcChannelMode& aChannelMode) = 0;
182 * Sets the number of subbands for encoding.
184 * @param aNumofSubbands requested encoding number of subbands.
187 IMPORT_C virtual void SetNumOfSubbands(TUint aNumOfSubbands) = 0;
190 * Retrieves the current encode number of subbands.
192 * @param aNumOfSubbands returns current encode number of subbands.
193 * @return TInt status
195 IMPORT_C virtual TInt GetNumOfSubbands(TUint& aNumOfSubbands) = 0;
198 * Sets the number of blocks for encoding.
200 * @param aNumOfBlocks requested encoding number of blocks.
203 IMPORT_C virtual void SetNumOfBlocks(TUint aNumOfBlocks) = 0;
206 * Retrieves the current encode number of blocks.
208 * @param aNumOfBlocks returns current encode number of blocks.
209 * @return TInt status
211 IMPORT_C virtual TInt GetNumOfBlocks(TUint& aNumOfBlocks) = 0;
214 * Sets the allocation method for encoding.
216 * @param aAllocationMethod requested encoding allocation method.
219 IMPORT_C virtual void SetAllocationMethod(
220 TSbcAllocationMethod aAllocationMethod) = 0;
223 * Retrieves the current encode allocation method.
225 * @param aAllocationMethod returns current encode allocation method.
226 * @return TInt status
228 IMPORT_C virtual TInt GetAllocationMethod(
229 TSbcAllocationMethod& aAllocationMethod) = 0;
232 * Sets the bitpool size for encoding.
234 * @param aBitpoolSize requested encoding number of blocks.
237 IMPORT_C virtual void SetBitpoolSize(TUint aBitpoolSize) = 0;
240 * Retrieves the current encode bitpool size.
242 * @param aBitpoolSize returns current encode bitpool size.
243 * @return TInt status
245 IMPORT_C virtual TInt GetBitpoolSize(TUint& aBitpoolSize) = 0;
248 * Applies configuration to the encoder.
250 * @return TInt - status
252 IMPORT_C virtual TInt ApplyConfig() = 0;
256 #endif // CSBCENCODERINTFC_H