1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/devsoundextensions/effects/Loudness/LoudnessEffect/Src/LoudnessBase.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,457 @@
1.4 +/*
1.5 +* Copyright (c) 2006 Nokia Corporation and/or its subsidiary(-ies).
1.6 +* All rights reserved.
1.7 +* This component and the accompanying materials are made available
1.8 +* under the terms of "Eclipse Public License v1.0"
1.9 +* which accompanies this distribution, and is available
1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.11 +*
1.12 +* Initial Contributors:
1.13 +* Nokia Corporation - initial contribution.
1.14 +*
1.15 +* Contributors:
1.16 +*
1.17 +* Description: Implementation of the Loudness effect class
1.18 +*
1.19 +*/
1.20 +
1.21 +
1.22 +
1.23 +
1.24 +// INCLUDE FILES
1.25 +
1.26 +#ifdef _DEBUG
1.27 +#include <e32svr.h>
1.28 +#endif
1.29 +
1.30 +#include <LoudnessBase.h>
1.31 +#include <CustomInterfaceUtility.h>
1.32 +#include "LoudnessProxy.h"
1.33 +#include <DrmAudioSamplePlayer.h>
1.34 +#include <mdaaudioinputstream.h>
1.35 +#include <mdaaudiooutputstream.h>
1.36 +#include <mdaaudiotoneplayer.h>
1.37 +#include <mmf/server/sounddevice.h>
1.38 +#include <videoplayer.h>
1.39 +
1.40 +#ifdef _DEBUG
1.41 +#define DEBPRN0 RDebug::Printf( "%s", __PRETTY_FUNCTION__);
1.42 +#define DEBPRN1(str) RDebug::Printf( "%s %s", __PRETTY_FUNCTION__, str );
1.43 +#else
1.44 +#define DEBPRN0
1.45 +#define DEBPRN1(str)
1.46 +#endif
1.47 +
1.48 +// ============================ MEMBER FUNCTIONS ===============================
1.49 +
1.50 +// -----------------------------------------------------------------------------
1.51 +// CLoudness::CLoudness
1.52 +// C++ default constructor can NOT contain any code, that
1.53 +// might leave.
1.54 +// -----------------------------------------------------------------------------
1.55 +//
1.56 +EXPORT_C CLoudness::CLoudness()
1.57 + : iLoudnessData(),
1.58 + iDataPckgTo(iLoudnessData)
1.59 + {
1.60 + }
1.61 +
1.62 +// Destructor
1.63 +EXPORT_C CLoudness::~CLoudness()
1.64 + {
1.65 + }
1.66 +
1.67 +// -----------------------------------------------------------------------------
1.68 +// CLoudness::NewL
1.69 +// Static function for creating an instance of the Loudness object.
1.70 +// -----------------------------------------------------------------------------
1.71 +//
1.72 +EXPORT_C CLoudness* CLoudness::NewL(CMdaAudioConvertUtility& aUtility)
1.73 + {
1.74 +
1.75 + DEBPRN0;
1.76 + CCustomInterfaceUtility* customInterface = CCustomInterfaceUtility::NewL(aUtility);
1.77 + CleanupStack::PushL(customInterface);
1.78 +
1.79 + CLoudnessProxy* loudnessProxy = (CLoudnessProxy*)customInterface->CustomInterface(KUidLoudnessEffect);
1.80 +
1.81 + if ( !loudnessProxy )
1.82 + {
1.83 + DEBPRN1("No Adaptation Support - leaving");
1.84 + CleanupStack::Pop(customInterface);
1.85 + User::Leave(KErrNotSupported);
1.86 + }
1.87 +
1.88 + CleanupStack::Pop(customInterface);
1.89 +
1.90 + return loudnessProxy;
1.91 + }
1.92 +
1.93 +// -----------------------------------------------------------------------------
1.94 +// CLoudness::NewL
1.95 +// Static function for creating an instance of the Loudness object.
1.96 +// -----------------------------------------------------------------------------
1.97 +//
1.98 +EXPORT_C CLoudness* CLoudness::NewL(
1.99 + CMdaAudioInputStream& aUtility , TBool aEnable )
1.100 + {
1.101 +
1.102 + DEBPRN0;
1.103 + CLoudnessProxy* loudnessProxy = (CLoudnessProxy*)aUtility.CustomInterface(KUidLoudnessEffect);
1.104 +
1.105 + if (loudnessProxy == NULL)
1.106 + {
1.107 + DEBPRN1("No Adaptation Support - leaving");
1.108 + User::Leave(KErrNotSupported);
1.109 + }
1.110 +
1.111 + if(aEnable)
1.112 + {
1.113 + loudnessProxy->EnableL();
1.114 + }
1.115 +
1.116 + return loudnessProxy;
1.117 + }
1.118 +
1.119 +// -----------------------------------------------------------------------------
1.120 +// CLoudness::NewL
1.121 +// Static function for creating an instance of the Loudness object.
1.122 +// -----------------------------------------------------------------------------
1.123 +//
1.124 +EXPORT_C CLoudness* CLoudness::NewL(
1.125 + CMdaAudioOutputStream& aUtility, TBool aEnable )
1.126 + {
1.127 +
1.128 + DEBPRN0;
1.129 + CLoudnessProxy* loudnessProxy = (CLoudnessProxy*)aUtility.CustomInterface(KUidLoudnessEffect);
1.130 +
1.131 + if (loudnessProxy == NULL)
1.132 + {
1.133 + DEBPRN1("No Adaptation Support - leaving");
1.134 + User::Leave(KErrNotSupported);
1.135 + }
1.136 +
1.137 + if(aEnable)
1.138 + {
1.139 + loudnessProxy->EnableL();
1.140 + }
1.141 +
1.142 + return loudnessProxy;
1.143 + }
1.144 +
1.145 +// -----------------------------------------------------------------------------
1.146 +// CLoudness::NewL
1.147 +// Static function for creating an instance of the Loudness object.
1.148 +// -----------------------------------------------------------------------------
1.149 +//
1.150 +EXPORT_C CLoudness* CLoudness::NewL(
1.151 + CMdaAudioPlayerUtility& aUtility , TBool aEnable)
1.152 + {
1.153 +
1.154 + DEBPRN0;
1.155 + CCustomInterfaceUtility* customInterface = CCustomInterfaceUtility::NewL(aUtility);
1.156 + CleanupStack::PushL(customInterface);
1.157 +
1.158 + CLoudnessProxy* loudnessProxy = (CLoudnessProxy*)customInterface->CustomInterface(KUidLoudnessEffect);
1.159 +
1.160 + if ( !loudnessProxy )
1.161 + {
1.162 + DEBPRN1("No Adaptation Support - leaving");
1.163 + CleanupStack::Pop(customInterface);
1.164 + User::Leave(KErrNotSupported);
1.165 + }
1.166 +
1.167 + CleanupStack::Pop(customInterface);
1.168 +
1.169 + if(aEnable)
1.170 + {
1.171 + loudnessProxy->EnableL();
1.172 + }
1.173 +
1.174 + return loudnessProxy;
1.175 + }
1.176 +
1.177 +// -----------------------------------------------------------------------------
1.178 +// CLoudness::NewL
1.179 +// Static function for creating an instance of the Loudness object.
1.180 +// -----------------------------------------------------------------------------
1.181 +//
1.182 +EXPORT_C CLoudness* CLoudness::NewL(
1.183 + CMdaAudioRecorderUtility& aUtility, TBool aRecordStream, TBool aEnable)
1.184 + {
1.185 +
1.186 + DEBPRN0;
1.187 + CCustomInterfaceUtility* customInterface = CCustomInterfaceUtility::NewL(aUtility, aRecordStream);
1.188 + CleanupStack::PushL(customInterface);
1.189 +
1.190 + CLoudnessProxy* loudnessProxy = (CLoudnessProxy*)customInterface->CustomInterface(KUidLoudnessEffect);
1.191 +
1.192 + if ( !loudnessProxy )
1.193 + {
1.194 + DEBPRN1("No Adaptation Support - leaving");
1.195 + CleanupStack::Pop(customInterface);
1.196 + User::Leave(KErrNotSupported);
1.197 + }
1.198 +
1.199 + CleanupStack::Pop(customInterface);
1.200 +
1.201 + if(aEnable)
1.202 + {
1.203 + loudnessProxy->EnableL();
1.204 + }
1.205 +
1.206 + return loudnessProxy;
1.207 + }
1.208 +
1.209 +// -----------------------------------------------------------------------------
1.210 +// CLoudness::NewL
1.211 +// Static function for creating an instance of the Loudness object.
1.212 +// -----------------------------------------------------------------------------
1.213 +//
1.214 +EXPORT_C CLoudness* CLoudness::NewL(
1.215 + CMdaAudioToneUtility& aUtility, TBool aEnable )
1.216 + {
1.217 +
1.218 + DEBPRN0;
1.219 + CLoudnessProxy* loudnessProxy = (CLoudnessProxy*)aUtility.CustomInterface(KUidLoudnessEffect);
1.220 +
1.221 + if (loudnessProxy == NULL)
1.222 + {
1.223 + DEBPRN1("No Adaptation Support - leaving");
1.224 + User::Leave(KErrNotSupported);
1.225 + }
1.226 +
1.227 + if(aEnable)
1.228 + {
1.229 + loudnessProxy->EnableL();
1.230 + }
1.231 +
1.232 + return loudnessProxy;
1.233 + }
1.234 +
1.235 +
1.236 +// -----------------------------------------------------------------------------
1.237 +// CLoudness::NewL
1.238 +// Static function for creating an instance of the Loudness object.
1.239 +// -----------------------------------------------------------------------------
1.240 +//
1.241 +EXPORT_C CLoudness* CLoudness::NewL(
1.242 + CMMFDevSound& aDevSound , TBool aEnable )
1.243 + {
1.244 +
1.245 + DEBPRN0;
1.246 + CLoudnessProxy* loudnessProxy = (CLoudnessProxy*)aDevSound.CustomInterface(KUidLoudnessEffect);
1.247 +
1.248 + if (loudnessProxy == NULL)
1.249 + {
1.250 + DEBPRN1("No Adaptation Support - leaving");
1.251 + User::Leave(KErrNotSupported);
1.252 + }
1.253 +
1.254 + if(aEnable)
1.255 + {
1.256 + loudnessProxy->EnableL();
1.257 + }
1.258 +
1.259 + return loudnessProxy;
1.260 + }
1.261 +
1.262 +
1.263 +
1.264 +// -----------------------------------------------------------------------------
1.265 +// CLoudness::NewL
1.266 +// Static function for creating an instance of the Loudness object.
1.267 +// -----------------------------------------------------------------------------
1.268 +//
1.269 +EXPORT_C CLoudness* CLoudness::NewL(
1.270 + CCustomCommandUtility* aUtility , TBool aEnable)
1.271 + {
1.272 +
1.273 + DEBPRN0;
1.274 + CCustomInterfaceUtility* customInterface = CCustomInterfaceUtility::NewL(aUtility);
1.275 + CleanupStack::PushL(customInterface);
1.276 +
1.277 + CLoudnessProxy* loudnessProxy = (CLoudnessProxy*)customInterface->CustomInterface(KUidLoudnessEffect);
1.278 +
1.279 + if ( !loudnessProxy )
1.280 + {
1.281 + DEBPRN1("No Adaptation Support - leaving");
1.282 + CleanupStack::Pop(customInterface);
1.283 + User::Leave(KErrNotSupported);
1.284 + }
1.285 +
1.286 + CleanupStack::Pop(customInterface);
1.287 +
1.288 + if(aEnable)
1.289 + {
1.290 + loudnessProxy->EnableL();
1.291 + }
1.292 +
1.293 + return loudnessProxy;
1.294 + }
1.295 +
1.296 +// -----------------------------------------------------------------------------
1.297 +// CLoudness::NewL
1.298 +// Static function for creating an instance of the Loudness object.
1.299 +// -----------------------------------------------------------------------------
1.300 +//
1.301 +EXPORT_C CLoudness* CLoudness::NewL(
1.302 + MCustomInterface& aCustomInterface , TBool aEnable)
1.303 + {
1.304 +
1.305 + DEBPRN0;
1.306 + CLoudnessProxy* loudnessProxy = (CLoudnessProxy*)aCustomInterface.CustomInterface(KUidLoudnessEffect);
1.307 +
1.308 + if ( !loudnessProxy )
1.309 + {
1.310 + DEBPRN1("No Adaptation Support - leaving");
1.311 + User::Leave(KErrNotSupported);
1.312 + }
1.313 +
1.314 + if(aEnable)
1.315 + {
1.316 + loudnessProxy->EnableL();
1.317 + }
1.318 +
1.319 + return loudnessProxy;
1.320 + }
1.321 +
1.322 +// -----------------------------------------------------------------------------
1.323 +// CLoudness::NewL
1.324 +// Static function for creating an instance of the Loudness object.
1.325 +// -----------------------------------------------------------------------------
1.326 +//
1.327 +EXPORT_C CLoudness* CLoudness::NewL(
1.328 + CMidiClientUtility& aUtility , TBool aEnable)
1.329 + {
1.330 +
1.331 + DEBPRN0;
1.332 + CCustomInterfaceUtility* customInterface = CCustomInterfaceUtility::NewL(aUtility);
1.333 + CleanupStack::PushL(customInterface);
1.334 +
1.335 + CLoudnessProxy* loudnessProxy = (CLoudnessProxy*)customInterface->CustomInterface(KUidLoudnessEffect);
1.336 +
1.337 + if ( !loudnessProxy )
1.338 + {
1.339 + DEBPRN1("No Adaptation Support - leaving");
1.340 + CleanupStack::Pop(customInterface);
1.341 + User::Leave(KErrNotSupported);
1.342 + }
1.343 +
1.344 + CleanupStack::Pop(customInterface);
1.345 +
1.346 + if(aEnable)
1.347 + {
1.348 + loudnessProxy->EnableL();
1.349 + }
1.350 +
1.351 + return loudnessProxy;
1.352 + }
1.353 +
1.354 +// -----------------------------------------------------------------------------
1.355 +// CLoudness::NewL
1.356 +// Static function for creating an instance of the Loudness object.
1.357 +// -----------------------------------------------------------------------------
1.358 +//
1.359 +EXPORT_C CLoudness* CLoudness::NewL(
1.360 + CDrmPlayerUtility& aUtility, TBool aEnable)
1.361 + {
1.362 +
1.363 + DEBPRN0;
1.364 + CCustomInterfaceUtility* customInterface = CCustomInterfaceUtility::NewL(aUtility);
1.365 + CleanupStack::PushL(customInterface);
1.366 +
1.367 + CLoudnessProxy* loudnessProxy = (CLoudnessProxy*)customInterface->CustomInterface(KUidLoudnessEffect);
1.368 +
1.369 + if ( !loudnessProxy )
1.370 + {
1.371 + DEBPRN1("No Adaptation Support - leaving");
1.372 + CleanupStack::Pop(customInterface);
1.373 + User::Leave(KErrNotSupported);
1.374 + }
1.375 +
1.376 + CleanupStack::Pop(customInterface);
1.377 +
1.378 + if(aEnable)
1.379 + {
1.380 + loudnessProxy->EnableL();
1.381 + }
1.382 +
1.383 + return loudnessProxy;
1.384 + }
1.385 +
1.386 +// -----------------------------------------------------------------------------
1.387 +// CLoudness::NewL
1.388 +// Static function for creating an instance of the Loudness object.
1.389 +// -----------------------------------------------------------------------------
1.390 +//
1.391 +EXPORT_C CLoudness* CLoudness::NewL(
1.392 + CVideoPlayerUtility& aUtility, TBool aEnable)
1.393 + {
1.394 +
1.395 + DEBPRN0;
1.396 + CCustomInterfaceUtility* customInterface = CCustomInterfaceUtility::NewL(aUtility);
1.397 + CleanupStack::PushL(customInterface);
1.398 +
1.399 + CLoudnessProxy* loudnessProxy = (CLoudnessProxy*)customInterface->CustomInterface(KUidLoudnessEffect);
1.400 +
1.401 + if ( !loudnessProxy )
1.402 + {
1.403 + DEBPRN1("No Adaptation Support - leaving");
1.404 + CleanupStack::Pop(customInterface);
1.405 + User::Leave(KErrNotSupported);
1.406 + }
1.407 +
1.408 + CleanupStack::Pop(customInterface);
1.409 +
1.410 + if(aEnable)
1.411 + {
1.412 + loudnessProxy->EnableL();
1.413 + }
1.414 +
1.415 + return loudnessProxy;
1.416 + }
1.417 +
1.418 +// -----------------------------------------------------------------------------
1.419 +// CLoudness::Uid
1.420 +// -----------------------------------------------------------------------------
1.421 +//
1.422 +EXPORT_C TUid CLoudness::Uid() const
1.423 + {
1.424 + return KUidLoudnessEffect;
1.425 + }
1.426 +
1.427 +
1.428 +// -----------------------------------------------------------------------------
1.429 +// CLoudness::DoEffectData
1.430 +// -----------------------------------------------------------------------------
1.431 +//
1.432 +EXPORT_C const TDesC8& CLoudness::DoEffectData()
1.433 + {
1.434 + DEBPRN0;
1.435 + iDataPckgTo = iLoudnessData;
1.436 + return iDataPckgTo;
1.437 + }
1.438 +
1.439 +// -----------------------------------------------------------------------------
1.440 +// CLoudness::SetEffectData
1.441 +// -----------------------------------------------------------------------------
1.442 +//
1.443 +EXPORT_C void CLoudness::SetEffectData(
1.444 + const TDesC8& aEffectDataBuffer )
1.445 + {
1.446 + DEBPRN0;
1.447 + TEfLoudnessDataPckg dataPckg;
1.448 + dataPckg.Copy(aEffectDataBuffer);
1.449 + iLoudnessData = dataPckg();
1.450 + iEnabled = iLoudnessData.iEnabled;
1.451 + iEnforced = iLoudnessData.iEnforced;
1.452 + iHaveUpdateRights = iLoudnessData.iHaveUpdateRights;
1.453 +
1.454 + }
1.455 +
1.456 +
1.457 +// ========================== OTHER EXPORTED FUNCTIONS =========================
1.458 +
1.459 +// End of File
1.460 +