1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/devsoundextensions/effects/BassBoost/BassBoostEffect/Src/BassBoostBase.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,454 @@
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 bassboost 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 <BassBoostBase.h>
1.31 +#include <CustomInterfaceUtility.h>
1.32 +#include "BassBoostProxy.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 +// CBassBoost::CBassBoost
1.52 +// C++ default constructor can NOT contain any code, that
1.53 +// might leave.
1.54 +// -----------------------------------------------------------------------------
1.55 +//
1.56 +EXPORT_C CBassBoost::CBassBoost()
1.57 + : iBassBoostData(),
1.58 + iDataPckgTo(iBassBoostData),
1.59 + iDataPckgFrom(iBassBoostData)
1.60 + {
1.61 + }
1.62 +
1.63 +// Destructor
1.64 +EXPORT_C CBassBoost::~CBassBoost()
1.65 + {
1.66 + }
1.67 +
1.68 +
1.69 +// -----------------------------------------------------------------------------
1.70 +// CBassBoost::NewL
1.71 +// Static function for creating an instance of the BassBoost object.
1.72 +// -----------------------------------------------------------------------------
1.73 +//
1.74 +EXPORT_C CBassBoost* CBassBoost::NewL(
1.75 + CMdaAudioInputStream& aUtility, TBool aEnable)
1.76 + {
1.77 +
1.78 + DEBPRN0;
1.79 + CBassBoostProxy* bassboostProxy = (CBassBoostProxy*)aUtility.CustomInterface(KUidBassBoostEffect);
1.80 +
1.81 + if (bassboostProxy == NULL)
1.82 + {
1.83 + DEBPRN1("No Adaptation Support - leaving");
1.84 + User::Leave(KErrNotSupported);
1.85 + }
1.86 +
1.87 + if(aEnable)
1.88 + {
1.89 + bassboostProxy->EnableL();
1.90 + }
1.91 +
1.92 + return bassboostProxy;
1.93 + }
1.94 +
1.95 +// -----------------------------------------------------------------------------
1.96 +// CBassBoost::NewL
1.97 +// Static function for creating an instance of the BassBoost object.
1.98 +// -----------------------------------------------------------------------------
1.99 +//
1.100 +EXPORT_C CBassBoost* CBassBoost::NewL(
1.101 + CMdaAudioOutputStream& aUtility , TBool aEnable)
1.102 + {
1.103 +
1.104 + DEBPRN0;
1.105 + CBassBoostProxy* bassboostProxy = (CBassBoostProxy*)aUtility.CustomInterface(KUidBassBoostEffect);
1.106 +
1.107 + if (bassboostProxy == NULL)
1.108 + {
1.109 + DEBPRN1("No Adaptation Support - leaving");
1.110 + User::Leave(KErrNotSupported);
1.111 + }
1.112 +
1.113 + if(aEnable)
1.114 + {
1.115 + bassboostProxy->EnableL();
1.116 + }
1.117 +
1.118 + return bassboostProxy;
1.119 + }
1.120 +
1.121 +// -----------------------------------------------------------------------------
1.122 +// CBassBoost::NewL
1.123 +// Static function for creating an instance of the BassBoost object.
1.124 +// -----------------------------------------------------------------------------
1.125 +//
1.126 +EXPORT_C CBassBoost* CBassBoost::NewL(
1.127 + CMdaAudioConvertUtility& aUtility , TBool aEnable)
1.128 + {
1.129 +
1.130 + DEBPRN0;
1.131 + CCustomInterfaceUtility* customInterface = CCustomInterfaceUtility::NewL(aUtility);
1.132 + CleanupStack::PushL(customInterface);
1.133 +
1.134 + CBassBoostProxy* bassboostProxy = (CBassBoostProxy*)customInterface->CustomInterface(KUidBassBoostEffect);
1.135 +
1.136 + if ( !bassboostProxy )
1.137 + {
1.138 + DEBPRN1("No Adaptation Support - leaving");
1.139 + User::Leave(KErrNotSupported);
1.140 + }
1.141 +
1.142 + CleanupStack::Pop(customInterface);
1.143 +
1.144 + if(aEnable)
1.145 + {
1.146 + bassboostProxy->EnableL();
1.147 + }
1.148 +
1.149 + return bassboostProxy;
1.150 + }
1.151 +
1.152 +// -----------------------------------------------------------------------------
1.153 +// CBassBoost::NewL
1.154 +// Static function for creating an instance of the BassBoost object.
1.155 +// -----------------------------------------------------------------------------
1.156 +//
1.157 +EXPORT_C CBassBoost* CBassBoost::NewL(
1.158 + CMdaAudioPlayerUtility& aUtility , TBool aEnable)
1.159 + {
1.160 +
1.161 + DEBPRN0;
1.162 + CCustomInterfaceUtility* customInterface = CCustomInterfaceUtility::NewL(aUtility);
1.163 + CleanupStack::PushL(customInterface);
1.164 +
1.165 + CBassBoostProxy* bassboostProxy = (CBassBoostProxy*)customInterface->CustomInterface(KUidBassBoostEffect);
1.166 +
1.167 + if ( !bassboostProxy )
1.168 + {
1.169 + DEBPRN1("No Adaptation Support - leaving");
1.170 + User::Leave(KErrNotSupported);
1.171 + }
1.172 +
1.173 + CleanupStack::Pop(customInterface);
1.174 +
1.175 + if(aEnable)
1.176 + {
1.177 + bassboostProxy->EnableL();
1.178 + }
1.179 +
1.180 + return bassboostProxy;
1.181 + }
1.182 +
1.183 +// -----------------------------------------------------------------------------
1.184 +// CBassBoost::NewL
1.185 +// Static function for creating an instance of the BassBoost object.
1.186 +// -----------------------------------------------------------------------------
1.187 +//
1.188 +EXPORT_C CBassBoost* CBassBoost::NewL(
1.189 + CMdaAudioRecorderUtility& aUtility,
1.190 + TBool aRecordStream , TBool aEnable)
1.191 + {
1.192 +
1.193 + DEBPRN0;
1.194 + CCustomInterfaceUtility* customInterface = CCustomInterfaceUtility::NewL(aUtility, aRecordStream);
1.195 + CleanupStack::PushL(customInterface);
1.196 +
1.197 + CBassBoostProxy* bassboostProxy = (CBassBoostProxy*)customInterface->CustomInterface(KUidBassBoostEffect);
1.198 +
1.199 + if ( !bassboostProxy )
1.200 + {
1.201 + DEBPRN1("No Adaptation Support - leaving");
1.202 + User::Leave(KErrNotSupported);
1.203 + }
1.204 +
1.205 + CleanupStack::Pop(customInterface);
1.206 +
1.207 + if(aEnable)
1.208 + {
1.209 + bassboostProxy->EnableL();
1.210 + }
1.211 +
1.212 + return bassboostProxy;
1.213 + }
1.214 +
1.215 +// -----------------------------------------------------------------------------
1.216 +// CBassBoost::NewL
1.217 +// Static function for creating an instance of the BassBoost object.
1.218 +// -----------------------------------------------------------------------------
1.219 +//
1.220 +EXPORT_C CBassBoost* CBassBoost::NewL(
1.221 + CMdaAudioToneUtility& aUtility, TBool aEnable)
1.222 + {
1.223 +
1.224 + DEBPRN0;
1.225 + CBassBoostProxy* bassboostProxy = (CBassBoostProxy*)aUtility.CustomInterface(KUidBassBoostEffect);
1.226 +
1.227 + if (bassboostProxy == NULL)
1.228 + {
1.229 + DEBPRN1("No Adaptation Support - leaving");
1.230 + User::Leave(KErrNotSupported);
1.231 + }
1.232 +
1.233 + if(aEnable)
1.234 + {
1.235 + bassboostProxy->EnableL();
1.236 + }
1.237 +
1.238 + return bassboostProxy;
1.239 + }
1.240 +
1.241 +// -----------------------------------------------------------------------------
1.242 +// CBassBoost::NewL
1.243 +// Static function for creating an instance of the BassBoost object.
1.244 +// -----------------------------------------------------------------------------
1.245 +//
1.246 +EXPORT_C CBassBoost* CBassBoost::NewL(
1.247 + CMMFDevSound& aDevSound, TBool aEnable )
1.248 + {
1.249 +
1.250 + DEBPRN0;
1.251 + CBassBoostProxy* bassboostProxy = (CBassBoostProxy*)aDevSound.CustomInterface(KUidBassBoostEffect);
1.252 +
1.253 + if (bassboostProxy == NULL)
1.254 + {
1.255 + DEBPRN1("No Adaptation Support - leaving");
1.256 + User::Leave(KErrNotSupported);
1.257 + }
1.258 +
1.259 + if(aEnable)
1.260 + {
1.261 + bassboostProxy->EnableL();
1.262 + }
1.263 +
1.264 + return bassboostProxy;
1.265 + }
1.266 +
1.267 +// -----------------------------------------------------------------------------
1.268 +// CBassBoost::NewL
1.269 +// Static function for creating an instance of the BassBoost object.
1.270 +// -----------------------------------------------------------------------------
1.271 +//
1.272 +EXPORT_C CBassBoost* CBassBoost::NewL(
1.273 + CCustomCommandUtility* aUtility, TBool aEnable )
1.274 + {
1.275 +
1.276 + DEBPRN0;
1.277 + CCustomInterfaceUtility* customInterface = CCustomInterfaceUtility::NewL(aUtility);
1.278 + CleanupStack::PushL(customInterface);
1.279 +
1.280 + CBassBoostProxy* bassboostProxy = (CBassBoostProxy*)customInterface->CustomInterface(KUidBassBoostEffect);
1.281 +
1.282 + if ( !bassboostProxy )
1.283 + {
1.284 + DEBPRN1("No Adaptation Support - leaving");
1.285 + User::Leave(KErrNotSupported);
1.286 + }
1.287 +
1.288 + CleanupStack::Pop(customInterface);
1.289 +
1.290 + if(aEnable)
1.291 + {
1.292 + bassboostProxy->EnableL();
1.293 + }
1.294 +
1.295 + return bassboostProxy;
1.296 + }
1.297 +
1.298 +// -----------------------------------------------------------------------------
1.299 +// CBassBoost::NewL
1.300 +// Static function for creating an instance of the BassBoost object.
1.301 +// -----------------------------------------------------------------------------
1.302 +//
1.303 +EXPORT_C CBassBoost* CBassBoost::NewL(
1.304 + MCustomInterface& aCustomInterface , TBool aEnable)
1.305 + {
1.306 +
1.307 + DEBPRN0;
1.308 + CBassBoost* bassboostProxy = (CBassBoost*)aCustomInterface.CustomInterface(KUidBassBoostEffect);
1.309 +
1.310 + if ( !bassboostProxy )
1.311 + {
1.312 + DEBPRN1("No Adaptation Support - leaving");
1.313 + User::Leave(KErrNotSupported);
1.314 + }
1.315 +
1.316 + if(aEnable)
1.317 + {
1.318 + bassboostProxy->EnableL();
1.319 + }
1.320 +
1.321 + return bassboostProxy;
1.322 + }
1.323 +
1.324 +// -----------------------------------------------------------------------------
1.325 +// CBassBoost::NewL
1.326 +// Static function for creating an instance of the BassBoost object.
1.327 +// -----------------------------------------------------------------------------
1.328 +//
1.329 +EXPORT_C CBassBoost* CBassBoost::NewL(
1.330 + CMidiClientUtility& aUtility, TBool aEnable )
1.331 + {
1.332 +
1.333 + DEBPRN0;
1.334 + CCustomInterfaceUtility* customInterface = CCustomInterfaceUtility::NewL(aUtility);
1.335 + CleanupStack::PushL(customInterface);
1.336 +
1.337 + CBassBoostProxy* bassboostProxy = (CBassBoostProxy*)customInterface->CustomInterface(KUidBassBoostEffect);
1.338 +
1.339 + if ( !bassboostProxy )
1.340 + {
1.341 + DEBPRN1("No Adaptation Support - leaving");
1.342 + User::Leave(KErrNotSupported);
1.343 + }
1.344 +
1.345 + CleanupStack::Pop(customInterface);
1.346 +
1.347 + if(aEnable)
1.348 + {
1.349 + bassboostProxy->EnableL();
1.350 + }
1.351 +
1.352 + return bassboostProxy;
1.353 + }
1.354 +
1.355 +// -----------------------------------------------------------------------------
1.356 +// CBassBoost::NewL
1.357 +// Static function for creating an instance of the BassBoost object.
1.358 +// -----------------------------------------------------------------------------
1.359 +//
1.360 +EXPORT_C CBassBoost* CBassBoost::NewL(
1.361 + CDrmPlayerUtility& aUtility, TBool aEnable)
1.362 + {
1.363 +
1.364 + DEBPRN0;
1.365 + CCustomInterfaceUtility* customInterface = CCustomInterfaceUtility::NewL(aUtility);
1.366 + CleanupStack::PushL(customInterface);
1.367 +
1.368 + CBassBoostProxy* bassboostProxy = (CBassBoostProxy*)customInterface->CustomInterface(KUidBassBoostEffect);
1.369 +
1.370 + if ( !bassboostProxy )
1.371 + {
1.372 + DEBPRN1("No Adaptation Support - leaving");
1.373 + User::Leave(KErrNotSupported);
1.374 + }
1.375 +
1.376 + CleanupStack::Pop(customInterface);
1.377 +
1.378 + if(aEnable)
1.379 + {
1.380 + bassboostProxy->EnableL();
1.381 + }
1.382 +
1.383 + return bassboostProxy;
1.384 + }
1.385 +
1.386 +// -----------------------------------------------------------------------------
1.387 +// CBassBoost::NewL
1.388 +// Static function for creating an instance of the BassBoost object.
1.389 +// -----------------------------------------------------------------------------
1.390 +//
1.391 +EXPORT_C CBassBoost* CBassBoost::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 + CBassBoostProxy* bassboostProxy = (CBassBoostProxy*)customInterface->CustomInterface(KUidBassBoostEffect);
1.400 +
1.401 + if ( !bassboostProxy )
1.402 + {
1.403 + DEBPRN1("No Adaptation Support - leaving");
1.404 + User::Leave(KErrNotSupported);
1.405 + }
1.406 +
1.407 + CleanupStack::Pop(customInterface);
1.408 +
1.409 + if(aEnable)
1.410 + {
1.411 + bassboostProxy->EnableL();
1.412 + }
1.413 +
1.414 + return bassboostProxy;
1.415 + }
1.416 +
1.417 +// -----------------------------------------------------------------------------
1.418 +// CBassBoost::DoEffectData
1.419 +// -----------------------------------------------------------------------------
1.420 +//
1.421 +EXPORT_C const TDesC8& CBassBoost::DoEffectData()
1.422 + {
1.423 + DEBPRN0;
1.424 + iDataPckgTo = iBassBoostData;
1.425 + return iDataPckgTo;
1.426 + }
1.427 +
1.428 +// -----------------------------------------------------------------------------
1.429 +// CBassBoost::SetEffectData
1.430 +// -----------------------------------------------------------------------------
1.431 +//
1.432 +EXPORT_C void CBassBoost::SetEffectData(
1.433 + const TDesC8& aEffectDataBuffer )
1.434 + {
1.435 + DEBPRN0;
1.436 + TEfBassBoostDataPckg dataPckg;
1.437 + dataPckg.Copy(aEffectDataBuffer);
1.438 + iBassBoostData = dataPckg();
1.439 + iEnabled = iBassBoostData.iEnabled;
1.440 + iEnforced = iBassBoostData.iEnforced;
1.441 + iHaveUpdateRights = iBassBoostData.iHaveUpdateRights;
1.442 + }
1.443 +
1.444 +
1.445 +// -----------------------------------------------------------------------------
1.446 +// CBassBoost::Uid
1.447 +// -----------------------------------------------------------------------------
1.448 +//
1.449 +EXPORT_C TUid CBassBoost::Uid() const
1.450 + {
1.451 + return KUidBassBoostEffect;
1.452 + }
1.453 +
1.454 +
1.455 +// ========================== OTHER EXPORTED FUNCTIONS =========================
1.456 +
1.457 +