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: Implementation of the Loudness effect class
27 #include <LoudnessBase.h>
28 #include <CustomInterfaceUtility.h>
29 #include "LoudnessProxy.h"
30 #include <DrmAudioSamplePlayer.h>
31 #include <mdaaudioinputstream.h>
32 #include <mdaaudiooutputstream.h>
33 #include <mdaaudiotoneplayer.h>
34 #include <mmf/server/sounddevice.h>
35 #include <videoplayer.h>
38 #define DEBPRN0 RDebug::Printf( "%s", __PRETTY_FUNCTION__);
39 #define DEBPRN1(str) RDebug::Printf( "%s %s", __PRETTY_FUNCTION__, str );
45 // ============================ MEMBER FUNCTIONS ===============================
47 // -----------------------------------------------------------------------------
48 // CLoudness::CLoudness
49 // C++ default constructor can NOT contain any code, that
51 // -----------------------------------------------------------------------------
53 EXPORT_C CLoudness::CLoudness()
55 iDataPckgTo(iLoudnessData)
60 EXPORT_C CLoudness::~CLoudness()
64 // -----------------------------------------------------------------------------
66 // Static function for creating an instance of the Loudness object.
67 // -----------------------------------------------------------------------------
69 EXPORT_C CLoudness* CLoudness::NewL(CMdaAudioConvertUtility& aUtility)
73 CCustomInterfaceUtility* customInterface = CCustomInterfaceUtility::NewL(aUtility);
74 CleanupStack::PushL(customInterface);
76 CLoudnessProxy* loudnessProxy = (CLoudnessProxy*)customInterface->CustomInterface(KUidLoudnessEffect);
80 DEBPRN1("No Adaptation Support - leaving");
81 CleanupStack::Pop(customInterface);
82 User::Leave(KErrNotSupported);
85 CleanupStack::Pop(customInterface);
90 // -----------------------------------------------------------------------------
92 // Static function for creating an instance of the Loudness object.
93 // -----------------------------------------------------------------------------
95 EXPORT_C CLoudness* CLoudness::NewL(
96 CMdaAudioInputStream& aUtility , TBool aEnable )
100 CLoudnessProxy* loudnessProxy = (CLoudnessProxy*)aUtility.CustomInterface(KUidLoudnessEffect);
102 if (loudnessProxy == NULL)
104 DEBPRN1("No Adaptation Support - leaving");
105 User::Leave(KErrNotSupported);
110 loudnessProxy->EnableL();
113 return loudnessProxy;
116 // -----------------------------------------------------------------------------
118 // Static function for creating an instance of the Loudness object.
119 // -----------------------------------------------------------------------------
121 EXPORT_C CLoudness* CLoudness::NewL(
122 CMdaAudioOutputStream& aUtility, TBool aEnable )
126 CLoudnessProxy* loudnessProxy = (CLoudnessProxy*)aUtility.CustomInterface(KUidLoudnessEffect);
128 if (loudnessProxy == NULL)
130 DEBPRN1("No Adaptation Support - leaving");
131 User::Leave(KErrNotSupported);
136 loudnessProxy->EnableL();
139 return loudnessProxy;
142 // -----------------------------------------------------------------------------
144 // Static function for creating an instance of the Loudness object.
145 // -----------------------------------------------------------------------------
147 EXPORT_C CLoudness* CLoudness::NewL(
148 CMdaAudioPlayerUtility& aUtility , TBool aEnable)
152 CCustomInterfaceUtility* customInterface = CCustomInterfaceUtility::NewL(aUtility);
153 CleanupStack::PushL(customInterface);
155 CLoudnessProxy* loudnessProxy = (CLoudnessProxy*)customInterface->CustomInterface(KUidLoudnessEffect);
157 if ( !loudnessProxy )
159 DEBPRN1("No Adaptation Support - leaving");
160 CleanupStack::Pop(customInterface);
161 User::Leave(KErrNotSupported);
164 CleanupStack::Pop(customInterface);
168 loudnessProxy->EnableL();
171 return loudnessProxy;
174 // -----------------------------------------------------------------------------
176 // Static function for creating an instance of the Loudness object.
177 // -----------------------------------------------------------------------------
179 EXPORT_C CLoudness* CLoudness::NewL(
180 CMdaAudioRecorderUtility& aUtility, TBool aRecordStream, TBool aEnable)
184 CCustomInterfaceUtility* customInterface = CCustomInterfaceUtility::NewL(aUtility, aRecordStream);
185 CleanupStack::PushL(customInterface);
187 CLoudnessProxy* loudnessProxy = (CLoudnessProxy*)customInterface->CustomInterface(KUidLoudnessEffect);
189 if ( !loudnessProxy )
191 DEBPRN1("No Adaptation Support - leaving");
192 CleanupStack::Pop(customInterface);
193 User::Leave(KErrNotSupported);
196 CleanupStack::Pop(customInterface);
200 loudnessProxy->EnableL();
203 return loudnessProxy;
206 // -----------------------------------------------------------------------------
208 // Static function for creating an instance of the Loudness object.
209 // -----------------------------------------------------------------------------
211 EXPORT_C CLoudness* CLoudness::NewL(
212 CMdaAudioToneUtility& aUtility, TBool aEnable )
216 CLoudnessProxy* loudnessProxy = (CLoudnessProxy*)aUtility.CustomInterface(KUidLoudnessEffect);
218 if (loudnessProxy == NULL)
220 DEBPRN1("No Adaptation Support - leaving");
221 User::Leave(KErrNotSupported);
226 loudnessProxy->EnableL();
229 return loudnessProxy;
233 // -----------------------------------------------------------------------------
235 // Static function for creating an instance of the Loudness object.
236 // -----------------------------------------------------------------------------
238 EXPORT_C CLoudness* CLoudness::NewL(
239 CMMFDevSound& aDevSound , TBool aEnable )
243 CLoudnessProxy* loudnessProxy = (CLoudnessProxy*)aDevSound.CustomInterface(KUidLoudnessEffect);
245 if (loudnessProxy == NULL)
247 DEBPRN1("No Adaptation Support - leaving");
248 User::Leave(KErrNotSupported);
253 loudnessProxy->EnableL();
256 return loudnessProxy;
261 // -----------------------------------------------------------------------------
263 // Static function for creating an instance of the Loudness object.
264 // -----------------------------------------------------------------------------
266 EXPORT_C CLoudness* CLoudness::NewL(
267 CCustomCommandUtility* aUtility , TBool aEnable)
271 CCustomInterfaceUtility* customInterface = CCustomInterfaceUtility::NewL(aUtility);
272 CleanupStack::PushL(customInterface);
274 CLoudnessProxy* loudnessProxy = (CLoudnessProxy*)customInterface->CustomInterface(KUidLoudnessEffect);
276 if ( !loudnessProxy )
278 DEBPRN1("No Adaptation Support - leaving");
279 CleanupStack::Pop(customInterface);
280 User::Leave(KErrNotSupported);
283 CleanupStack::Pop(customInterface);
287 loudnessProxy->EnableL();
290 return loudnessProxy;
293 // -----------------------------------------------------------------------------
295 // Static function for creating an instance of the Loudness object.
296 // -----------------------------------------------------------------------------
298 EXPORT_C CLoudness* CLoudness::NewL(
299 MCustomInterface& aCustomInterface , TBool aEnable)
303 CLoudnessProxy* loudnessProxy = (CLoudnessProxy*)aCustomInterface.CustomInterface(KUidLoudnessEffect);
305 if ( !loudnessProxy )
307 DEBPRN1("No Adaptation Support - leaving");
308 User::Leave(KErrNotSupported);
313 loudnessProxy->EnableL();
316 return loudnessProxy;
319 // -----------------------------------------------------------------------------
321 // Static function for creating an instance of the Loudness object.
322 // -----------------------------------------------------------------------------
324 EXPORT_C CLoudness* CLoudness::NewL(
325 CMidiClientUtility& aUtility , TBool aEnable)
329 CCustomInterfaceUtility* customInterface = CCustomInterfaceUtility::NewL(aUtility);
330 CleanupStack::PushL(customInterface);
332 CLoudnessProxy* loudnessProxy = (CLoudnessProxy*)customInterface->CustomInterface(KUidLoudnessEffect);
334 if ( !loudnessProxy )
336 DEBPRN1("No Adaptation Support - leaving");
337 CleanupStack::Pop(customInterface);
338 User::Leave(KErrNotSupported);
341 CleanupStack::Pop(customInterface);
345 loudnessProxy->EnableL();
348 return loudnessProxy;
351 // -----------------------------------------------------------------------------
353 // Static function for creating an instance of the Loudness object.
354 // -----------------------------------------------------------------------------
356 EXPORT_C CLoudness* CLoudness::NewL(
357 CDrmPlayerUtility& aUtility, TBool aEnable)
361 CCustomInterfaceUtility* customInterface = CCustomInterfaceUtility::NewL(aUtility);
362 CleanupStack::PushL(customInterface);
364 CLoudnessProxy* loudnessProxy = (CLoudnessProxy*)customInterface->CustomInterface(KUidLoudnessEffect);
366 if ( !loudnessProxy )
368 DEBPRN1("No Adaptation Support - leaving");
369 CleanupStack::Pop(customInterface);
370 User::Leave(KErrNotSupported);
373 CleanupStack::Pop(customInterface);
377 loudnessProxy->EnableL();
380 return loudnessProxy;
383 // -----------------------------------------------------------------------------
385 // Static function for creating an instance of the Loudness object.
386 // -----------------------------------------------------------------------------
388 EXPORT_C CLoudness* CLoudness::NewL(
389 CVideoPlayerUtility& aUtility, TBool aEnable)
393 CCustomInterfaceUtility* customInterface = CCustomInterfaceUtility::NewL(aUtility);
394 CleanupStack::PushL(customInterface);
396 CLoudnessProxy* loudnessProxy = (CLoudnessProxy*)customInterface->CustomInterface(KUidLoudnessEffect);
398 if ( !loudnessProxy )
400 DEBPRN1("No Adaptation Support - leaving");
401 CleanupStack::Pop(customInterface);
402 User::Leave(KErrNotSupported);
405 CleanupStack::Pop(customInterface);
409 loudnessProxy->EnableL();
412 return loudnessProxy;
415 // -----------------------------------------------------------------------------
417 // -----------------------------------------------------------------------------
419 EXPORT_C TUid CLoudness::Uid() const
421 return KUidLoudnessEffect;
425 // -----------------------------------------------------------------------------
426 // CLoudness::DoEffectData
427 // -----------------------------------------------------------------------------
429 EXPORT_C const TDesC8& CLoudness::DoEffectData()
432 iDataPckgTo = iLoudnessData;
436 // -----------------------------------------------------------------------------
437 // CLoudness::SetEffectData
438 // -----------------------------------------------------------------------------
440 EXPORT_C void CLoudness::SetEffectData(
441 const TDesC8& aEffectDataBuffer )
444 TEfLoudnessDataPckg dataPckg;
445 dataPckg.Copy(aEffectDataBuffer);
446 iLoudnessData = dataPckg();
447 iEnabled = iLoudnessData.iEnabled;
448 iEnforced = iLoudnessData.iEnforced;
449 iHaveUpdateRights = iLoudnessData.iHaveUpdateRights;
454 // ========================== OTHER EXPORTED FUNCTIONS =========================