sl@0
|
1 |
// Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
/**
|
sl@0
|
17 |
@publishedAll
|
sl@0
|
18 |
@released
|
sl@0
|
19 |
@file
|
sl@0
|
20 |
*/
|
sl@0
|
21 |
|
sl@0
|
22 |
#ifndef __DEVSOUNDSTANDARDCUSTOMINTERFACES_H__
|
sl@0
|
23 |
#define __DEVSOUNDSTANDARDCUSTOMINTERFACES_H__
|
sl@0
|
24 |
|
sl@0
|
25 |
#include <e32std.h>
|
sl@0
|
26 |
|
sl@0
|
27 |
/**
|
sl@0
|
28 |
UID associated with the custom interface MMMFDevSoundCustomInterfaceBitRate.
|
sl@0
|
29 |
*/
|
sl@0
|
30 |
const TUid KUidCustomInterfaceDevSoundBitRate = {0x101F7DD5};
|
sl@0
|
31 |
|
sl@0
|
32 |
|
sl@0
|
33 |
|
sl@0
|
34 |
/**
|
sl@0
|
35 |
This class provides an interface to set and retrive the DevSound bit rate.
|
sl@0
|
36 |
*/
|
sl@0
|
37 |
class MMMFDevSoundCustomInterfaceBitRate
|
sl@0
|
38 |
{
|
sl@0
|
39 |
public:
|
sl@0
|
40 |
|
sl@0
|
41 |
/**
|
sl@0
|
42 |
Gets the bit rates that are supported by DevSound in its current configuration.
|
sl@0
|
43 |
|
sl@0
|
44 |
@param aSupportedBitRates
|
sl@0
|
45 |
The supported bit rates, in bits per second, shall be appended to this array. Note that
|
sl@0
|
46 |
the array shall be reset by this method.
|
sl@0
|
47 |
*/
|
sl@0
|
48 |
virtual void GetSupportedBitRatesL(RArray<TInt>& aSupportedBitRates) = 0;
|
sl@0
|
49 |
|
sl@0
|
50 |
/**
|
sl@0
|
51 |
Returns the current bit rate.
|
sl@0
|
52 |
|
sl@0
|
53 |
@return The current bit rate, in bits per second.
|
sl@0
|
54 |
*/
|
sl@0
|
55 |
virtual TInt BitRateL() = 0;
|
sl@0
|
56 |
|
sl@0
|
57 |
/**
|
sl@0
|
58 |
Sets the bit rate to a new value.
|
sl@0
|
59 |
|
sl@0
|
60 |
@param aBitRate
|
sl@0
|
61 |
The new bit rate, in bits per second.
|
sl@0
|
62 |
*/
|
sl@0
|
63 |
virtual void SetBitRateL(TInt aBitRate) = 0;
|
sl@0
|
64 |
};
|
sl@0
|
65 |
|
sl@0
|
66 |
|
sl@0
|
67 |
/*****************************************************************************/
|
sl@0
|
68 |
/**
|
sl@0
|
69 |
UID associated with the Custom interface MMMFDevSoundCustomInterfaceFileBlockLength.
|
sl@0
|
70 |
*/
|
sl@0
|
71 |
const TUid KUidCustomInterfaceDevSoundFileBlockLength = {0x10273806};
|
sl@0
|
72 |
|
sl@0
|
73 |
/**
|
sl@0
|
74 |
Custom interface class for setting the file's block length on the hwdevice.
|
sl@0
|
75 |
|
sl@0
|
76 |
Note also that this interface is just a simple interface to
|
sl@0
|
77 |
set file's block length. No checking is perfomed on the values sent (hence the
|
sl@0
|
78 |
Set methods do not return an error code).
|
sl@0
|
79 |
*/
|
sl@0
|
80 |
class MMMFDevSoundCustomInterfaceFileBlockLength
|
sl@0
|
81 |
{
|
sl@0
|
82 |
public:
|
sl@0
|
83 |
/**
|
sl@0
|
84 |
Sets the file's block length on the hwdevice
|
sl@0
|
85 |
@param aBlockAlign
|
sl@0
|
86 |
The file's block length
|
sl@0
|
87 |
*/
|
sl@0
|
88 |
virtual void SetFileBlockLength(TUint aBlockAlign)=0;
|
sl@0
|
89 |
};
|
sl@0
|
90 |
|
sl@0
|
91 |
/*****************************************************************************/
|
sl@0
|
92 |
/**
|
sl@0
|
93 |
UID associated with the Custom interface MMMFGsmConfig
|
sl@0
|
94 |
*/
|
sl@0
|
95 |
const TUid KUidGsmConfig = {0x102825FC};
|
sl@0
|
96 |
|
sl@0
|
97 |
/**
|
sl@0
|
98 |
This class provides an interface to set and retrive the GSM conversion format.
|
sl@0
|
99 |
*/
|
sl@0
|
100 |
class MMMFGsmConfig
|
sl@0
|
101 |
{
|
sl@0
|
102 |
public:
|
sl@0
|
103 |
/** The GSM conversion format */
|
sl@0
|
104 |
enum TMMFGsmConversionFormat
|
sl@0
|
105 |
{
|
sl@0
|
106 |
/** no conversion specified */
|
sl@0
|
107 |
ENone,
|
sl@0
|
108 |
/** for use in Full rate (06.10) and half rate (GSM 06.20 Half Rate (HR)) Vocoder */
|
sl@0
|
109 |
EALaw8bit,
|
sl@0
|
110 |
/** for use in Full rate (06.10) and half rate (GSM 06.20 Half Rate (HR)) Vocoder */
|
sl@0
|
111 |
EULaw8bit,
|
sl@0
|
112 |
/** for use in GSM 06.60 Enhanced Full Rate (EFR) Vocoder.*/
|
sl@0
|
113 |
EAlawPCM
|
sl@0
|
114 |
};
|
sl@0
|
115 |
|
sl@0
|
116 |
/**
|
sl@0
|
117 |
Set the conversion format using the TMMFGsmConversionFormat enum.
|
sl@0
|
118 |
This conversion must be set before the coder/decoder is started.
|
sl@0
|
119 |
|
sl@0
|
120 |
@param aConvFormat - format desired. For encoding behaviour, format will
|
sl@0
|
121 |
be the input format and for decoding behaviour format will be the output
|
sl@0
|
122 |
format.
|
sl@0
|
123 |
|
sl@0
|
124 |
@return KErrNone - Format change supported, KErrNotSupported - Format
|
sl@0
|
125 |
change not supported, KErrInUse - Format change attempted whilst decoding.
|
sl@0
|
126 |
*/
|
sl@0
|
127 |
virtual TInt SetConversionFormat(TMMFGsmConversionFormat aConvFormat) = 0;
|
sl@0
|
128 |
|
sl@0
|
129 |
/**
|
sl@0
|
130 |
Provides the current conversion format. Can be called at any time.
|
sl@0
|
131 |
|
sl@0
|
132 |
@param aConvFormat - after the call contains the current format.
|
sl@0
|
133 |
For encoding behaviour, format will be the input format and for decoding
|
sl@0
|
134 |
behaviour format will be the output format.
|
sl@0
|
135 |
|
sl@0
|
136 |
@return KErrNone if value returned successfully,
|
sl@0
|
137 |
KErrUnknown if value has not been successfully configured using
|
sl@0
|
138 |
SetConversionFormat() at least once for the current instance of the
|
sl@0
|
139 |
interface and there is no default value.
|
sl@0
|
140 |
KErrGeneral for all other error scenario.
|
sl@0
|
141 |
*/
|
sl@0
|
142 |
virtual TInt ConversionFormat(TMMFGsmConversionFormat& aConvFormat) const = 0;
|
sl@0
|
143 |
};
|
sl@0
|
144 |
|
sl@0
|
145 |
|
sl@0
|
146 |
/*****************************************************************************/
|
sl@0
|
147 |
/**
|
sl@0
|
148 |
UID associated with the Custom interface MSpeechEncoderConfig
|
sl@0
|
149 |
*/
|
sl@0
|
150 |
const TUid KUidSpeechEncoderConfig = {0x102825FB};
|
sl@0
|
151 |
|
sl@0
|
152 |
/**
|
sl@0
|
153 |
This class provides an interface to those CMMFHwDevices providing speech encoding.
|
sl@0
|
154 |
This interface is used for querying and configuring the operational modes of speech
|
sl@0
|
155 |
encoders as supported by those specific encoders.
|
sl@0
|
156 |
If a speech encoder does not support a mode provided by the interface, it will return KErrNotSupported.
|
sl@0
|
157 |
*/
|
sl@0
|
158 |
class MSpeechEncoderConfig
|
sl@0
|
159 |
{
|
sl@0
|
160 |
public:
|
sl@0
|
161 |
/**
|
sl@0
|
162 |
Controls voice activity detection (VAD) mode.
|
sl@0
|
163 |
This method can be called at all times - while actively encoding or not.
|
sl@0
|
164 |
It should be noted that a VAD mode change could also instigate a change in the
|
sl@0
|
165 |
mode of encoding (fixed rate encoding versus variable rate) e.g. in cases where
|
sl@0
|
166 |
VAD requires variable rate encoding.
|
sl@0
|
167 |
The effects of activating VAD mode behaviour should be documented in the
|
sl@0
|
168 |
CMMFHwDevice specification implementing it.
|
sl@0
|
169 |
|
sl@0
|
170 |
@param aVadModeOn ETrue=On, EFalse=Off
|
sl@0
|
171 |
@return KErrNone if successful. KErrNotSupported if this method is not implemented
|
sl@0
|
172 |
or not supported by the encoder.
|
sl@0
|
173 |
*/
|
sl@0
|
174 |
virtual TInt SetVadMode(TBool aVadModeOn) = 0;
|
sl@0
|
175 |
|
sl@0
|
176 |
/**
|
sl@0
|
177 |
Gets the current state of the voice activity detection (VAD) mode.
|
sl@0
|
178 |
This method can be called at all times - while actively encoding or not.
|
sl@0
|
179 |
|
sl@0
|
180 |
@param aVadModeOn On output ETrue = On, EFalse = Off
|
sl@0
|
181 |
@return KErrNone if successful, KErrNotSupported if this method is not implemented
|
sl@0
|
182 |
or not supported by the encoder.
|
sl@0
|
183 |
*/
|
sl@0
|
184 |
virtual TInt GetVadMode(TBool& aVadModeOn) = 0;
|
sl@0
|
185 |
};
|
sl@0
|
186 |
|
sl@0
|
187 |
/*****************************************************************************/
|
sl@0
|
188 |
/**
|
sl@0
|
189 |
UID associated with the Custom interface MAacDecoderConfig
|
sl@0
|
190 |
*/
|
sl@0
|
191 |
const TUid KUidAacDecoderConfig = {0x102825FD};
|
sl@0
|
192 |
|
sl@0
|
193 |
/**
|
sl@0
|
194 |
This class provides an interface to the AAC decoder CMMFHwDevice in order
|
sl@0
|
195 |
to provide additional configuration information for decoding raw AAC data blocks.
|
sl@0
|
196 |
|
sl@0
|
197 |
The sample rate can be configured via the CMMFHwDevice::SetConfig() method.
|
sl@0
|
198 |
An extension mechanism will be provided for further functionality as required.
|
sl@0
|
199 |
The CMMFHwDevice does not contain Output channel configuration at time of writing.
|
sl@0
|
200 |
The HWA decoders to date have been hardcoded for 2ch (left / right) output.
|
sl@0
|
201 |
Additional configuration information may be provided by using extension mechanisms.
|
sl@0
|
202 |
*/
|
sl@0
|
203 |
class MAacDecoderConfig
|
sl@0
|
204 |
{
|
sl@0
|
205 |
public:
|
sl@0
|
206 |
|
sl@0
|
207 |
/**
|
sl@0
|
208 |
This is a class containing an enumerated type that defines the audio object types
|
sl@0
|
209 |
required for configuring the AAC decoder for decoding raw AACDefined within TAudioConfig.
|
sl@0
|
210 |
*/
|
sl@0
|
211 |
class TAudioConfig
|
sl@0
|
212 |
{
|
sl@0
|
213 |
public:
|
sl@0
|
214 |
/** The audio object type */
|
sl@0
|
215 |
enum TAudioObjectType
|
sl@0
|
216 |
{
|
sl@0
|
217 |
/** Null */
|
sl@0
|
218 |
ENull = 0,
|
sl@0
|
219 |
/** AacMain */
|
sl@0
|
220 |
EAacMain = 1,
|
sl@0
|
221 |
/** AacLc */
|
sl@0
|
222 |
EAacLc = 2,
|
sl@0
|
223 |
/** AacSsr */
|
sl@0
|
224 |
EAacSsr = 3,
|
sl@0
|
225 |
/** AacLtp */
|
sl@0
|
226 |
EAacLtp = 4,
|
sl@0
|
227 |
/** Sbr */
|
sl@0
|
228 |
ESbr = 5
|
sl@0
|
229 |
};
|
sl@0
|
230 |
TAudioObjectType iAudioObjectType;
|
sl@0
|
231 |
};
|
sl@0
|
232 |
|
sl@0
|
233 |
public:
|
sl@0
|
234 |
/**
|
sl@0
|
235 |
Sets additional configuration parameters required for decoding raw AAC.
|
sl@0
|
236 |
|
sl@0
|
237 |
This method can be called when encoding is not active - anytime before the CMMFHwDevice is started.
|
sl@0
|
238 |
|
sl@0
|
239 |
For consistent configuration, this method should be called sometime before each
|
sl@0
|
240 |
start is called on the CMMFHwDevice when decoding raw AAC. That is to say the
|
sl@0
|
241 |
CMMFHwDevice is not required to retain prior configuration information, detect raw
|
sl@0
|
242 |
AAC sent to it, and reconfigure the decoder with this saved information after stop
|
sl@0
|
243 |
is called on the CMMFHwDevice. However, calling pause on the CMMFHwDevice implies
|
sl@0
|
244 |
that the next start call will be resuming same content. For this condition, this API
|
sl@0
|
245 |
is not required when restarting the CMMFHwDevice.
|
sl@0
|
246 |
|
sl@0
|
247 |
@param aAudioConfig The structure containing the additional information required for decoding the raw AAC.
|
sl@0
|
248 |
|
sl@0
|
249 |
@return KErrNone if successful or KErrInUse if this method is used when decoding is active.
|
sl@0
|
250 |
*/
|
sl@0
|
251 |
virtual TInt SetAudioConfig(TAudioConfig& aAudioConfig) = 0;
|
sl@0
|
252 |
|
sl@0
|
253 |
/**
|
sl@0
|
254 |
Gets additional configuration parameters supported for decoding raw AAC.
|
sl@0
|
255 |
|
sl@0
|
256 |
This method is allowable when encoding is not active - anytime before the CMMFHwDevice is started.
|
sl@0
|
257 |
|
sl@0
|
258 |
@param aSupportedAudioConfigs An array of structures containing the additional supported configurations.
|
sl@0
|
259 |
|
sl@0
|
260 |
@return KErrNone if successful.
|
sl@0
|
261 |
KErrInUse if this method is used when decoding is active.
|
sl@0
|
262 |
*/
|
sl@0
|
263 |
virtual TInt GetSupportedAudioConfigs(RArray<TAudioConfig>& aSupportedAudioConfigs) = 0;
|
sl@0
|
264 |
};
|
sl@0
|
265 |
|
sl@0
|
266 |
/*****************************************************************************/
|
sl@0
|
267 |
/**
|
sl@0
|
268 |
UID associated with the Custom interface MEAacPlusDecoderIntfc
|
sl@0
|
269 |
*/
|
sl@0
|
270 |
const TUid KUidEAacPlusDecoderIntfc = {0x102825FF};
|
sl@0
|
271 |
|
sl@0
|
272 |
/**
|
sl@0
|
273 |
This class provides an interface to the eAAC+ decoder hwdevice in order to provide configuration information.
|
sl@0
|
274 |
|
sl@0
|
275 |
The Get.. methods can be used to retrieve the last successfully applied configuration parameters.
|
sl@0
|
276 |
A message is not sent to adaptation or the decoder. Instead, a locally saved set of the
|
sl@0
|
277 |
parameters will be updated upon successful use of ApplyConfig(). It is these saved values that
|
sl@0
|
278 |
the proxy maintains that will be returned to the user. For instance, if two interfaces are used
|
sl@0
|
279 |
and one interface is used to modify the settings, the other interface's Get… methods would not
|
sl@0
|
280 |
return those settings. The Get.. methods will return an error if a successful use of ApplyConfig()
|
sl@0
|
281 |
has not been performed.
|
sl@0
|
282 |
|
sl@0
|
283 |
The Set.. methods are used to update a configuration structure within the implementation of the
|
sl@0
|
284 |
interface. When the interface is instantiated, the state of SBR and Downsampled modes will be
|
sl@0
|
285 |
disabled. Therefore it is not necessary to configure these parameters before using
|
sl@0
|
286 |
ApplyConfig() the first time. However, once modified using this instance of the interface, they
|
sl@0
|
287 |
remain in that state until Set.. again. The values of these items are updated in an internal
|
sl@0
|
288 |
structure when each Set.. is called.
|
sl@0
|
289 |
|
sl@0
|
290 |
The ApplyConfig() method is used to configure the encoder with the parameters specified by
|
sl@0
|
291 |
the Set.. methods. ApplyConfig will send back an error (KErrUnknown) if not all items are
|
sl@0
|
292 |
Set at least once. This check and the parameter values returned will be implemented in the interface proxy
|
sl@0
|
293 |
and will not query the actual decoder. The exception to this is for configuration parameters with defined
|
sl@0
|
294 |
default values (see next paragraph).
|
sl@0
|
295 |
|
sl@0
|
296 |
Calling ApplyConfig() will send these values using a single message to the message handler.
|
sl@0
|
297 |
ApplyConfig() should fail if it is used during decoding with a KErrInUse (or, as previously stated,
|
sl@0
|
298 |
KErrUnknown if a value without a default is not set). Since the interface proxy is not aware of decoding state,
|
sl@0
|
299 |
this check would have to be done in the adaptation implementation for this interface.
|
sl@0
|
300 |
*/
|
sl@0
|
301 |
class MEAacPlusDecoderIntfc
|
sl@0
|
302 |
{
|
sl@0
|
303 |
public:
|
sl@0
|
304 |
/**
|
sl@0
|
305 |
Defines additional configuration elements required to decode eAAC+.
|
sl@0
|
306 |
*/
|
sl@0
|
307 |
enum TAudioObjectType
|
sl@0
|
308 |
{
|
sl@0
|
309 |
/** Null */
|
sl@0
|
310 |
ENull = 0,
|
sl@0
|
311 |
/** AacLc */
|
sl@0
|
312 |
EAacLc = 2,
|
sl@0
|
313 |
/** AacLtp */
|
sl@0
|
314 |
EAacLtp = 4
|
sl@0
|
315 |
};
|
sl@0
|
316 |
|
sl@0
|
317 |
/**
|
sl@0
|
318 |
Sets the value of the sampling frequency of the decoder to be configured by the ApplyConfig()
|
sl@0
|
319 |
method. This is the sample rate of the core decoder, not the output sampling frequency of the decoder.
|
sl@0
|
320 |
This method can be called at all times but if ApplyConfig() is subsequently called
|
sl@0
|
321 |
after changing this value whilst decoding, a KErrInUse error will result.
|
sl@0
|
322 |
|
sl@0
|
323 |
@param aInputSamplingFrequency value of the sampling frequency.
|
sl@0
|
324 |
*/
|
sl@0
|
325 |
virtual void SetInputSamplingFrequency(TUint aInputSamplingFrequency) = 0;
|
sl@0
|
326 |
|
sl@0
|
327 |
/**
|
sl@0
|
328 |
Sets the object type of the core decoder to be configured by the ApplyConfig() method.
|
sl@0
|
329 |
|
sl@0
|
330 |
This method can be called at all times but if ApplyConfig() is subsequently called after
|
sl@0
|
331 |
changing this value whilst decoding, a KErrInUse error will result.
|
sl@0
|
332 |
|
sl@0
|
333 |
@param aAudioObjectType TAudioObjectType for core decoder as supported by the decoder.
|
sl@0
|
334 |
*/
|
sl@0
|
335 |
virtual void SetAudioObjectType(TAudioObjectType aAudioObjectType) = 0;
|
sl@0
|
336 |
|
sl@0
|
337 |
/**
|
sl@0
|
338 |
Sets the number of channels for the output of the decoder to be configured by the ApplyConfig()
|
sl@0
|
339 |
method. The use of this method is to ensure coordination of output channels rendered by the decoder
|
sl@0
|
340 |
and channel configuration of the audio system. This method does not imply that stereo to mono downmix
|
sl@0
|
341 |
is supported by the decoder. The main purpose is for the case considering the presence of PS. A user
|
sl@0
|
342 |
may not know if the decoder output will be mono or stereo based on header information alone, but may
|
sl@0
|
343 |
configure the decoder for two channel output to match the audio system configuration. If the user were
|
sl@0
|
344 |
to set the output to 1 channel and stereo data is present, the decoder may choose only one channel to
|
sl@0
|
345 |
output or to downmix the stereo to mono. Regarding this interface, it would be more desirable to configure
|
sl@0
|
346 |
the decoder when it is known to be mono source data and rely on downmix from the audio system instead of
|
sl@0
|
347 |
from the decoder. The decoder, however, would provide for duplicating mono data into 2 channel data when
|
sl@0
|
348 |
configured for 2 channels and the source data contains only 1 channel.
|
sl@0
|
349 |
This method is allowable at all times - while actively encoding or not, but using ApplyConfig()
|
sl@0
|
350 |
if changing this value while encoding will return an error.
|
sl@0
|
351 |
|
sl@0
|
352 |
@param aNumOfChannels 1 - output one channel audio = 0; 2 - output two channel audio.
|
sl@0
|
353 |
*/
|
sl@0
|
354 |
virtual void SetNumOfChannels(TUint aNumOfChannels) = 0;
|
sl@0
|
355 |
|
sl@0
|
356 |
/**
|
sl@0
|
357 |
Controls the SBR mode of the decoder to be configured by the ApplyConfig() method.
|
sl@0
|
358 |
|
sl@0
|
359 |
If SBR is enabled and no SBR data is present, the audio data will be upsampled,
|
sl@0
|
360 |
unless Down Sampled mode is enabled.
|
sl@0
|
361 |
|
sl@0
|
362 |
This method can be called at all times but if ApplyConfig() is subsequently called
|
sl@0
|
363 |
after changing this value whilst decoding, a KErrInUse error will result.
|
sl@0
|
364 |
|
sl@0
|
365 |
@param aSbrEnabled ETrue - SBR mode enabled, EFalse - SBR mode disabled
|
sl@0
|
366 |
*/
|
sl@0
|
367 |
virtual void SetSbr(TBool aSbrEnabled) = 0;
|
sl@0
|
368 |
|
sl@0
|
369 |
/**
|
sl@0
|
370 |
Controls the downsampled mode of the decoder to be configured by the ApplyConfig() method. This setting is only meaningful if SBR is enabled.
|
sl@0
|
371 |
|
sl@0
|
372 |
This method can be called at all times but if ApplyConfig() is subsequently called after
|
sl@0
|
373 |
changing this value whilst decoding, a KErrInUse error will result.
|
sl@0
|
374 |
|
sl@0
|
375 |
@param aDsmEnabled ETrue - downsampled mode enabled, EFalse - downsampled mode disabled.
|
sl@0
|
376 |
*/
|
sl@0
|
377 |
virtual void SetDownSampledMode(TBool aDsmEnabled) = 0;
|
sl@0
|
378 |
|
sl@0
|
379 |
/**
|
sl@0
|
380 |
Used to configure the decoder with parameters passed in the Set methods.
|
sl@0
|
381 |
|
sl@0
|
382 |
This method can be called all times but will return an KErrInUse if the configuration
|
sl@0
|
383 |
parameters would change while decoding (as none of the set parameters can be changed
|
sl@0
|
384 |
during decoding). This checking operational state of the decoder would be done by the
|
sl@0
|
385 |
adaptation implementation of this interface since the interface proxy is not aware of
|
sl@0
|
386 |
the decoder state. The adaptation implementation will return an error if incorrect values
|
sl@0
|
387 |
are used to configure the decoder.
|
sl@0
|
388 |
|
sl@0
|
389 |
@return KErrNone if successful, KErrNotSupported if this method is not implemented,
|
sl@0
|
390 |
KErrInUse if encoding in active and values are changed that are not allowed to be
|
sl@0
|
391 |
changed during encoding, KErrArgument if one of the configuration items is not appropriate or not set.
|
sl@0
|
392 |
*/
|
sl@0
|
393 |
virtual TInt ApplyConfig() = 0;
|
sl@0
|
394 |
|
sl@0
|
395 |
/**
|
sl@0
|
396 |
Returns the value of the sampling frequency of the decoder that was last successfully
|
sl@0
|
397 |
configured by the ApplyConfig() method.
|
sl@0
|
398 |
|
sl@0
|
399 |
This method can be called at all times but must be called after a value has been set via
|
sl@0
|
400 |
the ApplyConfig
|
sl@0
|
401 |
|
sl@0
|
402 |
@param aInputSamplingFrequency last setting successfully applied using ApplyConfig().
|
sl@0
|
403 |
|
sl@0
|
404 |
@return KErrNone if value returned successfully,
|
sl@0
|
405 |
KErrUnknown if value has not been successfully configured using ApplyConfig() at
|
sl@0
|
406 |
least once for the current instance of the interface or
|
sl@0
|
407 |
KErrInUse if the encoder is active.
|
sl@0
|
408 |
*/
|
sl@0
|
409 |
virtual TInt GetInputSamplingFrequency(TUint& aInputSamplingFrequency) = 0;
|
sl@0
|
410 |
|
sl@0
|
411 |
/**
|
sl@0
|
412 |
Returns the object type of the core decoder that was last successfully configured by the
|
sl@0
|
413 |
ApplyConfig() method.
|
sl@0
|
414 |
|
sl@0
|
415 |
This method can be called at all times.
|
sl@0
|
416 |
|
sl@0
|
417 |
@param aAudioObjectType last setting successfully applied using ApplyConfig().
|
sl@0
|
418 |
|
sl@0
|
419 |
@return KErrNone if value returned successfully,
|
sl@0
|
420 |
KErrUnknown if value has not been successfully configured using ApplyConfig()
|
sl@0
|
421 |
at least once for the current instance of the interface.
|
sl@0
|
422 |
*/
|
sl@0
|
423 |
virtual TInt GetAudioObjectType(TAudioObjectType& aAudioObjectType) = 0;
|
sl@0
|
424 |
|
sl@0
|
425 |
/**
|
sl@0
|
426 |
Returns the number of channels that was last successfully configured by the
|
sl@0
|
427 |
ApplyConfig() method.
|
sl@0
|
428 |
|
sl@0
|
429 |
This method can be called at all times. It will return an error if used before
|
sl@0
|
430 |
ApplyConfig() has been used successfully.
|
sl@0
|
431 |
|
sl@0
|
432 |
@param aNumOfChannels last setting successfully applied using ApplyConfig().
|
sl@0
|
433 |
|
sl@0
|
434 |
@return KErrNone if value returned successfully,
|
sl@0
|
435 |
KErrUnknown if value has not been successfully configured using ApplyConfig()
|
sl@0
|
436 |
at least once for the current instance of the interface.
|
sl@0
|
437 |
*/
|
sl@0
|
438 |
virtual TInt GetNumOfChannels(TUint& aNumOfChannels) = 0;
|
sl@0
|
439 |
|
sl@0
|
440 |
/**
|
sl@0
|
441 |
Returns the SBR mode that was last successfully configured by the ApplyConfig() method.
|
sl@0
|
442 |
|
sl@0
|
443 |
This method can be called at all times. It will return an error if used before
|
sl@0
|
444 |
ApplyConfig() has been used successfully.
|
sl@0
|
445 |
|
sl@0
|
446 |
@param aSbrEnabled last setting successfully applied using ApplyConfig().
|
sl@0
|
447 |
|
sl@0
|
448 |
@return KErrNone if value returned successfully,
|
sl@0
|
449 |
KErrUnknown if value has not been successfully configured using ApplyConfig()
|
sl@0
|
450 |
at least once for the current instance of the interface.
|
sl@0
|
451 |
*/
|
sl@0
|
452 |
virtual TInt GetSbr(TBool& aSbrEnabled) = 0;
|
sl@0
|
453 |
|
sl@0
|
454 |
/**
|
sl@0
|
455 |
Returns the downsampled mode that was last successfully configured by the ApplyConfig() method.
|
sl@0
|
456 |
|
sl@0
|
457 |
This method can be called at all times. It will return an error if used before
|
sl@0
|
458 |
ApplyConfig() has been used successfully.
|
sl@0
|
459 |
|
sl@0
|
460 |
@param aDsmEnabled last setting successfully applied using ApplyConfig().
|
sl@0
|
461 |
|
sl@0
|
462 |
@return KErrNone if value returned successfully,
|
sl@0
|
463 |
KErrUnknown if value has not been successfully configured using ApplyConfig() at least
|
sl@0
|
464 |
once for the current instance of the interface.
|
sl@0
|
465 |
*/
|
sl@0
|
466 |
virtual TInt GetDownSampledMode(TBool& aDsmEnabled) = 0;
|
sl@0
|
467 |
};
|
sl@0
|
468 |
|
sl@0
|
469 |
/*****************************************************************************/
|
sl@0
|
470 |
/**
|
sl@0
|
471 |
UID associated with the Custom interface MSbcEncoderIntfc
|
sl@0
|
472 |
*/
|
sl@0
|
473 |
const TUid KUidSbcEncoderIntfc = {0x10282600};
|
sl@0
|
474 |
|
sl@0
|
475 |
/**
|
sl@0
|
476 |
This class provides an interface to the SBC encoder hwdevice in order to provide configuration information.
|
sl@0
|
477 |
|
sl@0
|
478 |
The Get... supported methods can be used to check capabilities of the encoder by retrieving
|
sl@0
|
479 |
the last successfully applied configuration parameters. The purpose of the Get
|
sl@0
|
480 |
functions is to return the last successfully applied configuration of decoder by this
|
sl@0
|
481 |
interface. A message is not sent to adaptation or the decoder. Instead, a locally saved set
|
sl@0
|
482 |
of the parameters will be updated upon successful use of ApplyConfig(). The Get.. methods
|
sl@0
|
483 |
return an error (KErrUnknown ) if a successful use of ApplyConfig() has not been performed
|
sl@0
|
484 |
apart from the following methods, which return the range of properties supported by the
|
sl@0
|
485 |
implementation ( GetSupportedSamplingFrequencies, GetSupportedChannelModes,
|
sl@0
|
486 |
GetSupportedNumOfSubbands, GetSupportedAllocationMethods, GetSupportedNumOfBlocks,
|
sl@0
|
487 |
GetSupportedBitpoolRange). These methods do not have setter functions as they are not
|
sl@0
|
488 |
configurable and hence will return valid data at all times.
|
sl@0
|
489 |
|
sl@0
|
490 |
ApplyConfig() will send these values using one message with these values in the internally
|
sl@0
|
491 |
defined structure. The message handler should define this structure in the SBC messages
|
sl@0
|
492 |
header file. ApplyConfig() should fail (KErrInUse) if it is used during encoding and any
|
sl@0
|
493 |
values are changed other than bitpool value. Since the interface proxy is not aware of
|
sl@0
|
494 |
encoding state, this check would have to be done in the adaptation implementation for
|
sl@0
|
495 |
this interface. The Bitpool can be updated during encoding to change the bitrate. This would
|
sl@0
|
496 |
require the use of the SetBitpoolSize() and ApplyConfig() methods. Any other parameters can
|
sl@0
|
497 |
be changed but will result in a KErrInUse when ApplyConfig() is called.
|
sl@0
|
498 |
|
sl@0
|
499 |
The Set... methods are used update a client-side maintained configuration structure within the
|
sl@0
|
500 |
implementation of the interface. When the structure is completed, ApplyConfig() should be called
|
sl@0
|
501 |
to send these client side settings to the actual hwdevice implementation. There are no default
|
sl@0
|
502 |
values for the configuration parameters (hence all values must be set before ApplyConfig() is
|
sl@0
|
503 |
called or an error (KErrArgument) will result).
|
sl@0
|
504 |
|
sl@0
|
505 |
@note This constraint is only true for configurations
|
sl@0
|
506 |
where this is supported (e.g. If GetSupportedChannelModes returns KErrNotSupported then SetChannelMode
|
sl@0
|
507 |
does not need to be set before ApplyConfig() is called). This check and the parameter values
|
sl@0
|
508 |
returned will be implemented in the interface proxy and will not query the actual encoder. If
|
sl@0
|
509 |
multiple instances of the interface are created, each would have this requirement.
|
sl@0
|
510 |
*/
|
sl@0
|
511 |
class MSbcEncoderIntfc
|
sl@0
|
512 |
{
|
sl@0
|
513 |
public:
|
sl@0
|
514 |
/**
|
sl@0
|
515 |
Defines the channel modes for the SBC encoder
|
sl@0
|
516 |
*/
|
sl@0
|
517 |
enum TSbcChannelMode
|
sl@0
|
518 |
{
|
sl@0
|
519 |
/** SbcChannelMono */
|
sl@0
|
520 |
ESbcChannelMono,
|
sl@0
|
521 |
/** SbcChannelDual */
|
sl@0
|
522 |
ESbcChannelDual,
|
sl@0
|
523 |
/** SbcChannelStereo */
|
sl@0
|
524 |
ESbcChannelStereo,
|
sl@0
|
525 |
/** SbcChannelJointStereo */
|
sl@0
|
526 |
ESbcChannelJointStereo
|
sl@0
|
527 |
};
|
sl@0
|
528 |
|
sl@0
|
529 |
/**
|
sl@0
|
530 |
This type defines the allocation methods for the SBC encoder.
|
sl@0
|
531 |
*/
|
sl@0
|
532 |
enum TSbcAllocationMethod
|
sl@0
|
533 |
{
|
sl@0
|
534 |
/** SbcAllocationSNR */
|
sl@0
|
535 |
ESbcAllocationSNR,
|
sl@0
|
536 |
/** SbcAllocationLoudness */
|
sl@0
|
537 |
ESbcAllocationLoudness
|
sl@0
|
538 |
};
|
sl@0
|
539 |
|
sl@0
|
540 |
/**
|
sl@0
|
541 |
Retrieves the sampling frequencies supported by the encoder. See the class comments for details.
|
sl@0
|
542 |
This method can be called at all times.
|
sl@0
|
543 |
|
sl@0
|
544 |
@param aSamplingFrequencies Reference to the location to store the array of supported
|
sl@0
|
545 |
sampling frequencies.
|
sl@0
|
546 |
|
sl@0
|
547 |
@return KErrNone if successful, KErrNotSupported if this method is not supported.
|
sl@0
|
548 |
*/
|
sl@0
|
549 |
virtual TInt GetSupportedSamplingFrequencies(RArray<TUint>& aSamplingFrequencies) = 0;
|
sl@0
|
550 |
|
sl@0
|
551 |
/**
|
sl@0
|
552 |
Retrieves the channel encoding supported by the encoder. See the class comments for details.
|
sl@0
|
553 |
|
sl@0
|
554 |
This method can be called at all times.
|
sl@0
|
555 |
|
sl@0
|
556 |
@param aChannelModes Reference to the location to store the array of supported channel encoding modes.
|
sl@0
|
557 |
|
sl@0
|
558 |
@return KErrNone if successful, KErrNotSupported if this method is not supported.
|
sl@0
|
559 |
*/
|
sl@0
|
560 |
virtual TInt GetSupportedChannelModes(RArray<TSbcChannelMode>& aChannelModes) = 0;
|
sl@0
|
561 |
|
sl@0
|
562 |
/**
|
sl@0
|
563 |
Retrieves the number of subbands supported by the encoder. See the class comments for details.
|
sl@0
|
564 |
|
sl@0
|
565 |
This method can be called at all times.
|
sl@0
|
566 |
|
sl@0
|
567 |
@param aNumOfSubbands Reference to the location to store the array of supported number of subbands.
|
sl@0
|
568 |
|
sl@0
|
569 |
@return KErrNone if successful, KErrNotSupported if this method is not supported.
|
sl@0
|
570 |
*/
|
sl@0
|
571 |
virtual TInt GetSupportedNumOfSubbands(RArray<TUint>& aNumOfSubbands) = 0;
|
sl@0
|
572 |
|
sl@0
|
573 |
/**
|
sl@0
|
574 |
Retrieves the allocation methods supported by the encoder. See the class comments for details.
|
sl@0
|
575 |
|
sl@0
|
576 |
This method can be called at all times.
|
sl@0
|
577 |
|
sl@0
|
578 |
@param aAllocationMethods Reference to the location to store the array of supported allocation methods.
|
sl@0
|
579 |
|
sl@0
|
580 |
@return KErrNone if successful, KErrNotSupported if this method is not supported.
|
sl@0
|
581 |
*/
|
sl@0
|
582 |
virtual TInt GetSupportedAllocationMethods(RArray<TSbcAllocationMethod>& aAllocationMethods) = 0;
|
sl@0
|
583 |
|
sl@0
|
584 |
/**
|
sl@0
|
585 |
Retrieves the number of blocks supported by the encoder. See the class comments for details.
|
sl@0
|
586 |
|
sl@0
|
587 |
This method can be called at all times but if ApplyConfig() is subsequently called
|
sl@0
|
588 |
after changing this value whilst encoding, a KErrInUse error will result.
|
sl@0
|
589 |
|
sl@0
|
590 |
@param aNumOfBlocks Reference to the location to store the array of supported number of blocks.
|
sl@0
|
591 |
|
sl@0
|
592 |
@return KErrNone if successful, KErrNotSupported if this method is not supported.
|
sl@0
|
593 |
*/
|
sl@0
|
594 |
virtual TInt GetSupportedNumOfBlocks(RArray<TUint>& aNumOfBlocks) = 0;
|
sl@0
|
595 |
|
sl@0
|
596 |
/**
|
sl@0
|
597 |
Retrieves the min and max bitpool values supported by the encoder. See the class comments for details.
|
sl@0
|
598 |
|
sl@0
|
599 |
This method can be called at all times but and ApplyConfig() can be called to change the value whilst encoding.
|
sl@0
|
600 |
|
sl@0
|
601 |
@param aMinSupportedBitpoolSize minimum bitpool value allowed by the encoder.
|
sl@0
|
602 |
@param aMaxSupportedBitpoolSize maximum bitpool value allowed by the encoder.
|
sl@0
|
603 |
|
sl@0
|
604 |
@return KErrNone if successful, KErrNotSupported if this method is not supported.
|
sl@0
|
605 |
*/
|
sl@0
|
606 |
virtual TInt GetSupportedBitpoolRange(TUint& aMinSupportedBitpoolSize, TUint& aMaxSupportedBitpoolSize) = 0;
|
sl@0
|
607 |
|
sl@0
|
608 |
/**
|
sl@0
|
609 |
Sets the value of the sampling frequency of the encoder to be configured by the ApplyConfig() method.
|
sl@0
|
610 |
|
sl@0
|
611 |
This method can be called at all times but if ApplyConfig() is subsequently called
|
sl@0
|
612 |
after changing this value whilst encoding, a KErrInUse error will result.
|
sl@0
|
613 |
|
sl@0
|
614 |
@param aSamplingFrequency values according to standard and supported by encoder.
|
sl@0
|
615 |
*/
|
sl@0
|
616 |
virtual void SetSamplingFrequency(TUint aSamplingFrequency) = 0;
|
sl@0
|
617 |
|
sl@0
|
618 |
/**
|
sl@0
|
619 |
Sets the channel mode of the encoder to be configured by the ApplyConfig() method.
|
sl@0
|
620 |
See the class comments for details.
|
sl@0
|
621 |
|
sl@0
|
622 |
This method can be called at all times but if ApplyConfig() is subsequently called after
|
sl@0
|
623 |
changing this value whilst encoding, a KErrInUse error will result.
|
sl@0
|
624 |
|
sl@0
|
625 |
@param aChannelMode (ESbcChannelMono, ESbcChannelDual, ESbcChannelStereo,
|
sl@0
|
626 |
ESbcChannelJointStereo) when supported by encoder.
|
sl@0
|
627 |
|
sl@0
|
628 |
*/
|
sl@0
|
629 |
virtual void SetChannelMode(TSbcChannelMode aChannelMode) = 0;
|
sl@0
|
630 |
|
sl@0
|
631 |
/**
|
sl@0
|
632 |
Sets the channel mode of the encoder to be configured by the ApplyConfig() method.
|
sl@0
|
633 |
|
sl@0
|
634 |
This method can be called at all times but if ApplyConfig() is subsequently called after
|
sl@0
|
635 |
changing this value whilst encoding, a KErrInUse error will result.
|
sl@0
|
636 |
|
sl@0
|
637 |
@param aNumOfSubbands values according to standard and supported by encoder.
|
sl@0
|
638 |
|
sl@0
|
639 |
*/
|
sl@0
|
640 |
virtual void SetNumOfSubbands(TUint aNumOfSubbands) = 0;
|
sl@0
|
641 |
|
sl@0
|
642 |
/**
|
sl@0
|
643 |
Sets the allocation method of the encoder to be configured by the ApplyConfig() method.
|
sl@0
|
644 |
|
sl@0
|
645 |
This method can be called at all times but if ApplyConfig() is subsequently called after
|
sl@0
|
646 |
changing this value whilst encoding, a KErrInUse error will result.
|
sl@0
|
647 |
|
sl@0
|
648 |
@param aAllocationMethod ESbcAllocationSNR, ESbcAllocationLoudness when supported by encoder
|
sl@0
|
649 |
|
sl@0
|
650 |
*/
|
sl@0
|
651 |
virtual void SetAllocationMethod(TSbcAllocationMethod aAllocationMethod) = 0;
|
sl@0
|
652 |
|
sl@0
|
653 |
/**
|
sl@0
|
654 |
Sets the number of blocks of the encoder to be configured by the ApplyConfig() method.
|
sl@0
|
655 |
|
sl@0
|
656 |
This method can be called at all times but if ApplyConfig() is subsequently called after
|
sl@0
|
657 |
changing this value whilst encoding, a KErrInUse error will result.
|
sl@0
|
658 |
|
sl@0
|
659 |
@param aNumOfBlocks values according to standard and supported by encoder.
|
sl@0
|
660 |
*/
|
sl@0
|
661 |
virtual void SetNumOfBlocks(TUint aNumOfBlocks) = 0;
|
sl@0
|
662 |
|
sl@0
|
663 |
/**
|
sl@0
|
664 |
Sets the size of the bitpool of the encoder to be configured by the ApplyConfig() method.
|
sl@0
|
665 |
|
sl@0
|
666 |
This method is allowable at all times - while actively encoding or not.
|
sl@0
|
667 |
|
sl@0
|
668 |
@param aBitpoolSize values according to standard and supported by encoder.
|
sl@0
|
669 |
|
sl@0
|
670 |
*/
|
sl@0
|
671 |
virtual void SetBitpoolSize(TUint aBitpoolSize) = 0;
|
sl@0
|
672 |
|
sl@0
|
673 |
/**
|
sl@0
|
674 |
Used to configure the encoder with parameters passed in the Set… methods.
|
sl@0
|
675 |
This method can be called at all times - while actively encoding or not.
|
sl@0
|
676 |
An error (KErrInUse) will be returned if any configuration parameter, other
|
sl@0
|
677 |
than bitpool size, is changed while encoding. This checking operational
|
sl@0
|
678 |
state of the encoder would be done by the adaptation implementation of this
|
sl@0
|
679 |
interface since the interface proxy is not aware of the encoder state. Also,
|
sl@0
|
680 |
the adaptation implementation will return an error if incorrect values are
|
sl@0
|
681 |
used to configure the encoder.
|
sl@0
|
682 |
|
sl@0
|
683 |
@note Even though some preliminary checking is done in the set methods (to see
|
sl@0
|
684 |
if it is valid to set the values at all) it is expected that
|
sl@0
|
685 |
|
sl@0
|
686 |
@return KErrNone if successful,
|
sl@0
|
687 |
KErrNotSupported if this method is not implemented,
|
sl@0
|
688 |
KErrInUse if encoding in active and values are changed that are not
|
sl@0
|
689 |
allowed to be changed during encoding,
|
sl@0
|
690 |
KErrArgument if one of the configuration items is not appropriate or
|
sl@0
|
691 |
if all the values are not set (unless some of the values are not
|
sl@0
|
692 |
supported, in which case these values should be ignored).
|
sl@0
|
693 |
*/
|
sl@0
|
694 |
virtual TInt ApplyConfig() = 0;
|
sl@0
|
695 |
|
sl@0
|
696 |
/**
|
sl@0
|
697 |
Gets the value of the sampling frequency of the encoder that was last successfully
|
sl@0
|
698 |
configured by the ApplyConfig() method.
|
sl@0
|
699 |
|
sl@0
|
700 |
This method can be called at all times - while actively encoding or not, but will
|
sl@0
|
701 |
return an error if used before ApplyConfig() has been used successfully.
|
sl@0
|
702 |
|
sl@0
|
703 |
@param aSamplingFrequency last setting successfully applied using ApplyConfig().
|
sl@0
|
704 |
|
sl@0
|
705 |
@return KErrNone if value returned successfully,
|
sl@0
|
706 |
KErrUnknown if value has not been successfully configured using ApplyConfig()
|
sl@0
|
707 |
at least once for the current instance of the interface,
|
sl@0
|
708 |
KErrNotSupported if this method is not implemented (to match its set and
|
sl@0
|
709 |
getsupported methods).
|
sl@0
|
710 |
*/
|
sl@0
|
711 |
virtual TInt GetSamplingFrequency(TUint& aSamplingFrequency) = 0;
|
sl@0
|
712 |
|
sl@0
|
713 |
/**
|
sl@0
|
714 |
Gets the channel mode of the encoder that was last successfully configured by the
|
sl@0
|
715 |
ApplyConfig() method.
|
sl@0
|
716 |
|
sl@0
|
717 |
This method can be called at all times - while actively encoding or not, but will
|
sl@0
|
718 |
return an error if used before ApplyConfig() has been used successfully.
|
sl@0
|
719 |
|
sl@0
|
720 |
@param aChannelMode last setting successfully applied using ApplyConfig().
|
sl@0
|
721 |
|
sl@0
|
722 |
@return KErrNone if value returned successfully,
|
sl@0
|
723 |
KErrUnknown if value has not been successfully configured using ApplyConfig()
|
sl@0
|
724 |
at least once for the current instance of the interface.
|
sl@0
|
725 |
*/
|
sl@0
|
726 |
virtual TInt GetChannelMode(TSbcChannelMode& aChannelMode) = 0;
|
sl@0
|
727 |
|
sl@0
|
728 |
/**
|
sl@0
|
729 |
Gets the channel mode of the encoder that was last successfully configured by the
|
sl@0
|
730 |
ApplyConfig() method.
|
sl@0
|
731 |
|
sl@0
|
732 |
This method can be called at all times - while actively encoding or not,
|
sl@0
|
733 |
but will return an error if used before ApplyConfig() has been used successfully.
|
sl@0
|
734 |
|
sl@0
|
735 |
@param aNumOfSubbands last setting successfully applied using ApplyConfig().
|
sl@0
|
736 |
|
sl@0
|
737 |
@return KErrNone if value returned successfully,
|
sl@0
|
738 |
KErrUnknown if value has not been successfully configured using ApplyConfig()
|
sl@0
|
739 |
at least once for the current instance of the interface,
|
sl@0
|
740 |
KErrNotSupported if this method is not implemented (to match its set and
|
sl@0
|
741 |
getsupported methods)
|
sl@0
|
742 |
*/
|
sl@0
|
743 |
virtual TInt GetNumOfSubbands(TUint& aNumOfSubbands) = 0;
|
sl@0
|
744 |
|
sl@0
|
745 |
/**
|
sl@0
|
746 |
Gets the number of blocks of the encoder that was last successfully configured by
|
sl@0
|
747 |
the ApplyConfig() method.
|
sl@0
|
748 |
|
sl@0
|
749 |
This method can be called at all times - while actively encoding or not, but will
|
sl@0
|
750 |
return an error if used before ApplyConfig() has been used successfully.
|
sl@0
|
751 |
|
sl@0
|
752 |
@param aNumOfBlocks last setting successfully applied using ApplyConfig().
|
sl@0
|
753 |
|
sl@0
|
754 |
@return KErrNone if value returned successfully,
|
sl@0
|
755 |
KErrUnknown if value has not been successfully configured using ApplyConfig()
|
sl@0
|
756 |
at least once for the current instance of the interface,
|
sl@0
|
757 |
KErrNotSupported if this method is not implemented (to match its set and
|
sl@0
|
758 |
getsupported methods)
|
sl@0
|
759 |
*/
|
sl@0
|
760 |
virtual TInt GetNumOfBlocks(TUint& aNumOfBlocks) = 0;
|
sl@0
|
761 |
|
sl@0
|
762 |
/**
|
sl@0
|
763 |
Gets the allocation method of the encoder that was last successfully configured
|
sl@0
|
764 |
by the ApplyConfig() method.
|
sl@0
|
765 |
|
sl@0
|
766 |
This method can be called at all times - while actively encoding or not, but will
|
sl@0
|
767 |
return an error if used before ApplyConfig() has been used successfully.
|
sl@0
|
768 |
@param aAllocationMethod last setting successfully applied using ApplyConfig().
|
sl@0
|
769 |
|
sl@0
|
770 |
@return KErrNone if value returned successfully,
|
sl@0
|
771 |
KErrUnknown if value has not been successfully configured using ApplyConfig()
|
sl@0
|
772 |
at least once for the current instance of the interface,
|
sl@0
|
773 |
KErrNotSupported if this method is not implemented (to match its set and
|
sl@0
|
774 |
getsupported methods).
|
sl@0
|
775 |
*/
|
sl@0
|
776 |
virtual TInt GetAllocationMethod(TSbcAllocationMethod& aAllocationMethod) = 0;
|
sl@0
|
777 |
|
sl@0
|
778 |
/**
|
sl@0
|
779 |
Gets the size of the bitpool of the encoder that was last successfully
|
sl@0
|
780 |
configured by the ApplyConfig() method.
|
sl@0
|
781 |
|
sl@0
|
782 |
This method can be called at all times - while actively encoding or not, but
|
sl@0
|
783 |
will return an error if used before ApplyConfig() has been used successfully.
|
sl@0
|
784 |
|
sl@0
|
785 |
@param aBitpoolSize last setting successfully applied using ApplyConfig().
|
sl@0
|
786 |
|
sl@0
|
787 |
@return KErrNone if value returned successfully,
|
sl@0
|
788 |
KErrUnknown if value has not been successfully configured using ApplyConfig()
|
sl@0
|
789 |
at least once for the current instance of the interface,
|
sl@0
|
790 |
KErrNotSupported if this method is not implemented (to match its set and
|
sl@0
|
791 |
getsupported methods).
|
sl@0
|
792 |
*/
|
sl@0
|
793 |
virtual TInt GetBitpoolSize(TUint& aBitpoolSize) = 0;
|
sl@0
|
794 |
};
|
sl@0
|
795 |
|
sl@0
|
796 |
/*****************************************************************************/
|
sl@0
|
797 |
/**
|
sl@0
|
798 |
UID associated with the Custom interface MG711DecoderIntfc
|
sl@0
|
799 |
*/
|
sl@0
|
800 |
const TUid KUidG711DecoderIntfc = {0x10282601};
|
sl@0
|
801 |
|
sl@0
|
802 |
/**
|
sl@0
|
803 |
This class provides an interface to the G711 decoder CMMFHwDevice in order to provide
|
sl@0
|
804 |
additional configuration information.
|
sl@0
|
805 |
*/
|
sl@0
|
806 |
class MG711DecoderIntfc
|
sl@0
|
807 |
{
|
sl@0
|
808 |
public:
|
sl@0
|
809 |
/** The Decoder mode */
|
sl@0
|
810 |
enum TDecodeMode
|
sl@0
|
811 |
{
|
sl@0
|
812 |
/** DecALaw */
|
sl@0
|
813 |
EDecALaw,
|
sl@0
|
814 |
/** DecULaw */
|
sl@0
|
815 |
EDecULaw
|
sl@0
|
816 |
};
|
sl@0
|
817 |
|
sl@0
|
818 |
/**
|
sl@0
|
819 |
Informs the decoder of the encoded data format that will be sent to it.
|
sl@0
|
820 |
|
sl@0
|
821 |
This method can be called when decoding is not active - anytime before started
|
sl@0
|
822 |
or after stopped.
|
sl@0
|
823 |
@param aDecodeMode the decode mode.
|
sl@0
|
824 |
|
sl@0
|
825 |
@return KErrNone if successful.
|
sl@0
|
826 |
KErrInUse if this method is used when encoding is active.
|
sl@0
|
827 |
KErrNotSupported if this method is not implemented.
|
sl@0
|
828 |
*/
|
sl@0
|
829 |
virtual TInt SetDecoderMode(TDecodeMode aDecodeMode) = 0;
|
sl@0
|
830 |
|
sl@0
|
831 |
/**
|
sl@0
|
832 |
Queries the decoder of the encoded data format that has been active.
|
sl@0
|
833 |
|
sl@0
|
834 |
This method can be called at all times.
|
sl@0
|
835 |
@param aDecodeMode the decode mode.
|
sl@0
|
836 |
|
sl@0
|
837 |
@return KErrNone if successful.
|
sl@0
|
838 |
KErrInUse if this method is used when encoding is active.
|
sl@0
|
839 |
KErrNotSupported if this method is not implemented.
|
sl@0
|
840 |
*/
|
sl@0
|
841 |
virtual TInt GetDecoderMode(TDecodeMode& aDecodeMode) = 0;
|
sl@0
|
842 |
|
sl@0
|
843 |
/**
|
sl@0
|
844 |
Used to enable and disable the comfort noise generation capability.
|
sl@0
|
845 |
|
sl@0
|
846 |
This method can be called when decoding is not active - anytime before started
|
sl@0
|
847 |
or after stopped.
|
sl@0
|
848 |
|
sl@0
|
849 |
@param aCng ETrue = Comfort Noise Generation enabled; EFalse = Comfort Noise
|
sl@0
|
850 |
Generation disabled
|
sl@0
|
851 |
|
sl@0
|
852 |
@return KErrNone if successful.
|
sl@0
|
853 |
KErrInUse if this method is used when encoding is active.
|
sl@0
|
854 |
KErrNotSupported if this method is not implemented.
|
sl@0
|
855 |
*/
|
sl@0
|
856 |
virtual TInt SetComfortNoiseGeneration(TBool aCng) = 0;
|
sl@0
|
857 |
|
sl@0
|
858 |
/**
|
sl@0
|
859 |
Used to find out if comfort noise generation is enabled or not.
|
sl@0
|
860 |
|
sl@0
|
861 |
This method can be called when decoding is not active - anytime before started
|
sl@0
|
862 |
or after stopped.
|
sl@0
|
863 |
|
sl@0
|
864 |
@param aCng ETrue = Comfort Noise Generation enabled; EFalse = Comfort Noise
|
sl@0
|
865 |
Generation disabled
|
sl@0
|
866 |
|
sl@0
|
867 |
@return KErrNone if successful.
|
sl@0
|
868 |
KErrInUse if this method is used when encoding is active.
|
sl@0
|
869 |
KErrNotSupported if this method is not implemented.
|
sl@0
|
870 |
*/
|
sl@0
|
871 |
virtual TInt GetComfortNoiseGeneration(TBool& aCng) = 0;
|
sl@0
|
872 |
|
sl@0
|
873 |
/**
|
sl@0
|
874 |
Used to enable and disable the packet loss concealment capability.
|
sl@0
|
875 |
|
sl@0
|
876 |
This can be called when decoding is not active - anytime before started or after
|
sl@0
|
877 |
stopped.
|
sl@0
|
878 |
|
sl@0
|
879 |
@param aPlc ETrue = plc enabled; EFalse = plc disabled
|
sl@0
|
880 |
|
sl@0
|
881 |
@return KErrNone if successful. KErrInUse if this method is used when encoding is
|
sl@0
|
882 |
active. KErrNotSupported if this method is not implemented.
|
sl@0
|
883 |
*/
|
sl@0
|
884 |
virtual TInt SetPacketLossConcealment(TBool aPlc) = 0;
|
sl@0
|
885 |
|
sl@0
|
886 |
/**
|
sl@0
|
887 |
Used to find out if packet loss concealment capability is enabled or not.
|
sl@0
|
888 |
|
sl@0
|
889 |
This method can be called when decoding is not active - anytime before started or
|
sl@0
|
890 |
after stopped.
|
sl@0
|
891 |
|
sl@0
|
892 |
@param aPlc ETrue = packet loss concealment enabled; EFalse = packet loss
|
sl@0
|
893 |
concealment disabled
|
sl@0
|
894 |
|
sl@0
|
895 |
@return KErrNone if successful. KErrInUse if this method is used when encoding is active.
|
sl@0
|
896 |
KErrNotSupported if this method is not implemented.
|
sl@0
|
897 |
*/
|
sl@0
|
898 |
virtual TInt GetPacketLossConcealment(TBool& aPlc) = 0;
|
sl@0
|
899 |
|
sl@0
|
900 |
};
|
sl@0
|
901 |
|
sl@0
|
902 |
/*****************************************************************************/
|
sl@0
|
903 |
/**
|
sl@0
|
904 |
UID associated with the Custom interface MG711EncoderIntfc
|
sl@0
|
905 |
*/
|
sl@0
|
906 |
const TUid KUidG711EncoderIntfc = {0x10282602};
|
sl@0
|
907 |
|
sl@0
|
908 |
/**
|
sl@0
|
909 |
This class provides an interface to the G711 encoder CMMFHwDevice in order to provide
|
sl@0
|
910 |
additional configuration information.
|
sl@0
|
911 |
*/
|
sl@0
|
912 |
class MG711EncoderIntfc
|
sl@0
|
913 |
{
|
sl@0
|
914 |
public:
|
sl@0
|
915 |
/** The encoder mode */
|
sl@0
|
916 |
enum TEncodeMode
|
sl@0
|
917 |
{
|
sl@0
|
918 |
/** EncALaw */
|
sl@0
|
919 |
EEncALaw,
|
sl@0
|
920 |
/** EncULaw */
|
sl@0
|
921 |
EEncULaw
|
sl@0
|
922 |
};
|
sl@0
|
923 |
|
sl@0
|
924 |
/**
|
sl@0
|
925 |
Configures the encoder's encoding format.
|
sl@0
|
926 |
|
sl@0
|
927 |
This method can be called when decoding is not active - anytime before started or
|
sl@0
|
928 |
after stopped.
|
sl@0
|
929 |
|
sl@0
|
930 |
@param aEncodeMode the encode mode.
|
sl@0
|
931 |
|
sl@0
|
932 |
@return KErrNone if successful. KErrInUse if this method is used when encoding is active.
|
sl@0
|
933 |
KErrNotSupported if this method is not implemented.
|
sl@0
|
934 |
*/
|
sl@0
|
935 |
virtual TInt SetEncoderMode(TEncodeMode aEncodeMode) = 0;
|
sl@0
|
936 |
|
sl@0
|
937 |
/**
|
sl@0
|
938 |
Controls voice activity detection (VAD) mode.
|
sl@0
|
939 |
|
sl@0
|
940 |
This method can be called at all times.
|
sl@0
|
941 |
|
sl@0
|
942 |
@param aVadModeOn ETrue=On, EFalse=Off
|
sl@0
|
943 |
|
sl@0
|
944 |
@return KErrNone if successful,
|
sl@0
|
945 |
KErrNotSupported if this method is not implemented or not supported by the encoder
|
sl@0
|
946 |
*/
|
sl@0
|
947 |
virtual TInt SetVadMode(TBool aVadModeOn) = 0;
|
sl@0
|
948 |
|
sl@0
|
949 |
/**
|
sl@0
|
950 |
Gets the current state of the voice activity detection (VAD) mode.
|
sl@0
|
951 |
|
sl@0
|
952 |
This method can be called at all times - while actively encoding or not.
|
sl@0
|
953 |
|
sl@0
|
954 |
@param aVadModeOn On output ETrue=On, EFalse=Off
|
sl@0
|
955 |
|
sl@0
|
956 |
@return KErrNone if successful.
|
sl@0
|
957 |
KErrNotSupported if this method is not implemented or VAD is not supported by the encoder.
|
sl@0
|
958 |
*/
|
sl@0
|
959 |
virtual TInt GetVadMode(TBool& aVadModeOn) = 0;
|
sl@0
|
960 |
};
|
sl@0
|
961 |
|
sl@0
|
962 |
/*****************************************************************************/
|
sl@0
|
963 |
/**
|
sl@0
|
964 |
UID associated with the Custom interface MG729DecoderIntfc
|
sl@0
|
965 |
*/
|
sl@0
|
966 |
const TUid KUidG729DecoderIntfc = {0x10282603};
|
sl@0
|
967 |
|
sl@0
|
968 |
/**
|
sl@0
|
969 |
This class provides an interface to the G729 decoder CMMFHwDevice in order to provide additional
|
sl@0
|
970 |
configuration information.
|
sl@0
|
971 |
*/
|
sl@0
|
972 |
class MG729DecoderIntfc
|
sl@0
|
973 |
{
|
sl@0
|
974 |
public:
|
sl@0
|
975 |
/**
|
sl@0
|
976 |
Informs the decoder that the next buffer sent to it will contain bad LSF data.
|
sl@0
|
977 |
|
sl@0
|
978 |
This method can be called when decoding is active.
|
sl@0
|
979 |
|
sl@0
|
980 |
This method will be called after a buffer has been received from the CMMFHwDevice,
|
sl@0
|
981 |
and before it is returned to the CMMFHwDevice.
|
sl@0
|
982 |
|
sl@0
|
983 |
@return KErrNone if successful.
|
sl@0
|
984 |
KErrInUse if this method is used out of sequence.
|
sl@0
|
985 |
KErrNotSupported if this method is not implemented.
|
sl@0
|
986 |
*/
|
sl@0
|
987 |
virtual TInt BadLsfNextBuffer() = 0;
|
sl@0
|
988 |
};
|
sl@0
|
989 |
|
sl@0
|
990 |
/*****************************************************************************/
|
sl@0
|
991 |
/**
|
sl@0
|
992 |
UID associated with the Custom interface MG729EncoderIntfc
|
sl@0
|
993 |
*/
|
sl@0
|
994 |
const TUid KUidG729EncoderIntfc = {0x10282604};
|
sl@0
|
995 |
|
sl@0
|
996 |
/**
|
sl@0
|
997 |
This class provides an interface to the G729 encoder CMMFHwDevice in order to provide
|
sl@0
|
998 |
additional configuration information.
|
sl@0
|
999 |
*/
|
sl@0
|
1000 |
class MG729EncoderIntfc
|
sl@0
|
1001 |
{
|
sl@0
|
1002 |
public:
|
sl@0
|
1003 |
/**
|
sl@0
|
1004 |
Controls voice activity detection (VAD) mode.
|
sl@0
|
1005 |
|
sl@0
|
1006 |
This method is allowable at all times - while actively encoding or not.
|
sl@0
|
1007 |
@param aVadModeOn ETrue=On, EFalse=Off
|
sl@0
|
1008 |
|
sl@0
|
1009 |
@return KErrNone if successful. KErrNotSupported if this method is not implemented
|
sl@0
|
1010 |
or not supported by the encoder.
|
sl@0
|
1011 |
*/
|
sl@0
|
1012 |
virtual TInt SetVadMode(TBool aVadModeOn) = 0;
|
sl@0
|
1013 |
|
sl@0
|
1014 |
/**
|
sl@0
|
1015 |
Gets the current state of the voice activity detection (VAD) mode.
|
sl@0
|
1016 |
|
sl@0
|
1017 |
This method can be called at all times - while actively encoding or not.
|
sl@0
|
1018 |
|
sl@0
|
1019 |
@param aVadModeOn On output ETrue=On, EFalse=Off
|
sl@0
|
1020 |
@return KErrNone if successful. KErrNotSupported if this method is not implemented
|
sl@0
|
1021 |
or VAD is not supported by the encoder.
|
sl@0
|
1022 |
*/
|
sl@0
|
1023 |
virtual TInt GetVadMode(TBool& aVadModeOn) = 0;
|
sl@0
|
1024 |
};
|
sl@0
|
1025 |
|
sl@0
|
1026 |
/*****************************************************************************/
|
sl@0
|
1027 |
/**
|
sl@0
|
1028 |
UID associated with the Custom interface MIlbcDecoderIntfc
|
sl@0
|
1029 |
*/
|
sl@0
|
1030 |
const TUid KUidIlbcDecoderIntfc = {0x10282605};
|
sl@0
|
1031 |
|
sl@0
|
1032 |
/**
|
sl@0
|
1033 |
This class provides an interface to the Ilbc decoder CMMFHwDevice in order to provide
|
sl@0
|
1034 |
additional configuration information.
|
sl@0
|
1035 |
*/
|
sl@0
|
1036 |
class MIlbcDecoderIntfc
|
sl@0
|
1037 |
{
|
sl@0
|
1038 |
public:
|
sl@0
|
1039 |
/** The Ibc decoder mode */
|
sl@0
|
1040 |
enum TDecodeMode
|
sl@0
|
1041 |
{
|
sl@0
|
1042 |
/** 20msFrame */
|
sl@0
|
1043 |
E20msFrame,
|
sl@0
|
1044 |
/** 30msFrame */
|
sl@0
|
1045 |
E30msFrame
|
sl@0
|
1046 |
};
|
sl@0
|
1047 |
|
sl@0
|
1048 |
/**
|
sl@0
|
1049 |
Informs the decoder of the encoded data format that will be sent to it.
|
sl@0
|
1050 |
|
sl@0
|
1051 |
This method can be called when decoding is not active - anytime before started or
|
sl@0
|
1052 |
after stopped.
|
sl@0
|
1053 |
|
sl@0
|
1054 |
@param aDecodeMode the decode mode.
|
sl@0
|
1055 |
|
sl@0
|
1056 |
@return KErrNone if successful.
|
sl@0
|
1057 |
KErrInUse if this method is used when decoding is active.
|
sl@0
|
1058 |
KErrNotSupported if this method is not implemented.
|
sl@0
|
1059 |
*/
|
sl@0
|
1060 |
virtual TInt SetDecoderMode(TDecodeMode aDecodeMode) = 0;
|
sl@0
|
1061 |
|
sl@0
|
1062 |
/**
|
sl@0
|
1063 |
Used to enable and disable the comfort noise generation capability.
|
sl@0
|
1064 |
|
sl@0
|
1065 |
This method is allowable when decoding is not active - anytime before started or
|
sl@0
|
1066 |
after stopped.
|
sl@0
|
1067 |
|
sl@0
|
1068 |
@param aCng ETrue = comfort noise generation enabled; EFalse = comfort noise
|
sl@0
|
1069 |
generation disabled
|
sl@0
|
1070 |
|
sl@0
|
1071 |
@return KErrNone if successful.
|
sl@0
|
1072 |
KErrInUse if this method is used when encoding is active.
|
sl@0
|
1073 |
KErrNotSupported if this method is not implemented.
|
sl@0
|
1074 |
*/
|
sl@0
|
1075 |
virtual TInt SetComfortNoiseGeneration(TBool aCng) = 0;
|
sl@0
|
1076 |
|
sl@0
|
1077 |
/**
|
sl@0
|
1078 |
Used to find out if comfort noise generation is enabled or not.
|
sl@0
|
1079 |
|
sl@0
|
1080 |
This method is allowable when decoding is not active - anytime before started or
|
sl@0
|
1081 |
after stopped.
|
sl@0
|
1082 |
|
sl@0
|
1083 |
@param aCng On output ETrue = comfort noise generation enabled; EFalse = comfort
|
sl@0
|
1084 |
noise generation disabled
|
sl@0
|
1085 |
|
sl@0
|
1086 |
@return KErrNone if successful.
|
sl@0
|
1087 |
KErrInUse if this method is used when encoding is active.
|
sl@0
|
1088 |
KErrNotSupported if this method is not implemented.
|
sl@0
|
1089 |
*/
|
sl@0
|
1090 |
virtual TInt GetComfortNoiseGeneration(TBool& aCng) = 0;
|
sl@0
|
1091 |
};
|
sl@0
|
1092 |
|
sl@0
|
1093 |
/*****************************************************************************/
|
sl@0
|
1094 |
/**
|
sl@0
|
1095 |
UID associated with the Custom interface MIlbcEncoderIntfc
|
sl@0
|
1096 |
*/
|
sl@0
|
1097 |
const TUid KUidIlbcEncoderIntfc = {0x10282606};
|
sl@0
|
1098 |
|
sl@0
|
1099 |
/**
|
sl@0
|
1100 |
This class provides an interface to the Ilbc encoder CMMFHwDevice in order to provide
|
sl@0
|
1101 |
additional configuration information.
|
sl@0
|
1102 |
*/
|
sl@0
|
1103 |
class MIlbcEncoderIntfc
|
sl@0
|
1104 |
{
|
sl@0
|
1105 |
public:
|
sl@0
|
1106 |
/** The Ibc encoder mode*/
|
sl@0
|
1107 |
enum TEncodeMode
|
sl@0
|
1108 |
{
|
sl@0
|
1109 |
/** 20msFrame */
|
sl@0
|
1110 |
E20msFrame,
|
sl@0
|
1111 |
/** 30msFrame */
|
sl@0
|
1112 |
E30msFrame
|
sl@0
|
1113 |
};
|
sl@0
|
1114 |
|
sl@0
|
1115 |
/**
|
sl@0
|
1116 |
Configures the encoder's encoding format.
|
sl@0
|
1117 |
|
sl@0
|
1118 |
This method is allowable when encoding is not active - anytime before started or
|
sl@0
|
1119 |
after stopped.
|
sl@0
|
1120 |
|
sl@0
|
1121 |
@param aEncodeMode the encode mode.
|
sl@0
|
1122 |
|
sl@0
|
1123 |
@return KErrNone if successful.
|
sl@0
|
1124 |
KErrInUse if this method is used when encoding is active.
|
sl@0
|
1125 |
KErrNotSupported if this method is not implemented.
|
sl@0
|
1126 |
*/
|
sl@0
|
1127 |
virtual TInt SetEncoderMode(TEncodeMode aEncodeMode) = 0;
|
sl@0
|
1128 |
|
sl@0
|
1129 |
/**
|
sl@0
|
1130 |
Controls voice activity detection (VAD) mode.
|
sl@0
|
1131 |
|
sl@0
|
1132 |
This method is allowable at all times - while actively encoding or not.
|
sl@0
|
1133 |
|
sl@0
|
1134 |
@param aVadModeOn ETrue=On, EFalse=Off
|
sl@0
|
1135 |
|
sl@0
|
1136 |
@return KErrNone if successful.
|
sl@0
|
1137 |
KErrNotSupported if this method is not implemented or not supported by the encoder.
|
sl@0
|
1138 |
*/
|
sl@0
|
1139 |
virtual TInt SetVadMode(TBool aVadModeOn) = 0;
|
sl@0
|
1140 |
|
sl@0
|
1141 |
/**
|
sl@0
|
1142 |
Gets the encoder's current encoding format.
|
sl@0
|
1143 |
|
sl@0
|
1144 |
This method is allowable when encoding is not active - anytime before started or
|
sl@0
|
1145 |
after stopped.
|
sl@0
|
1146 |
|
sl@0
|
1147 |
@param &aEncodeMode the encode mode.
|
sl@0
|
1148 |
|
sl@0
|
1149 |
@return KErrNone if successful.
|
sl@0
|
1150 |
KErrInUse if this method is used when encoding is active.
|
sl@0
|
1151 |
KErrNotSupported if this method is not implemented.
|
sl@0
|
1152 |
*/
|
sl@0
|
1153 |
virtual TInt GetEncoderMode(TEncodeMode &aEncodeMode) = 0;
|
sl@0
|
1154 |
|
sl@0
|
1155 |
/**
|
sl@0
|
1156 |
Gets the current state of the voice activity detection (VAD) mode.
|
sl@0
|
1157 |
|
sl@0
|
1158 |
This method is allowable at all times - while actively encoding or not.
|
sl@0
|
1159 |
|
sl@0
|
1160 |
@param aVadModeOn On output ETrue=On, EFalse=Off
|
sl@0
|
1161 |
|
sl@0
|
1162 |
@return KErrNone if successful.
|
sl@0
|
1163 |
KErrNotSupported if this method is not implemented or VAD is not supported
|
sl@0
|
1164 |
by the encoder.
|
sl@0
|
1165 |
*/
|
sl@0
|
1166 |
virtual TInt GetVadMode(TBool& aVadModeOn) = 0;
|
sl@0
|
1167 |
};
|
sl@0
|
1168 |
|
sl@0
|
1169 |
/*****************************************************************************/
|
sl@0
|
1170 |
/**
|
sl@0
|
1171 |
UID associated with the Custom interface MMMFErrorConcealmentIntfc
|
sl@0
|
1172 |
*/
|
sl@0
|
1173 |
const TUid KUidErrorConcealmentIntfc = {0x10282607};
|
sl@0
|
1174 |
|
sl@0
|
1175 |
/**
|
sl@0
|
1176 |
This custom interface can be used to indicate that data has been lost. Typical usage
|
sl@0
|
1177 |
would be during streaming. Lost packets of audio data would not get played, but the
|
sl@0
|
1178 |
video data may still be available for playback. If video playback is synchronized to
|
sl@0
|
1179 |
audio then this API can be used to indicate that audio data is lost so that video
|
sl@0
|
1180 |
playback can continue. It could also be used for an audio-only source to maintain
|
sl@0
|
1181 |
synchronization in time if data is lost.
|
sl@0
|
1182 |
*/
|
sl@0
|
1183 |
class MMMFErrorConcealmentIntfc
|
sl@0
|
1184 |
{
|
sl@0
|
1185 |
public:
|
sl@0
|
1186 |
/**
|
sl@0
|
1187 |
Indicates that next buffer sent to CMMFHwDevice will not contain any valid data,
|
sl@0
|
1188 |
and that a single frame of data has been lost, and that error concealment should
|
sl@0
|
1189 |
be provided for that lost frame. This method will be called after a buffer has been
|
sl@0
|
1190 |
received from the Hardware Device, and before it is returned to the Hardware Device.
|
sl@0
|
1191 |
|
sl@0
|
1192 |
@return KErrNone if successful.
|
sl@0
|
1193 |
KErrInUse if this method is used out of sequence.
|
sl@0
|
1194 |
KErrNotSupported if this method is not implemented.
|
sl@0
|
1195 |
*/
|
sl@0
|
1196 |
virtual TInt ConcealErrorForNextBuffer() = 0;
|
sl@0
|
1197 |
/**
|
sl@0
|
1198 |
Puts the CMMFHwDevice into frame-based operation. This may be required in cases where
|
sl@0
|
1199 |
the decoder only supports error concealment in a frame-based mode of operation.
|
sl@0
|
1200 |
Operating in frame-based mode means that the decoder requires that each buffer it
|
sl@0
|
1201 |
receives contains only complete data frames.
|
sl@0
|
1202 |
|
sl@0
|
1203 |
Frame mode is limited to a single frame per buffer. The alternative to frame-based mode
|
sl@0
|
1204 |
is buffer-based mode, the default interface for CMMFHwDevices and decoders.
|
sl@0
|
1205 |
|
sl@0
|
1206 |
In buffer-based mode, complete data frames are not required to be contained within a
|
sl@0
|
1207 |
single buffer. A data frame may span consecutive data buffers in buffer-based mode.
|
sl@0
|
1208 |
|
sl@0
|
1209 |
As it is less efficient than buffer-based mode, Frame-based mode should be used as a
|
sl@0
|
1210 |
less-preferred option where errors are present and the CMMFHwDevice implementation would
|
sl@0
|
1211 |
not be tolerant to buffer-based mode error. This condition would be indicated by
|
sl@0
|
1212 |
FrameModeRqrdForEC resulting in its parameter being set to ETrue.
|
sl@0
|
1213 |
|
sl@0
|
1214 |
This method can be called when decoding is not active - anytime before the CMMFHwDevice
|
sl@0
|
1215 |
is started, or after it is stopped.
|
sl@0
|
1216 |
|
sl@0
|
1217 |
@param aFrameModeOn ETrue = frame mode on; EFalse = frame mode off.
|
sl@0
|
1218 |
|
sl@0
|
1219 |
@return KErrNone if successful.
|
sl@0
|
1220 |
KErrInUse if this method is used out of sequence.
|
sl@0
|
1221 |
KErrNotSupported if this method is not implemented.
|
sl@0
|
1222 |
*/
|
sl@0
|
1223 |
virtual TInt SetFrameMode(TBool aFrameModeOn) = 0;
|
sl@0
|
1224 |
|
sl@0
|
1225 |
/**
|
sl@0
|
1226 |
Queries the CMMFHwDevice to find out if frame mode is required by the implementing
|
sl@0
|
1227 |
CMMFHwDevice in order for it to support error concealment.
|
sl@0
|
1228 |
|
sl@0
|
1229 |
This method is allowable when decoding is not active - anytime before the CMMFHwDevice
|
sl@0
|
1230 |
is started, or after it is stopped.
|
sl@0
|
1231 |
@param aFrameModeRqrd ETrue = frame mode required; EFalse = frame mode not required
|
sl@0
|
1232 |
@return KErrNone if successful.
|
sl@0
|
1233 |
KErrInUse if this method is used during decoding.
|
sl@0
|
1234 |
KErrNotSupported if this method is not implemented.
|
sl@0
|
1235 |
*/
|
sl@0
|
1236 |
virtual TInt FrameModeRqrdForEC(TBool& aFrameModeRqrd) = 0;
|
sl@0
|
1237 |
};
|
sl@0
|
1238 |
|
sl@0
|
1239 |
/*****************************************************************************/
|
sl@0
|
1240 |
/**
|
sl@0
|
1241 |
UID associated with the Custom interface MAudioVibraControl
|
sl@0
|
1242 |
*/
|
sl@0
|
1243 |
const TUid KUidAudioVibraControl = {0x10282608};
|
sl@0
|
1244 |
|
sl@0
|
1245 |
/**
|
sl@0
|
1246 |
This class provides an interface for controlling vibra. DevSound should interpret the
|
sl@0
|
1247 |
instantiation of this interface as a vibra control request by the user. The default vibra
|
sl@0
|
1248 |
behavior implemented by the DevSound for the associated stream will not be performed while
|
sl@0
|
1249 |
the user has control, In other words whilst this interface is instantiated. DevSound default vibra behavior
|
sl@0
|
1250 |
for the associated stream will return once this interface is deleted. Other instances of
|
sl@0
|
1251 |
DevSound may be instantiated for other audio streams at the same time. When multiple instances
|
sl@0
|
1252 |
of DevSound are instantiated, priority and preference values are used to determine which audio
|
sl@0
|
1253 |
streams are rendered. Prioritization of vibra control is determined by adaptation. Due to
|
sl@0
|
1254 |
resource conflicts, and prioritization by adaptation, it may be possible that an audio stream
|
sl@0
|
1255 |
is played, but not the vibra that accompanies that audio. For instance, if audio is mixed and
|
sl@0
|
1256 |
two audio streams are rendered, vibra playback might not be mixed. Vibra playback may be
|
sl@0
|
1257 |
prioritized by adaptation to a single controller. The behavior in these cases would be based
|
sl@0
|
1258 |
on adaptation implementation. The user is not notified if vibra is not played.
|
sl@0
|
1259 |
*/
|
sl@0
|
1260 |
class MAudioVibraControl
|
sl@0
|
1261 |
{
|
sl@0
|
1262 |
public:
|
sl@0
|
1263 |
/**
|
sl@0
|
1264 |
Turns vibra on.
|
sl@0
|
1265 |
|
sl@0
|
1266 |
@return KErrNone if successful KErrNotSupported if this method is not implemented.
|
sl@0
|
1267 |
*/
|
sl@0
|
1268 |
virtual TInt StartVibra() = 0;
|
sl@0
|
1269 |
|
sl@0
|
1270 |
/**
|
sl@0
|
1271 |
Turns vibra off.
|
sl@0
|
1272 |
|
sl@0
|
1273 |
@return KErrNone if successful. KErrNotSupported if this method is not implemented.
|
sl@0
|
1274 |
*/
|
sl@0
|
1275 |
virtual TInt StopVibra() = 0;
|
sl@0
|
1276 |
};
|
sl@0
|
1277 |
|
sl@0
|
1278 |
/*****************************************************************************/
|
sl@0
|
1279 |
/**
|
sl@0
|
1280 |
UID associated with the Custom interface MMMFSampleBuffering
|
sl@0
|
1281 |
*/
|
sl@0
|
1282 |
const TUid KUidSampleBuffering = {0x10282609};
|
sl@0
|
1283 |
|
sl@0
|
1284 |
/**
|
sl@0
|
1285 |
Custom interface class to allow DevSound to support buffering of samples before playback begins.
|
sl@0
|
1286 |
This allows playback to be more robust to underflow errors when playback begins at the expense
|
sl@0
|
1287 |
of higher latency before playback starts.
|
sl@0
|
1288 |
*/
|
sl@0
|
1289 |
class MMMFSampleBuffering
|
sl@0
|
1290 |
{
|
sl@0
|
1291 |
public:
|
sl@0
|
1292 |
/**
|
sl@0
|
1293 |
Enables buffering up of samples before playback begins. This function is only effective before
|
sl@0
|
1294 |
CMMFDevSound::PlayInit() is called - calling the function after this will have no effect.
|
sl@0
|
1295 |
@return "This method may return one of the system-wide error codes."
|
sl@0
|
1296 |
*/
|
sl@0
|
1297 |
virtual TInt MmsbEnableSampleBufferingBeforePlayback() = 0;
|
sl@0
|
1298 |
|
sl@0
|
1299 |
/**
|
sl@0
|
1300 |
Disables buffering up of samples before playback begins. This function is only effective before
|
sl@0
|
1301 |
CMMFDevSound::PlayInit() is called - calling the function after this will have no effect.
|
sl@0
|
1302 |
@return "This method may return one of the system-wide error codes."
|
sl@0
|
1303 |
*/
|
sl@0
|
1304 |
virtual TInt MmsbDisableSampleBufferingBeforePlayback() = 0;
|
sl@0
|
1305 |
|
sl@0
|
1306 |
/**
|
sl@0
|
1307 |
Asynchronous request that completes when Playback actually starts.
|
sl@0
|
1308 |
@param "aStatus" "TRequestStatus that will be completed when play actually starts"
|
sl@0
|
1309 |
*/
|
sl@0
|
1310 |
virtual void MmsbNotifyPlayStarted(TRequestStatus& aStatus) = 0;
|
sl@0
|
1311 |
|
sl@0
|
1312 |
/**
|
sl@0
|
1313 |
Cancel any outstanding asynchronous NotifyPlayStarted requests.
|
sl@0
|
1314 |
*/
|
sl@0
|
1315 |
virtual void MmsbCancelNotifyPlayStarted() = 0;
|
sl@0
|
1316 |
};
|
sl@0
|
1317 |
|
sl@0
|
1318 |
/*****************************************************************************/
|
sl@0
|
1319 |
/**
|
sl@0
|
1320 |
UID associated with the Custom interface MMMFPlaybackStatus.
|
sl@0
|
1321 |
*/
|
sl@0
|
1322 |
const TUid KUidPlaybackStatus = {0x10273811};
|
sl@0
|
1323 |
|
sl@0
|
1324 |
/**
|
sl@0
|
1325 |
Custom interface class to enable access to the DevSound implementation to report the number of
|
sl@0
|
1326 |
consumed input bytes, number of successfully decoded samples, samples played, system time and
|
sl@0
|
1327 |
total samples played.
|
sl@0
|
1328 |
*/
|
sl@0
|
1329 |
class MMMFPlaybackStatus
|
sl@0
|
1330 |
{
|
sl@0
|
1331 |
public:
|
sl@0
|
1332 |
/** Play back status information */
|
sl@0
|
1333 |
struct TMMFPlaybackStatus
|
sl@0
|
1334 |
{
|
sl@0
|
1335 |
/** Number of consumed input bytes */
|
sl@0
|
1336 |
TInt64 aInputBytes;
|
sl@0
|
1337 |
/** Number of successfully decoded samples */
|
sl@0
|
1338 |
TInt64 aDecodedSamples;
|
sl@0
|
1339 |
/** Number of decoded samples played */
|
sl@0
|
1340 |
TInt64 aDecodedSamplesPlayed;
|
sl@0
|
1341 |
/** Current system time */
|
sl@0
|
1342 |
TInt64 aSystemTime;
|
sl@0
|
1343 |
/** Total samples played */
|
sl@0
|
1344 |
TInt64 aTotalSamplesPlayed;
|
sl@0
|
1345 |
};
|
sl@0
|
1346 |
/**
|
sl@0
|
1347 |
A method to query for detailed status information from a playing DevSound.
|
sl@0
|
1348 |
including timestamp information from the DSP.
|
sl@0
|
1349 |
@param aStatus the current playback status.
|
sl@0
|
1350 |
@return "This method may return one of the system-wide error codes."
|
sl@0
|
1351 |
*/
|
sl@0
|
1352 |
virtual TInt MmpsGetPlaybackStatusInformation(TMMFPlaybackStatus& aStatus)= 0;
|
sl@0
|
1353 |
|
sl@0
|
1354 |
/**
|
sl@0
|
1355 |
Request notification of loss of sync during decode - the notification will be received
|
sl@0
|
1356 |
in the DevSound client callback SendEventToClient with the event type set to KMMFEventLossOfDecodeSync.
|
sl@0
|
1357 |
|
sl@0
|
1358 |
@return "This method may return one of the system-wide error codes."
|
sl@0
|
1359 |
*/
|
sl@0
|
1360 |
virtual TInt MmpsRequestLossOfSyncNotification() = 0;
|
sl@0
|
1361 |
|
sl@0
|
1362 |
/**
|
sl@0
|
1363 |
Cancel the request for notification of loss of sync.
|
sl@0
|
1364 |
|
sl@0
|
1365 |
@return "This method may return one of the system-wide error codes."
|
sl@0
|
1366 |
*/
|
sl@0
|
1367 |
virtual TInt MmpsCancelLossOfSyncNotification() = 0;
|
sl@0
|
1368 |
};
|
sl@0
|
1369 |
|
sl@0
|
1370 |
/*****************************************************************************/
|
sl@0
|
1371 |
/**
|
sl@0
|
1372 |
UID associated with the Custom interface MMMFDSPControl
|
sl@0
|
1373 |
*/
|
sl@0
|
1374 |
const TUid KUidDSPControl = {0x1028260A};
|
sl@0
|
1375 |
|
sl@0
|
1376 |
/**
|
sl@0
|
1377 |
Custom interface class to allow control of DSP behaviour.
|
sl@0
|
1378 |
*/
|
sl@0
|
1379 |
class MMMFDSPControl
|
sl@0
|
1380 |
{
|
sl@0
|
1381 |
public:
|
sl@0
|
1382 |
|
sl@0
|
1383 |
/**
|
sl@0
|
1384 |
Get the timestamp information from the DSP
|
sl@0
|
1385 |
|
sl@0
|
1386 |
@param aSamplesPlayed - number of audio samples played so far.
|
sl@0
|
1387 |
@param aSystemTime - current system time
|
sl@0
|
1388 |
@param aB - bytes consumed by the decoder
|
sl@0
|
1389 |
@param aT - bytes successfully decoded by the decoder.
|
sl@0
|
1390 |
|
sl@0
|
1391 |
@return "This method may return one of the system-wide error codes."
|
sl@0
|
1392 |
*/
|
sl@0
|
1393 |
virtual TInt MmdspcGetAudioPlaybackInfo(TInt64& aSamplesPlayed, TInt64& aSystemTime, TUint& aB, TUint& aT) = 0;
|
sl@0
|
1394 |
|
sl@0
|
1395 |
/**
|
sl@0
|
1396 |
Place DevSound in a mode where overflow/underflow errors on recording are ignored.
|
sl@0
|
1397 |
@return "This method may return one of the system-wide error codes."
|
sl@0
|
1398 |
*/
|
sl@0
|
1399 |
virtual TInt MmdspcAcceptRecordBuffersInvalidFollowingStop() = 0;
|
sl@0
|
1400 |
|
sl@0
|
1401 |
/**
|
sl@0
|
1402 |
Place DevSound in a mode where overflow/underflow errors on playing are ignored.
|
sl@0
|
1403 |
@return "This method may return one of the system-wide error codes."
|
sl@0
|
1404 |
*/
|
sl@0
|
1405 |
virtual TInt MmdspcAcceptPlaybackBuffersInvalidFollowingStop() = 0;
|
sl@0
|
1406 |
};
|
sl@0
|
1407 |
|
sl@0
|
1408 |
/*****************************************************************************/
|
sl@0
|
1409 |
/**
|
sl@0
|
1410 |
UID associated with the Custom interface MMMFUnderflowAutoStopControl
|
sl@0
|
1411 |
*/
|
sl@0
|
1412 |
const TUid KUidUnderflowAutoStopControl = {0x1028260B};
|
sl@0
|
1413 |
|
sl@0
|
1414 |
/**
|
sl@0
|
1415 |
Custom interface class to control underflow behaviour.
|
sl@0
|
1416 |
*/
|
sl@0
|
1417 |
class MMMFUnderflowAutoStopControl
|
sl@0
|
1418 |
{
|
sl@0
|
1419 |
public:
|
sl@0
|
1420 |
/**
|
sl@0
|
1421 |
Turn off the default DevSound behaviour of automatically Stopping when an underflow
|
sl@0
|
1422 |
occurs. The underflow will be reported but play can continue when the client sends
|
sl@0
|
1423 |
more data - it is up to the client to call stop even in the case of end of file.
|
sl@0
|
1424 |
|
sl@0
|
1425 |
@return "This method may return one of the system-wide error codes."
|
sl@0
|
1426 |
*/
|
sl@0
|
1427 |
virtual TInt MmuascTurnOffUnderflowAutoStop() = 0;
|
sl@0
|
1428 |
};
|
sl@0
|
1429 |
|
sl@0
|
1430 |
/*****************************************************************************/
|
sl@0
|
1431 |
/**
|
sl@0
|
1432 |
UID associated with the Custom interface MMMFSetDRMProtected
|
sl@0
|
1433 |
*/
|
sl@0
|
1434 |
const TUid KUidSetDRMProtected = {0x1028260C};
|
sl@0
|
1435 |
|
sl@0
|
1436 |
/**
|
sl@0
|
1437 |
This class provides an interface to mark data being played as DRM protected.
|
sl@0
|
1438 |
*/
|
sl@0
|
1439 |
class MMMFSetDRMProtected
|
sl@0
|
1440 |
{
|
sl@0
|
1441 |
public:
|
sl@0
|
1442 |
/**
|
sl@0
|
1443 |
Indicate whether the data being played is DRM protected or not
|
sl@0
|
1444 |
|
sl@0
|
1445 |
@param aDRMProtected the required DRM state.
|
sl@0
|
1446 |
@return "This method may return one of the system-wide error codes."
|
sl@0
|
1447 |
*/
|
sl@0
|
1448 |
virtual TInt MmsdpMarkDataAsDRMProtected(TBool aDRMProtected) = 0;
|
sl@0
|
1449 |
};
|
sl@0
|
1450 |
|
sl@0
|
1451 |
/*****************************************************************************/
|
sl@0
|
1452 |
/**
|
sl@0
|
1453 |
UID associated with the Custom interface MMMFBufferFramesConfig.
|
sl@0
|
1454 |
*/
|
sl@0
|
1455 |
const TUid KUidBufferFramesConfig = {0x1028260D};
|
sl@0
|
1456 |
|
sl@0
|
1457 |
/**
|
sl@0
|
1458 |
This class provides an interface to configure and retrive the buffer frames.
|
sl@0
|
1459 |
*/
|
sl@0
|
1460 |
class MMMFBufferFramesConfig
|
sl@0
|
1461 |
{
|
sl@0
|
1462 |
public:
|
sl@0
|
1463 |
/**
|
sl@0
|
1464 |
For use when encoding to set the number of encoded frames contained in each buffer
|
sl@0
|
1465 |
sent back to the client. The method should be called after CMMFDevSound::InitilaizeL
|
sl@0
|
1466 |
but before RecordInitL.
|
sl@0
|
1467 |
|
sl@0
|
1468 |
@param aFrameCount - Number of frames per buffer
|
sl@0
|
1469 |
@param aSamplesPerFrame - numer of samples per frame
|
sl@0
|
1470 |
@return "This method may return one of the system-wide error codes."
|
sl@0
|
1471 |
*/
|
sl@0
|
1472 |
virtual TInt MmbfcSetNumberOfFramesPerInputBuffer(TInt aFrameCount, TInt aSamplesPerFrame)=0;
|
sl@0
|
1473 |
|
sl@0
|
1474 |
/**
|
sl@0
|
1475 |
For use when decoding to set the number of encoded frames contained in each buffer sent
|
sl@0
|
1476 |
down to DevsSund for playback. The method should be called after CMMFDevSound::InitilaizeL
|
sl@0
|
1477 |
but before PlayInitL.
|
sl@0
|
1478 |
|
sl@0
|
1479 |
@param aFrameCount - Number of frames per buffer
|
sl@0
|
1480 |
@param aSamplesPerFrame - numer of samples per frame
|
sl@0
|
1481 |
|
sl@0
|
1482 |
@return "This method may return one of the system-wide error codes."
|
sl@0
|
1483 |
*/
|
sl@0
|
1484 |
virtual TInt MmbfcSetNumberOfFramesPerOutputBuffer(TInt aFrameCount, TInt aSamplesPerFrame)=0;
|
sl@0
|
1485 |
};
|
sl@0
|
1486 |
|
sl@0
|
1487 |
/*****************************************************************************/
|
sl@0
|
1488 |
/**
|
sl@0
|
1489 |
UID associated with the Custom interface MMMFGetTimestamps
|
sl@0
|
1490 |
*/
|
sl@0
|
1491 |
const TUid KUidGetTimestamps = {0x1028260E};
|
sl@0
|
1492 |
|
sl@0
|
1493 |
/**
|
sl@0
|
1494 |
This class provides an interface to configure and retrive time stamps.
|
sl@0
|
1495 |
*/
|
sl@0
|
1496 |
class MMMFGetTimestamps
|
sl@0
|
1497 |
{
|
sl@0
|
1498 |
public:
|
sl@0
|
1499 |
/**
|
sl@0
|
1500 |
Enable or disable support for system timestamps during recording, used for Audio / Video sync.
|
sl@0
|
1501 |
This method can only be called after recording has been initialised, but before recording
|
sl@0
|
1502 |
has started. Once recording is underway, the setting cannot be changed.
|
sl@0
|
1503 |
|
sl@0
|
1504 |
@param aEnable ETrue to enable recording timestamps, EFalse to disable it.
|
sl@0
|
1505 |
|
sl@0
|
1506 |
@return KErrNotReady if DevSound has not yet been initialised, KErrNotSupported if
|
sl@0
|
1507 |
DevSound is not in recording mode or KErrInUse if recording is already underway.
|
sl@0
|
1508 |
*/
|
sl@0
|
1509 |
virtual TInt MmgtSetRecordSystemTimestampsEnabled(TBool aEnable) = 0;
|
sl@0
|
1510 |
|
sl@0
|
1511 |
/**
|
sl@0
|
1512 |
This method returns the system timestamp corresponding to the CMMFDataBuffer with the
|
sl@0
|
1513 |
given position within the recording stream. This timestamp is the system time at which
|
sl@0
|
1514 |
the buffers timestamp, as returned by CMMFBuffer::TimeToPlay, was valid.
|
sl@0
|
1515 |
This method can only be used if the recording timestamps were enabled before recording
|
sl@0
|
1516 |
started using the SetRecordSystemTimestampsEnabled method.
|
sl@0
|
1517 |
|
sl@0
|
1518 |
@param aBufferPosition The timestamp from the buffer, as returned by CMMFBuffer::TimeToPlay.
|
sl@0
|
1519 |
@param aTimestamp Returns the corresponding system time, in universal time.
|
sl@0
|
1520 |
|
sl@0
|
1521 |
@return A System error code.
|
sl@0
|
1522 |
KErrNotSupported if recording is not ongoing;
|
sl@0
|
1523 |
KErrNotReady if DevSound is not initialized, or TimeStamps have not been enabled;
|
sl@0
|
1524 |
KErrNotFound if the timestamp given does not correspond to a recent record buffer.
|
sl@0
|
1525 |
*/
|
sl@0
|
1526 |
virtual TInt MmgtGetSystemTimestampForBuffer(const TTimeIntervalMicroSeconds& aBufferPosition,
|
sl@0
|
1527 |
TTime& aTimestamp) const = 0;
|
sl@0
|
1528 |
};
|
sl@0
|
1529 |
|
sl@0
|
1530 |
/*****************************************************************************/
|
sl@0
|
1531 |
/**
|
sl@0
|
1532 |
UID associated with the Custom interface MMMFAdvancedAACEncodeSettings
|
sl@0
|
1533 |
*/
|
sl@0
|
1534 |
const TUid KUidAdvancedAACEncoderSettings = {0x102825FE};
|
sl@0
|
1535 |
|
sl@0
|
1536 |
/**
|
sl@0
|
1537 |
Advanced AAC Encode Bit-rate Configuration
|
sl@0
|
1538 |
*/
|
sl@0
|
1539 |
class MMMFAdvancedAACEncodeSettings
|
sl@0
|
1540 |
{
|
sl@0
|
1541 |
public:
|
sl@0
|
1542 |
/** AAC BItrate mode */
|
sl@0
|
1543 |
enum TAACBitrateMode
|
sl@0
|
1544 |
{
|
sl@0
|
1545 |
/** AACBitrateModeNone */
|
sl@0
|
1546 |
EAACBitrateModeNone,
|
sl@0
|
1547 |
/** AACBitrateModeAbsolute */
|
sl@0
|
1548 |
EAACBitrateModeAbsolute,
|
sl@0
|
1549 |
/** AACBitrateModeVariable */
|
sl@0
|
1550 |
EAACBitrateModeVariable,
|
sl@0
|
1551 |
/** AACBitrateModeFixed */
|
sl@0
|
1552 |
EAACBitrateModeFixed
|
sl@0
|
1553 |
};
|
sl@0
|
1554 |
/**
|
sl@0
|
1555 |
SetAACEncodeBitrateMode
|
sl@0
|
1556 |
|
sl@0
|
1557 |
Set the bitrate mode for AAC encoding. This must be called before the encoding starts.
|
sl@0
|
1558 |
|
sl@0
|
1559 |
@param aBitrateMode the structure containing the additional information required for decoding the raw AAC.
|
sl@0
|
1560 |
@return KErrNone if successful. KErrInUse if this method is used when decoding is active.
|
sl@0
|
1561 |
*/
|
sl@0
|
1562 |
virtual TInt SetAACEncodeBitrateMode(TAACBitrateMode aBitrateMode)=0;
|
sl@0
|
1563 |
|
sl@0
|
1564 |
/**
|
sl@0
|
1565 |
This interface returns the current AACEncoding bitrate mode.
|
sl@0
|
1566 |
|
sl@0
|
1567 |
@param aBitrateMode the structure containing the additional information.
|
sl@0
|
1568 |
@return KErrNone if successful. KErrNotSupported if this method is not implemented.
|
sl@0
|
1569 |
*/
|
sl@0
|
1570 |
virtual TInt GetAACEncodeBitrateMode(TAACBitrateMode& aBitrateMode) = 0;
|
sl@0
|
1571 |
};
|
sl@0
|
1572 |
|
sl@0
|
1573 |
/*****************************************************************************/
|
sl@0
|
1574 |
|
sl@0
|
1575 |
|
sl@0
|
1576 |
#endif
|
sl@0
|
1577 |
|