os/mm/devsoundextensions/drmaudioplayer/DRMPlayUtility/src/drmaudioplayeradaptation.cpp
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/devsoundextensions/drmaudioplayer/DRMPlayUtility/src/drmaudioplayeradaptation.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,661 @@
1.4 +/*
1.5 +* Copyright (c) 2005-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: DRM PlayUtility
1.18 +*
1.19 +*/
1.20 +
1.21 +#include <e32std.h>
1.22 +#include <mmf/common/mmfcontrollerframework.h>
1.23 +#include <mmfaudio.h> // MAudioLoadingObserver
1.24 +#include <AudioOutputMessageTypes.h>
1.25 +#include "drmaudioplayeradaptation.h"
1.26 +
1.27 +// This is the UID defined by custom interface builder
1.28 +const TUid KUidCustomInterfaceBuilderImpl = {0x10207A8E};
1.29 +
1.30 +// -----------------------------------------------------------------------------
1.31 +//
1.32 +//
1.33 +// -----------------------------------------------------------------------------
1.34 +//
1.35 +CDrmAudioPlayerAdaptation* CDrmAudioPlayerAdaptation::NewL( MDrmAudioPlayerCallback& aCallback,
1.36 + TInt aPriority,
1.37 + TMdaPriorityPreference aPref )
1.38 + {
1.39 + CDrmAudioPlayerAdaptation* self = new(ELeave) CDrmAudioPlayerAdaptation( aCallback );
1.40 + CleanupStack::PushL(self);
1.41 + self->ConstructL( aPriority, aPref );
1.42 + CleanupStack::Pop(self);
1.43 + return self;
1.44 + }
1.45 +
1.46 +// -----------------------------------------------------------------------------
1.47 +//
1.48 +//
1.49 +// -----------------------------------------------------------------------------
1.50 +//
1.51 +CDrmAudioPlayerAdaptation::CDrmAudioPlayerAdaptation(MDrmAudioPlayerCallback& aCallback)
1.52 + :iCallback(&aCallback)
1.53 + {}
1.54 +
1.55 +
1.56 +// -----------------------------------------------------------------------------
1.57 +//
1.58 +//
1.59 +// -----------------------------------------------------------------------------
1.60 +//
1.61 +void CDrmAudioPlayerAdaptation::ConstructL( TInt aPriority, TMdaPriorityPreference aPref )
1.62 + {
1.63 +
1.64 + if( iMdaPlayUtil )
1.65 + {
1.66 + delete iMdaPlayUtil;
1.67 + iMdaPlayUtil = NULL;
1.68 + }
1.69 +
1.70 + iMdaPlayUtil = CMdaAudioPlayerUtility::NewL( *this,
1.71 + aPriority,
1.72 + aPref);
1.73 + }
1.74 +
1.75 +
1.76 +// -----------------------------------------------------------------------------
1.77 +//
1.78 +//
1.79 +// -----------------------------------------------------------------------------
1.80 +//
1.81 +CDrmAudioPlayerAdaptation::~CDrmAudioPlayerAdaptation()
1.82 + {
1.83 +
1.84 + // Delete DMA play utility
1.85 + if( iMdaPlayUtil )
1.86 + iMdaPlayUtil->Close();
1.87 + delete iMdaPlayUtil;
1.88 + }
1.89 +
1.90 +
1.91 +// -----------------------------------------------------------------------------
1.92 +//
1.93 +//
1.94 +// -----------------------------------------------------------------------------
1.95 +//
1.96 +CDrmAudioPlayerAdaptation* CDrmAudioPlayerAdaptation::NewFilePlayerL( const TDesC& aFileName,
1.97 + MDrmAudioPlayerCallback& aCallback,
1.98 + TInt aPriority,
1.99 + TMdaPriorityPreference aPref)
1.100 + {
1.101 +
1.102 + CDrmAudioPlayerAdaptation* self = new(ELeave) CDrmAudioPlayerAdaptation( aCallback );
1.103 + CleanupStack::PushL(self);
1.104 + self->ConstructNewFilePlayerL( aFileName, aPriority, aPref );
1.105 + CleanupStack::Pop(self);
1.106 +
1.107 + return self;
1.108 + }
1.109 +
1.110 +// -----------------------------------------------------------------------------
1.111 +//
1.112 +//
1.113 +// -----------------------------------------------------------------------------
1.114 +//
1.115 +void CDrmAudioPlayerAdaptation::ConstructNewFilePlayerL( const TDesC& aFileName,
1.116 + TInt aPriority,
1.117 + TMdaPriorityPreference aPref )
1.118 + {
1.119 +
1.120 + if( iMdaPlayUtil )
1.121 + {
1.122 + delete iMdaPlayUtil;
1.123 + iMdaPlayUtil = NULL;
1.124 + }
1.125 + iMdaPlayUtil = CMdaAudioPlayerUtility::NewFilePlayerL( aFileName,
1.126 + *this,
1.127 + aPriority,
1.128 + aPref);
1.129 + }
1.130 +
1.131 +
1.132 +// -----------------------------------------------------------------------------
1.133 +//
1.134 +//
1.135 +// -----------------------------------------------------------------------------
1.136 +//
1.137 +CDrmAudioPlayerAdaptation* CDrmAudioPlayerAdaptation::NewDesPlayerL( const TDesC8& aData,
1.138 + MDrmAudioPlayerCallback& aCallback,
1.139 + TInt aPriority,
1.140 + TMdaPriorityPreference aPref)
1.141 + {
1.142 +
1.143 + CDrmAudioPlayerAdaptation* self = new(ELeave) CDrmAudioPlayerAdaptation( aCallback );
1.144 + CleanupStack::PushL(self);
1.145 + self->ConstructNewDesPlayerL( aData, aPriority, aPref );
1.146 + CleanupStack::Pop(self);
1.147 +
1.148 + return self;
1.149 + }
1.150 +
1.151 +
1.152 +// -----------------------------------------------------------------------------
1.153 +//
1.154 +//
1.155 +// -----------------------------------------------------------------------------
1.156 +//
1.157 +void CDrmAudioPlayerAdaptation::ConstructNewDesPlayerL( const TDesC8& aData,
1.158 + TInt aPriority,
1.159 + TMdaPriorityPreference aPref )
1.160 + {
1.161 +
1.162 + if( iMdaPlayUtil )
1.163 + {
1.164 + delete iMdaPlayUtil;
1.165 + iMdaPlayUtil = NULL;
1.166 + }
1.167 + iMdaPlayUtil = CMdaAudioPlayerUtility::NewDesPlayerL( aData,
1.168 + *this,
1.169 + aPriority,
1.170 + aPref);
1.171 + }
1.172 +
1.173 +
1.174 +// -----------------------------------------------------------------------------
1.175 +//
1.176 +//
1.177 +// -----------------------------------------------------------------------------
1.178 +//
1.179 +CDrmAudioPlayerAdaptation* CDrmAudioPlayerAdaptation::NewDesPlayerReadOnlyL( const TDesC8& aData,
1.180 + MDrmAudioPlayerCallback& aCallback,
1.181 + TInt aPriority,
1.182 + TMdaPriorityPreference aPref)
1.183 + {
1.184 +
1.185 + CDrmAudioPlayerAdaptation* self = new(ELeave) CDrmAudioPlayerAdaptation( aCallback );
1.186 + CleanupStack::PushL(self);
1.187 + self->ConstructNewDesPlayerReadOnlyL( aData, aPriority, aPref );
1.188 + CleanupStack::Pop(self);
1.189 +
1.190 + return self;
1.191 + }
1.192 +
1.193 +
1.194 +// -----------------------------------------------------------------------------
1.195 +//
1.196 +//
1.197 +// -----------------------------------------------------------------------------
1.198 +//
1.199 +void CDrmAudioPlayerAdaptation::ConstructNewDesPlayerReadOnlyL( const TDesC8& aData,
1.200 + TInt aPriority,
1.201 + TMdaPriorityPreference aPref )
1.202 + {
1.203 +
1.204 + delete this->iMdaPlayUtil;
1.205 + this->iMdaPlayUtil = NULL;
1.206 + this->iMdaPlayUtil = CMdaAudioPlayerUtility::NewDesPlayerReadOnlyL( aData,
1.207 + *this,
1.208 + aPriority,
1.209 + aPref);
1.210 + }
1.211 +
1.212 +
1.213 +// -----------------------------------------------------------------------------
1.214 +//
1.215 +//
1.216 +// -----------------------------------------------------------------------------
1.217 +//
1.218 +void CDrmAudioPlayerAdaptation::OpenFileL(const TDesC &aFileName)
1.219 + {
1.220 + iMdaPlayUtil->OpenFileL( aFileName );
1.221 + }
1.222 +
1.223 +
1.224 +// -----------------------------------------------------------------------------
1.225 +//
1.226 +//
1.227 +// -----------------------------------------------------------------------------
1.228 +//
1.229 +void CDrmAudioPlayerAdaptation::OpenFileL(const RFile& aFile)
1.230 + {
1.231 + iMdaPlayUtil->OpenFileL( aFile );
1.232 + }
1.233 +
1.234 +
1.235 +// -----------------------------------------------------------------------------
1.236 +//
1.237 +//
1.238 +// -----------------------------------------------------------------------------
1.239 +//
1.240 +void CDrmAudioPlayerAdaptation::OpenFileL(const TMMSource& aSource)
1.241 + {
1.242 + iMdaPlayUtil->OpenFileL( aSource );
1.243 + }
1.244 +
1.245 +
1.246 +// -----------------------------------------------------------------------------
1.247 +//
1.248 +//
1.249 +// -----------------------------------------------------------------------------
1.250 +//
1.251 +void CDrmAudioPlayerAdaptation::OpenDesL(const TDesC8& aDes)
1.252 + {
1.253 + iMdaPlayUtil->OpenDesL(aDes);
1.254 + }
1.255 +
1.256 +
1.257 +// -----------------------------------------------------------------------------
1.258 +//
1.259 +//
1.260 +// -----------------------------------------------------------------------------
1.261 +//
1.262 +void CDrmAudioPlayerAdaptation::OpenUrlL( const TDesC& aUrl, TInt aIapId, const TDesC8& aMimeType )
1.263 + {
1.264 + iMdaPlayUtil->OpenUrlL( aUrl, aIapId, aMimeType);
1.265 + }
1.266 +
1.267 +
1.268 +// -----------------------------------------------------------------------------
1.269 +//
1.270 +//
1.271 +// -----------------------------------------------------------------------------
1.272 +//
1.273 +void CDrmAudioPlayerAdaptation::Play()
1.274 + {
1.275 + iMdaPlayUtil->Play();
1.276 + }
1.277 +
1.278 +
1.279 +// -----------------------------------------------------------------------------
1.280 +//
1.281 +//
1.282 +// -----------------------------------------------------------------------------
1.283 +//
1.284 +void CDrmAudioPlayerAdaptation::Stop()
1.285 + {
1.286 + iMdaPlayUtil->Stop();
1.287 + }
1.288 +
1.289 +// -----------------------------------------------------------------------------
1.290 +//
1.291 +//
1.292 +// -----------------------------------------------------------------------------
1.293 +//
1.294 +void CDrmAudioPlayerAdaptation::SetVolume( const TInt aVolume )
1.295 + {
1.296 + iMdaPlayUtil->SetVolume( aVolume );
1.297 + }
1.298 +
1.299 +
1.300 +// -----------------------------------------------------------------------------
1.301 +//
1.302 +//
1.303 +// -----------------------------------------------------------------------------
1.304 +//
1.305 +void CDrmAudioPlayerAdaptation::SetRepeats( TInt aRepeatNumberOfTimes,
1.306 + const TTimeIntervalMicroSeconds& aTrailingSilence )
1.307 + {
1.308 + iMdaPlayUtil->SetRepeats( aRepeatNumberOfTimes, aTrailingSilence );
1.309 + }
1.310 +
1.311 +
1.312 +// -----------------------------------------------------------------------------
1.313 +//
1.314 +//
1.315 +// -----------------------------------------------------------------------------
1.316 +//
1.317 +void CDrmAudioPlayerAdaptation::SetVolumeRamp( const TTimeIntervalMicroSeconds& aRampDuration )
1.318 + {
1.319 + iMdaPlayUtil->SetVolumeRamp( aRampDuration );
1.320 + }
1.321 +
1.322 +
1.323 +// -----------------------------------------------------------------------------
1.324 +//
1.325 +//
1.326 +// -----------------------------------------------------------------------------
1.327 +//
1.328 +const TTimeIntervalMicroSeconds& CDrmAudioPlayerAdaptation::Duration()
1.329 + {
1.330 + return iMdaPlayUtil->Duration();
1.331 + }
1.332 +
1.333 +
1.334 +// -----------------------------------------------------------------------------
1.335 +//
1.336 +//
1.337 +// -----------------------------------------------------------------------------
1.338 +//
1.339 +TInt CDrmAudioPlayerAdaptation::MaxVolume()
1.340 + {
1.341 + return iMdaPlayUtil->MaxVolume();
1.342 + }
1.343 +
1.344 +
1.345 +// API Additions since version 7.0
1.346 +
1.347 +// -----------------------------------------------------------------------------
1.348 +//
1.349 +//
1.350 +// -----------------------------------------------------------------------------
1.351 +//
1.352 +TInt CDrmAudioPlayerAdaptation::Pause()
1.353 + {
1.354 + return iMdaPlayUtil->Pause();
1.355 + }
1.356 +
1.357 +
1.358 +// -----------------------------------------------------------------------------
1.359 +//
1.360 +//
1.361 +// -----------------------------------------------------------------------------
1.362 +//
1.363 +void CDrmAudioPlayerAdaptation::Close()
1.364 + {
1.365 + iMdaPlayUtil->Close();
1.366 + }
1.367 +
1.368 +
1.369 +// -----------------------------------------------------------------------------
1.370 +//
1.371 +//
1.372 +// -----------------------------------------------------------------------------
1.373 +//
1.374 +TInt CDrmAudioPlayerAdaptation::GetPosition(TTimeIntervalMicroSeconds& aPosition)
1.375 + {
1.376 + return iMdaPlayUtil->GetPosition(aPosition);
1.377 + }
1.378 +
1.379 +
1.380 +// -----------------------------------------------------------------------------
1.381 +//
1.382 +//
1.383 +// -----------------------------------------------------------------------------
1.384 +//
1.385 +void CDrmAudioPlayerAdaptation::SetPosition( const TTimeIntervalMicroSeconds& aPosition )
1.386 + {
1.387 + iMdaPlayUtil->SetPosition(aPosition);
1.388 + }
1.389 +
1.390 +
1.391 +// -----------------------------------------------------------------------------
1.392 +//
1.393 +//
1.394 +// -----------------------------------------------------------------------------
1.395 +//
1.396 +TInt CDrmAudioPlayerAdaptation::SetPriority( TInt aPriority, TMdaPriorityPreference aPref )
1.397 + {
1.398 + return iMdaPlayUtil->SetPriority( aPriority, aPref );
1.399 + }
1.400 +
1.401 +
1.402 +// -----------------------------------------------------------------------------
1.403 +//
1.404 +//
1.405 +// -----------------------------------------------------------------------------
1.406 +//
1.407 +TInt CDrmAudioPlayerAdaptation::GetVolume(TInt& aVolume)
1.408 + {
1.409 + return iMdaPlayUtil->GetVolume(aVolume);
1.410 + }
1.411 +
1.412 +
1.413 +// -----------------------------------------------------------------------------
1.414 +//
1.415 +//
1.416 +// -----------------------------------------------------------------------------
1.417 +//
1.418 +TInt CDrmAudioPlayerAdaptation::GetNumberOfMetaDataEntries( TInt& aNumEntries )
1.419 + {
1.420 + return iMdaPlayUtil->GetNumberOfMetaDataEntries( aNumEntries);
1.421 + }
1.422 +
1.423 +
1.424 +// -----------------------------------------------------------------------------
1.425 +//
1.426 +//
1.427 +// -----------------------------------------------------------------------------
1.428 +//
1.429 +CMMFMetaDataEntry* CDrmAudioPlayerAdaptation::GetMetaDataEntryL( const TInt aMetaDataIndex )
1.430 + {
1.431 + return iMdaPlayUtil->GetMetaDataEntryL(aMetaDataIndex);
1.432 + }
1.433 +
1.434 +
1.435 +// -----------------------------------------------------------------------------
1.436 +//
1.437 +//
1.438 +// -----------------------------------------------------------------------------
1.439 +//
1.440 +TInt CDrmAudioPlayerAdaptation::SetPlayWindow(const TTimeIntervalMicroSeconds& aStart,
1.441 + const TTimeIntervalMicroSeconds& aEnd)
1.442 + {
1.443 + return iMdaPlayUtil->SetPlayWindow(aStart,aEnd);
1.444 + }
1.445 +
1.446 +
1.447 +// -----------------------------------------------------------------------------
1.448 +//
1.449 +//
1.450 +// -----------------------------------------------------------------------------
1.451 +//
1.452 +TInt CDrmAudioPlayerAdaptation::ClearPlayWindow()
1.453 + {
1.454 + return iMdaPlayUtil->ClearPlayWindow();
1.455 + }
1.456 +
1.457 +
1.458 +// -----------------------------------------------------------------------------
1.459 +//
1.460 +//
1.461 +// -----------------------------------------------------------------------------
1.462 +//
1.463 +TInt CDrmAudioPlayerAdaptation::SetBalance( const TInt aBalance )
1.464 + {
1.465 + return iMdaPlayUtil->SetBalance(aBalance);
1.466 + }
1.467 +
1.468 +
1.469 +// -----------------------------------------------------------------------------
1.470 +//
1.471 +//
1.472 +// -----------------------------------------------------------------------------
1.473 +//
1.474 +TInt CDrmAudioPlayerAdaptation::GetBalance(TInt& aBalance)
1.475 + {
1.476 + return iMdaPlayUtil->GetBalance(aBalance);
1.477 + }
1.478 +
1.479 +
1.480 +// -----------------------------------------------------------------------------
1.481 +//
1.482 +//
1.483 +// -----------------------------------------------------------------------------
1.484 +//
1.485 +TInt CDrmAudioPlayerAdaptation::GetBitRate(TUint& aBitRate)
1.486 + {
1.487 + return iMdaPlayUtil->GetBitRate(aBitRate);
1.488 + }
1.489 +
1.490 +
1.491 +// -----------------------------------------------------------------------------
1.492 +//
1.493 +//
1.494 +// -----------------------------------------------------------------------------
1.495 +//
1.496 +void CDrmAudioPlayerAdaptation::RegisterForAudioLoadingNotification(MAudioLoadingObserver& aCallback)
1.497 + {
1.498 + iMdaPlayUtil->RegisterForAudioLoadingNotification(aCallback);
1.499 + }
1.500 +
1.501 +
1.502 +// -----------------------------------------------------------------------------
1.503 +//
1.504 +//
1.505 +// -----------------------------------------------------------------------------
1.506 +//
1.507 +void CDrmAudioPlayerAdaptation::GetAudioLoadingProgressL( TInt& aPercentageProgress )
1.508 + {
1.509 + iMdaPlayUtil->GetAudioLoadingProgressL(aPercentageProgress);
1.510 + }
1.511 +
1.512 +
1.513 +// -----------------------------------------------------------------------------
1.514 +//
1.515 +//
1.516 +// -----------------------------------------------------------------------------
1.517 +//
1.518 +const CMMFControllerImplementationInformation& CDrmAudioPlayerAdaptation::ControllerImplementationInformationL()
1.519 + {
1.520 + return iMdaPlayUtil->ControllerImplementationInformationL();
1.521 + }
1.522 +
1.523 +
1.524 +// -----------------------------------------------------------------------------
1.525 +//
1.526 +//
1.527 +// -----------------------------------------------------------------------------
1.528 +//
1.529 +TInt CDrmAudioPlayerAdaptation::CustomCommandSync(const TMMFMessageDestinationPckg& aDestination,
1.530 + TInt aFunction,
1.531 + const TDesC8& aDataTo1,
1.532 + const TDesC8& aDataTo2,
1.533 + TDes8& aDataFrom)
1.534 + {
1.535 + return iMdaPlayUtil->CustomCommandSync( aDestination,
1.536 + aFunction,
1.537 + aDataTo1,
1.538 + aDataTo2,
1.539 + aDataFrom );
1.540 +
1.541 + }
1.542 +
1.543 +
1.544 +// -----------------------------------------------------------------------------
1.545 +//
1.546 +//
1.547 +// -----------------------------------------------------------------------------
1.548 +//
1.549 +TInt CDrmAudioPlayerAdaptation::CustomCommandSync( const TMMFMessageDestinationPckg& aDestination,
1.550 + TInt aFunction,
1.551 + const TDesC8& aDataTo1,
1.552 + const TDesC8& aDataTo2 )
1.553 + {
1.554 + return iMdaPlayUtil->CustomCommandSync( aDestination,
1.555 + aFunction,
1.556 + aDataTo1,
1.557 + aDataTo2 );
1.558 +
1.559 + }
1.560 +
1.561 +
1.562 +// -----------------------------------------------------------------------------
1.563 +//
1.564 +//
1.565 +// -----------------------------------------------------------------------------
1.566 +//
1.567 +void CDrmAudioPlayerAdaptation::CustomCommandAsync(const TMMFMessageDestinationPckg& aDestination,
1.568 + TInt aFunction,
1.569 + const TDesC8& aDataTo1,
1.570 + const TDesC8& aDataTo2,
1.571 + TDes8& aDataFrom,
1.572 + TRequestStatus& aStatus)
1.573 + {
1.574 + iMdaPlayUtil->CustomCommandAsync( aDestination,
1.575 + aFunction,
1.576 + aDataTo1,
1.577 + aDataTo2,
1.578 + aDataFrom,
1.579 + aStatus);
1.580 +
1.581 + }
1.582 +
1.583 +
1.584 +// -----------------------------------------------------------------------------
1.585 +//
1.586 +//
1.587 +// -----------------------------------------------------------------------------
1.588 +//
1.589 +void CDrmAudioPlayerAdaptation::CustomCommandAsync(const TMMFMessageDestinationPckg& aDestination,
1.590 + TInt aFunction,
1.591 + const TDesC8& aDataTo1,
1.592 + const TDesC8& aDataTo2,
1.593 + TRequestStatus& aStatus)
1.594 + {
1.595 + iMdaPlayUtil->CustomCommandAsync( aDestination,
1.596 + aFunction,
1.597 + aDataTo1,
1.598 + aDataTo2,
1.599 + aStatus);
1.600 + }
1.601 +
1.602 +
1.603 +// -----------------------------------------------------------------------------
1.604 +//
1.605 +//
1.606 +// -----------------------------------------------------------------------------
1.607 +//
1.608 +TBool CDrmAudioPlayerAdaptation::IsValidCustomCommandDestination(TUid aDestinationUid, TDesC8& aParam)
1.609 + {
1.610 + TBool retValue(ETrue);
1.611 +
1.612 + if( aDestinationUid == KUidInterfaceMMFDRMControl)
1.613 + {
1.614 + retValue = EFalse;
1.615 + }
1.616 + else if( aDestinationUid == KUidCustomInterfaceBuilderImpl )
1.617 + {
1.618 + TRAPD(err, retValue = CheckCustomInterfaceBuilderImplL(aParam));
1.619 + if(err != KErrNone)
1.620 + {
1.621 + retValue = EFalse;
1.622 + }
1.623 + }
1.624 + return retValue;
1.625 + }
1.626 +TBool CDrmAudioPlayerAdaptation::CheckCustomInterfaceBuilderImplL(const TDesC8& aParam)
1.627 + {
1.628 + TBool retValue(ETrue);
1.629 + RDesReadStream stream(aParam);
1.630 + CleanupClosePushL(stream);
1.631 + TUid paramUid;
1.632 + paramUid.iUid = stream.ReadInt32L();
1.633 + CleanupStack::PopAndDestroy(&stream);
1.634 + if ( paramUid == KUidAudioOutput )
1.635 + {
1.636 + retValue = EFalse;
1.637 + }
1.638 + return retValue;
1.639 + }
1.640 +
1.641 +
1.642 +// -----------------------------------------------------------------------------
1.643 +//
1.644 +//
1.645 +// -----------------------------------------------------------------------------
1.646 +//
1.647 +void CDrmAudioPlayerAdaptation::MapcInitComplete( TInt aError, const TTimeIntervalMicroSeconds& aDuration )
1.648 + {
1.649 + iCallback->MdapcInitComplete( aError, aDuration );
1.650 + }
1.651 +
1.652 +
1.653 +// -----------------------------------------------------------------------------
1.654 +//
1.655 +//
1.656 +// -----------------------------------------------------------------------------
1.657 +//
1.658 +void CDrmAudioPlayerAdaptation::MapcPlayComplete( TInt aError )
1.659 + {
1.660 + iCallback->MdapcPlayComplete( aError );
1.661 + }
1.662 +
1.663 +// End of File
1.664 +