sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2005-2006 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description: DRM PlayUtility
|
sl@0
|
15 |
*
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
#include <e32std.h>
|
sl@0
|
19 |
#include <mmf/common/mmfcontrollerframework.h>
|
sl@0
|
20 |
#include <mmfaudio.h> // MAudioLoadingObserver
|
sl@0
|
21 |
#include <AudioOutputMessageTypes.h>
|
sl@0
|
22 |
#include "drmaudioplayeradaptation.h"
|
sl@0
|
23 |
|
sl@0
|
24 |
// This is the UID defined by custom interface builder
|
sl@0
|
25 |
const TUid KUidCustomInterfaceBuilderImpl = {0x10207A8E};
|
sl@0
|
26 |
|
sl@0
|
27 |
// -----------------------------------------------------------------------------
|
sl@0
|
28 |
//
|
sl@0
|
29 |
//
|
sl@0
|
30 |
// -----------------------------------------------------------------------------
|
sl@0
|
31 |
//
|
sl@0
|
32 |
CDrmAudioPlayerAdaptation* CDrmAudioPlayerAdaptation::NewL( MDrmAudioPlayerCallback& aCallback,
|
sl@0
|
33 |
TInt aPriority,
|
sl@0
|
34 |
TMdaPriorityPreference aPref )
|
sl@0
|
35 |
{
|
sl@0
|
36 |
CDrmAudioPlayerAdaptation* self = new(ELeave) CDrmAudioPlayerAdaptation( aCallback );
|
sl@0
|
37 |
CleanupStack::PushL(self);
|
sl@0
|
38 |
self->ConstructL( aPriority, aPref );
|
sl@0
|
39 |
CleanupStack::Pop(self);
|
sl@0
|
40 |
return self;
|
sl@0
|
41 |
}
|
sl@0
|
42 |
|
sl@0
|
43 |
// -----------------------------------------------------------------------------
|
sl@0
|
44 |
//
|
sl@0
|
45 |
//
|
sl@0
|
46 |
// -----------------------------------------------------------------------------
|
sl@0
|
47 |
//
|
sl@0
|
48 |
CDrmAudioPlayerAdaptation::CDrmAudioPlayerAdaptation(MDrmAudioPlayerCallback& aCallback)
|
sl@0
|
49 |
:iCallback(&aCallback)
|
sl@0
|
50 |
{}
|
sl@0
|
51 |
|
sl@0
|
52 |
|
sl@0
|
53 |
// -----------------------------------------------------------------------------
|
sl@0
|
54 |
//
|
sl@0
|
55 |
//
|
sl@0
|
56 |
// -----------------------------------------------------------------------------
|
sl@0
|
57 |
//
|
sl@0
|
58 |
void CDrmAudioPlayerAdaptation::ConstructL( TInt aPriority, TMdaPriorityPreference aPref )
|
sl@0
|
59 |
{
|
sl@0
|
60 |
|
sl@0
|
61 |
if( iMdaPlayUtil )
|
sl@0
|
62 |
{
|
sl@0
|
63 |
delete iMdaPlayUtil;
|
sl@0
|
64 |
iMdaPlayUtil = NULL;
|
sl@0
|
65 |
}
|
sl@0
|
66 |
|
sl@0
|
67 |
iMdaPlayUtil = CMdaAudioPlayerUtility::NewL( *this,
|
sl@0
|
68 |
aPriority,
|
sl@0
|
69 |
aPref);
|
sl@0
|
70 |
}
|
sl@0
|
71 |
|
sl@0
|
72 |
|
sl@0
|
73 |
// -----------------------------------------------------------------------------
|
sl@0
|
74 |
//
|
sl@0
|
75 |
//
|
sl@0
|
76 |
// -----------------------------------------------------------------------------
|
sl@0
|
77 |
//
|
sl@0
|
78 |
CDrmAudioPlayerAdaptation::~CDrmAudioPlayerAdaptation()
|
sl@0
|
79 |
{
|
sl@0
|
80 |
|
sl@0
|
81 |
// Delete DMA play utility
|
sl@0
|
82 |
if( iMdaPlayUtil )
|
sl@0
|
83 |
iMdaPlayUtil->Close();
|
sl@0
|
84 |
delete iMdaPlayUtil;
|
sl@0
|
85 |
}
|
sl@0
|
86 |
|
sl@0
|
87 |
|
sl@0
|
88 |
// -----------------------------------------------------------------------------
|
sl@0
|
89 |
//
|
sl@0
|
90 |
//
|
sl@0
|
91 |
// -----------------------------------------------------------------------------
|
sl@0
|
92 |
//
|
sl@0
|
93 |
CDrmAudioPlayerAdaptation* CDrmAudioPlayerAdaptation::NewFilePlayerL( const TDesC& aFileName,
|
sl@0
|
94 |
MDrmAudioPlayerCallback& aCallback,
|
sl@0
|
95 |
TInt aPriority,
|
sl@0
|
96 |
TMdaPriorityPreference aPref)
|
sl@0
|
97 |
{
|
sl@0
|
98 |
|
sl@0
|
99 |
CDrmAudioPlayerAdaptation* self = new(ELeave) CDrmAudioPlayerAdaptation( aCallback );
|
sl@0
|
100 |
CleanupStack::PushL(self);
|
sl@0
|
101 |
self->ConstructNewFilePlayerL( aFileName, aPriority, aPref );
|
sl@0
|
102 |
CleanupStack::Pop(self);
|
sl@0
|
103 |
|
sl@0
|
104 |
return self;
|
sl@0
|
105 |
}
|
sl@0
|
106 |
|
sl@0
|
107 |
// -----------------------------------------------------------------------------
|
sl@0
|
108 |
//
|
sl@0
|
109 |
//
|
sl@0
|
110 |
// -----------------------------------------------------------------------------
|
sl@0
|
111 |
//
|
sl@0
|
112 |
void CDrmAudioPlayerAdaptation::ConstructNewFilePlayerL( const TDesC& aFileName,
|
sl@0
|
113 |
TInt aPriority,
|
sl@0
|
114 |
TMdaPriorityPreference aPref )
|
sl@0
|
115 |
{
|
sl@0
|
116 |
|
sl@0
|
117 |
if( iMdaPlayUtil )
|
sl@0
|
118 |
{
|
sl@0
|
119 |
delete iMdaPlayUtil;
|
sl@0
|
120 |
iMdaPlayUtil = NULL;
|
sl@0
|
121 |
}
|
sl@0
|
122 |
iMdaPlayUtil = CMdaAudioPlayerUtility::NewFilePlayerL( aFileName,
|
sl@0
|
123 |
*this,
|
sl@0
|
124 |
aPriority,
|
sl@0
|
125 |
aPref);
|
sl@0
|
126 |
}
|
sl@0
|
127 |
|
sl@0
|
128 |
|
sl@0
|
129 |
// -----------------------------------------------------------------------------
|
sl@0
|
130 |
//
|
sl@0
|
131 |
//
|
sl@0
|
132 |
// -----------------------------------------------------------------------------
|
sl@0
|
133 |
//
|
sl@0
|
134 |
CDrmAudioPlayerAdaptation* CDrmAudioPlayerAdaptation::NewDesPlayerL( const TDesC8& aData,
|
sl@0
|
135 |
MDrmAudioPlayerCallback& aCallback,
|
sl@0
|
136 |
TInt aPriority,
|
sl@0
|
137 |
TMdaPriorityPreference aPref)
|
sl@0
|
138 |
{
|
sl@0
|
139 |
|
sl@0
|
140 |
CDrmAudioPlayerAdaptation* self = new(ELeave) CDrmAudioPlayerAdaptation( aCallback );
|
sl@0
|
141 |
CleanupStack::PushL(self);
|
sl@0
|
142 |
self->ConstructNewDesPlayerL( aData, aPriority, aPref );
|
sl@0
|
143 |
CleanupStack::Pop(self);
|
sl@0
|
144 |
|
sl@0
|
145 |
return self;
|
sl@0
|
146 |
}
|
sl@0
|
147 |
|
sl@0
|
148 |
|
sl@0
|
149 |
// -----------------------------------------------------------------------------
|
sl@0
|
150 |
//
|
sl@0
|
151 |
//
|
sl@0
|
152 |
// -----------------------------------------------------------------------------
|
sl@0
|
153 |
//
|
sl@0
|
154 |
void CDrmAudioPlayerAdaptation::ConstructNewDesPlayerL( const TDesC8& aData,
|
sl@0
|
155 |
TInt aPriority,
|
sl@0
|
156 |
TMdaPriorityPreference aPref )
|
sl@0
|
157 |
{
|
sl@0
|
158 |
|
sl@0
|
159 |
if( iMdaPlayUtil )
|
sl@0
|
160 |
{
|
sl@0
|
161 |
delete iMdaPlayUtil;
|
sl@0
|
162 |
iMdaPlayUtil = NULL;
|
sl@0
|
163 |
}
|
sl@0
|
164 |
iMdaPlayUtil = CMdaAudioPlayerUtility::NewDesPlayerL( aData,
|
sl@0
|
165 |
*this,
|
sl@0
|
166 |
aPriority,
|
sl@0
|
167 |
aPref);
|
sl@0
|
168 |
}
|
sl@0
|
169 |
|
sl@0
|
170 |
|
sl@0
|
171 |
// -----------------------------------------------------------------------------
|
sl@0
|
172 |
//
|
sl@0
|
173 |
//
|
sl@0
|
174 |
// -----------------------------------------------------------------------------
|
sl@0
|
175 |
//
|
sl@0
|
176 |
CDrmAudioPlayerAdaptation* CDrmAudioPlayerAdaptation::NewDesPlayerReadOnlyL( const TDesC8& aData,
|
sl@0
|
177 |
MDrmAudioPlayerCallback& aCallback,
|
sl@0
|
178 |
TInt aPriority,
|
sl@0
|
179 |
TMdaPriorityPreference aPref)
|
sl@0
|
180 |
{
|
sl@0
|
181 |
|
sl@0
|
182 |
CDrmAudioPlayerAdaptation* self = new(ELeave) CDrmAudioPlayerAdaptation( aCallback );
|
sl@0
|
183 |
CleanupStack::PushL(self);
|
sl@0
|
184 |
self->ConstructNewDesPlayerReadOnlyL( aData, aPriority, aPref );
|
sl@0
|
185 |
CleanupStack::Pop(self);
|
sl@0
|
186 |
|
sl@0
|
187 |
return self;
|
sl@0
|
188 |
}
|
sl@0
|
189 |
|
sl@0
|
190 |
|
sl@0
|
191 |
// -----------------------------------------------------------------------------
|
sl@0
|
192 |
//
|
sl@0
|
193 |
//
|
sl@0
|
194 |
// -----------------------------------------------------------------------------
|
sl@0
|
195 |
//
|
sl@0
|
196 |
void CDrmAudioPlayerAdaptation::ConstructNewDesPlayerReadOnlyL( const TDesC8& aData,
|
sl@0
|
197 |
TInt aPriority,
|
sl@0
|
198 |
TMdaPriorityPreference aPref )
|
sl@0
|
199 |
{
|
sl@0
|
200 |
|
sl@0
|
201 |
delete this->iMdaPlayUtil;
|
sl@0
|
202 |
this->iMdaPlayUtil = NULL;
|
sl@0
|
203 |
this->iMdaPlayUtil = CMdaAudioPlayerUtility::NewDesPlayerReadOnlyL( aData,
|
sl@0
|
204 |
*this,
|
sl@0
|
205 |
aPriority,
|
sl@0
|
206 |
aPref);
|
sl@0
|
207 |
}
|
sl@0
|
208 |
|
sl@0
|
209 |
|
sl@0
|
210 |
// -----------------------------------------------------------------------------
|
sl@0
|
211 |
//
|
sl@0
|
212 |
//
|
sl@0
|
213 |
// -----------------------------------------------------------------------------
|
sl@0
|
214 |
//
|
sl@0
|
215 |
void CDrmAudioPlayerAdaptation::OpenFileL(const TDesC &aFileName)
|
sl@0
|
216 |
{
|
sl@0
|
217 |
iMdaPlayUtil->OpenFileL( aFileName );
|
sl@0
|
218 |
}
|
sl@0
|
219 |
|
sl@0
|
220 |
|
sl@0
|
221 |
// -----------------------------------------------------------------------------
|
sl@0
|
222 |
//
|
sl@0
|
223 |
//
|
sl@0
|
224 |
// -----------------------------------------------------------------------------
|
sl@0
|
225 |
//
|
sl@0
|
226 |
void CDrmAudioPlayerAdaptation::OpenFileL(const RFile& aFile)
|
sl@0
|
227 |
{
|
sl@0
|
228 |
iMdaPlayUtil->OpenFileL( aFile );
|
sl@0
|
229 |
}
|
sl@0
|
230 |
|
sl@0
|
231 |
|
sl@0
|
232 |
// -----------------------------------------------------------------------------
|
sl@0
|
233 |
//
|
sl@0
|
234 |
//
|
sl@0
|
235 |
// -----------------------------------------------------------------------------
|
sl@0
|
236 |
//
|
sl@0
|
237 |
void CDrmAudioPlayerAdaptation::OpenFileL(const TMMSource& aSource)
|
sl@0
|
238 |
{
|
sl@0
|
239 |
iMdaPlayUtil->OpenFileL( aSource );
|
sl@0
|
240 |
}
|
sl@0
|
241 |
|
sl@0
|
242 |
|
sl@0
|
243 |
// -----------------------------------------------------------------------------
|
sl@0
|
244 |
//
|
sl@0
|
245 |
//
|
sl@0
|
246 |
// -----------------------------------------------------------------------------
|
sl@0
|
247 |
//
|
sl@0
|
248 |
void CDrmAudioPlayerAdaptation::OpenDesL(const TDesC8& aDes)
|
sl@0
|
249 |
{
|
sl@0
|
250 |
iMdaPlayUtil->OpenDesL(aDes);
|
sl@0
|
251 |
}
|
sl@0
|
252 |
|
sl@0
|
253 |
|
sl@0
|
254 |
// -----------------------------------------------------------------------------
|
sl@0
|
255 |
//
|
sl@0
|
256 |
//
|
sl@0
|
257 |
// -----------------------------------------------------------------------------
|
sl@0
|
258 |
//
|
sl@0
|
259 |
void CDrmAudioPlayerAdaptation::OpenUrlL( const TDesC& aUrl, TInt aIapId, const TDesC8& aMimeType )
|
sl@0
|
260 |
{
|
sl@0
|
261 |
iMdaPlayUtil->OpenUrlL( aUrl, aIapId, aMimeType);
|
sl@0
|
262 |
}
|
sl@0
|
263 |
|
sl@0
|
264 |
|
sl@0
|
265 |
// -----------------------------------------------------------------------------
|
sl@0
|
266 |
//
|
sl@0
|
267 |
//
|
sl@0
|
268 |
// -----------------------------------------------------------------------------
|
sl@0
|
269 |
//
|
sl@0
|
270 |
void CDrmAudioPlayerAdaptation::Play()
|
sl@0
|
271 |
{
|
sl@0
|
272 |
iMdaPlayUtil->Play();
|
sl@0
|
273 |
}
|
sl@0
|
274 |
|
sl@0
|
275 |
|
sl@0
|
276 |
// -----------------------------------------------------------------------------
|
sl@0
|
277 |
//
|
sl@0
|
278 |
//
|
sl@0
|
279 |
// -----------------------------------------------------------------------------
|
sl@0
|
280 |
//
|
sl@0
|
281 |
void CDrmAudioPlayerAdaptation::Stop()
|
sl@0
|
282 |
{
|
sl@0
|
283 |
iMdaPlayUtil->Stop();
|
sl@0
|
284 |
}
|
sl@0
|
285 |
|
sl@0
|
286 |
// -----------------------------------------------------------------------------
|
sl@0
|
287 |
//
|
sl@0
|
288 |
//
|
sl@0
|
289 |
// -----------------------------------------------------------------------------
|
sl@0
|
290 |
//
|
sl@0
|
291 |
void CDrmAudioPlayerAdaptation::SetVolume( const TInt aVolume )
|
sl@0
|
292 |
{
|
sl@0
|
293 |
iMdaPlayUtil->SetVolume( aVolume );
|
sl@0
|
294 |
}
|
sl@0
|
295 |
|
sl@0
|
296 |
|
sl@0
|
297 |
// -----------------------------------------------------------------------------
|
sl@0
|
298 |
//
|
sl@0
|
299 |
//
|
sl@0
|
300 |
// -----------------------------------------------------------------------------
|
sl@0
|
301 |
//
|
sl@0
|
302 |
void CDrmAudioPlayerAdaptation::SetRepeats( TInt aRepeatNumberOfTimes,
|
sl@0
|
303 |
const TTimeIntervalMicroSeconds& aTrailingSilence )
|
sl@0
|
304 |
{
|
sl@0
|
305 |
iMdaPlayUtil->SetRepeats( aRepeatNumberOfTimes, aTrailingSilence );
|
sl@0
|
306 |
}
|
sl@0
|
307 |
|
sl@0
|
308 |
|
sl@0
|
309 |
// -----------------------------------------------------------------------------
|
sl@0
|
310 |
//
|
sl@0
|
311 |
//
|
sl@0
|
312 |
// -----------------------------------------------------------------------------
|
sl@0
|
313 |
//
|
sl@0
|
314 |
void CDrmAudioPlayerAdaptation::SetVolumeRamp( const TTimeIntervalMicroSeconds& aRampDuration )
|
sl@0
|
315 |
{
|
sl@0
|
316 |
iMdaPlayUtil->SetVolumeRamp( aRampDuration );
|
sl@0
|
317 |
}
|
sl@0
|
318 |
|
sl@0
|
319 |
|
sl@0
|
320 |
// -----------------------------------------------------------------------------
|
sl@0
|
321 |
//
|
sl@0
|
322 |
//
|
sl@0
|
323 |
// -----------------------------------------------------------------------------
|
sl@0
|
324 |
//
|
sl@0
|
325 |
const TTimeIntervalMicroSeconds& CDrmAudioPlayerAdaptation::Duration()
|
sl@0
|
326 |
{
|
sl@0
|
327 |
return iMdaPlayUtil->Duration();
|
sl@0
|
328 |
}
|
sl@0
|
329 |
|
sl@0
|
330 |
|
sl@0
|
331 |
// -----------------------------------------------------------------------------
|
sl@0
|
332 |
//
|
sl@0
|
333 |
//
|
sl@0
|
334 |
// -----------------------------------------------------------------------------
|
sl@0
|
335 |
//
|
sl@0
|
336 |
TInt CDrmAudioPlayerAdaptation::MaxVolume()
|
sl@0
|
337 |
{
|
sl@0
|
338 |
return iMdaPlayUtil->MaxVolume();
|
sl@0
|
339 |
}
|
sl@0
|
340 |
|
sl@0
|
341 |
|
sl@0
|
342 |
// API Additions since version 7.0
|
sl@0
|
343 |
|
sl@0
|
344 |
// -----------------------------------------------------------------------------
|
sl@0
|
345 |
//
|
sl@0
|
346 |
//
|
sl@0
|
347 |
// -----------------------------------------------------------------------------
|
sl@0
|
348 |
//
|
sl@0
|
349 |
TInt CDrmAudioPlayerAdaptation::Pause()
|
sl@0
|
350 |
{
|
sl@0
|
351 |
return iMdaPlayUtil->Pause();
|
sl@0
|
352 |
}
|
sl@0
|
353 |
|
sl@0
|
354 |
|
sl@0
|
355 |
// -----------------------------------------------------------------------------
|
sl@0
|
356 |
//
|
sl@0
|
357 |
//
|
sl@0
|
358 |
// -----------------------------------------------------------------------------
|
sl@0
|
359 |
//
|
sl@0
|
360 |
void CDrmAudioPlayerAdaptation::Close()
|
sl@0
|
361 |
{
|
sl@0
|
362 |
iMdaPlayUtil->Close();
|
sl@0
|
363 |
}
|
sl@0
|
364 |
|
sl@0
|
365 |
|
sl@0
|
366 |
// -----------------------------------------------------------------------------
|
sl@0
|
367 |
//
|
sl@0
|
368 |
//
|
sl@0
|
369 |
// -----------------------------------------------------------------------------
|
sl@0
|
370 |
//
|
sl@0
|
371 |
TInt CDrmAudioPlayerAdaptation::GetPosition(TTimeIntervalMicroSeconds& aPosition)
|
sl@0
|
372 |
{
|
sl@0
|
373 |
return iMdaPlayUtil->GetPosition(aPosition);
|
sl@0
|
374 |
}
|
sl@0
|
375 |
|
sl@0
|
376 |
|
sl@0
|
377 |
// -----------------------------------------------------------------------------
|
sl@0
|
378 |
//
|
sl@0
|
379 |
//
|
sl@0
|
380 |
// -----------------------------------------------------------------------------
|
sl@0
|
381 |
//
|
sl@0
|
382 |
void CDrmAudioPlayerAdaptation::SetPosition( const TTimeIntervalMicroSeconds& aPosition )
|
sl@0
|
383 |
{
|
sl@0
|
384 |
iMdaPlayUtil->SetPosition(aPosition);
|
sl@0
|
385 |
}
|
sl@0
|
386 |
|
sl@0
|
387 |
|
sl@0
|
388 |
// -----------------------------------------------------------------------------
|
sl@0
|
389 |
//
|
sl@0
|
390 |
//
|
sl@0
|
391 |
// -----------------------------------------------------------------------------
|
sl@0
|
392 |
//
|
sl@0
|
393 |
TInt CDrmAudioPlayerAdaptation::SetPriority( TInt aPriority, TMdaPriorityPreference aPref )
|
sl@0
|
394 |
{
|
sl@0
|
395 |
return iMdaPlayUtil->SetPriority( aPriority, aPref );
|
sl@0
|
396 |
}
|
sl@0
|
397 |
|
sl@0
|
398 |
|
sl@0
|
399 |
// -----------------------------------------------------------------------------
|
sl@0
|
400 |
//
|
sl@0
|
401 |
//
|
sl@0
|
402 |
// -----------------------------------------------------------------------------
|
sl@0
|
403 |
//
|
sl@0
|
404 |
TInt CDrmAudioPlayerAdaptation::GetVolume(TInt& aVolume)
|
sl@0
|
405 |
{
|
sl@0
|
406 |
return iMdaPlayUtil->GetVolume(aVolume);
|
sl@0
|
407 |
}
|
sl@0
|
408 |
|
sl@0
|
409 |
|
sl@0
|
410 |
// -----------------------------------------------------------------------------
|
sl@0
|
411 |
//
|
sl@0
|
412 |
//
|
sl@0
|
413 |
// -----------------------------------------------------------------------------
|
sl@0
|
414 |
//
|
sl@0
|
415 |
TInt CDrmAudioPlayerAdaptation::GetNumberOfMetaDataEntries( TInt& aNumEntries )
|
sl@0
|
416 |
{
|
sl@0
|
417 |
return iMdaPlayUtil->GetNumberOfMetaDataEntries( aNumEntries);
|
sl@0
|
418 |
}
|
sl@0
|
419 |
|
sl@0
|
420 |
|
sl@0
|
421 |
// -----------------------------------------------------------------------------
|
sl@0
|
422 |
//
|
sl@0
|
423 |
//
|
sl@0
|
424 |
// -----------------------------------------------------------------------------
|
sl@0
|
425 |
//
|
sl@0
|
426 |
CMMFMetaDataEntry* CDrmAudioPlayerAdaptation::GetMetaDataEntryL( const TInt aMetaDataIndex )
|
sl@0
|
427 |
{
|
sl@0
|
428 |
return iMdaPlayUtil->GetMetaDataEntryL(aMetaDataIndex);
|
sl@0
|
429 |
}
|
sl@0
|
430 |
|
sl@0
|
431 |
|
sl@0
|
432 |
// -----------------------------------------------------------------------------
|
sl@0
|
433 |
//
|
sl@0
|
434 |
//
|
sl@0
|
435 |
// -----------------------------------------------------------------------------
|
sl@0
|
436 |
//
|
sl@0
|
437 |
TInt CDrmAudioPlayerAdaptation::SetPlayWindow(const TTimeIntervalMicroSeconds& aStart,
|
sl@0
|
438 |
const TTimeIntervalMicroSeconds& aEnd)
|
sl@0
|
439 |
{
|
sl@0
|
440 |
return iMdaPlayUtil->SetPlayWindow(aStart,aEnd);
|
sl@0
|
441 |
}
|
sl@0
|
442 |
|
sl@0
|
443 |
|
sl@0
|
444 |
// -----------------------------------------------------------------------------
|
sl@0
|
445 |
//
|
sl@0
|
446 |
//
|
sl@0
|
447 |
// -----------------------------------------------------------------------------
|
sl@0
|
448 |
//
|
sl@0
|
449 |
TInt CDrmAudioPlayerAdaptation::ClearPlayWindow()
|
sl@0
|
450 |
{
|
sl@0
|
451 |
return iMdaPlayUtil->ClearPlayWindow();
|
sl@0
|
452 |
}
|
sl@0
|
453 |
|
sl@0
|
454 |
|
sl@0
|
455 |
// -----------------------------------------------------------------------------
|
sl@0
|
456 |
//
|
sl@0
|
457 |
//
|
sl@0
|
458 |
// -----------------------------------------------------------------------------
|
sl@0
|
459 |
//
|
sl@0
|
460 |
TInt CDrmAudioPlayerAdaptation::SetBalance( const TInt aBalance )
|
sl@0
|
461 |
{
|
sl@0
|
462 |
return iMdaPlayUtil->SetBalance(aBalance);
|
sl@0
|
463 |
}
|
sl@0
|
464 |
|
sl@0
|
465 |
|
sl@0
|
466 |
// -----------------------------------------------------------------------------
|
sl@0
|
467 |
//
|
sl@0
|
468 |
//
|
sl@0
|
469 |
// -----------------------------------------------------------------------------
|
sl@0
|
470 |
//
|
sl@0
|
471 |
TInt CDrmAudioPlayerAdaptation::GetBalance(TInt& aBalance)
|
sl@0
|
472 |
{
|
sl@0
|
473 |
return iMdaPlayUtil->GetBalance(aBalance);
|
sl@0
|
474 |
}
|
sl@0
|
475 |
|
sl@0
|
476 |
|
sl@0
|
477 |
// -----------------------------------------------------------------------------
|
sl@0
|
478 |
//
|
sl@0
|
479 |
//
|
sl@0
|
480 |
// -----------------------------------------------------------------------------
|
sl@0
|
481 |
//
|
sl@0
|
482 |
TInt CDrmAudioPlayerAdaptation::GetBitRate(TUint& aBitRate)
|
sl@0
|
483 |
{
|
sl@0
|
484 |
return iMdaPlayUtil->GetBitRate(aBitRate);
|
sl@0
|
485 |
}
|
sl@0
|
486 |
|
sl@0
|
487 |
|
sl@0
|
488 |
// -----------------------------------------------------------------------------
|
sl@0
|
489 |
//
|
sl@0
|
490 |
//
|
sl@0
|
491 |
// -----------------------------------------------------------------------------
|
sl@0
|
492 |
//
|
sl@0
|
493 |
void CDrmAudioPlayerAdaptation::RegisterForAudioLoadingNotification(MAudioLoadingObserver& aCallback)
|
sl@0
|
494 |
{
|
sl@0
|
495 |
iMdaPlayUtil->RegisterForAudioLoadingNotification(aCallback);
|
sl@0
|
496 |
}
|
sl@0
|
497 |
|
sl@0
|
498 |
|
sl@0
|
499 |
// -----------------------------------------------------------------------------
|
sl@0
|
500 |
//
|
sl@0
|
501 |
//
|
sl@0
|
502 |
// -----------------------------------------------------------------------------
|
sl@0
|
503 |
//
|
sl@0
|
504 |
void CDrmAudioPlayerAdaptation::GetAudioLoadingProgressL( TInt& aPercentageProgress )
|
sl@0
|
505 |
{
|
sl@0
|
506 |
iMdaPlayUtil->GetAudioLoadingProgressL(aPercentageProgress);
|
sl@0
|
507 |
}
|
sl@0
|
508 |
|
sl@0
|
509 |
|
sl@0
|
510 |
// -----------------------------------------------------------------------------
|
sl@0
|
511 |
//
|
sl@0
|
512 |
//
|
sl@0
|
513 |
// -----------------------------------------------------------------------------
|
sl@0
|
514 |
//
|
sl@0
|
515 |
const CMMFControllerImplementationInformation& CDrmAudioPlayerAdaptation::ControllerImplementationInformationL()
|
sl@0
|
516 |
{
|
sl@0
|
517 |
return iMdaPlayUtil->ControllerImplementationInformationL();
|
sl@0
|
518 |
}
|
sl@0
|
519 |
|
sl@0
|
520 |
|
sl@0
|
521 |
// -----------------------------------------------------------------------------
|
sl@0
|
522 |
//
|
sl@0
|
523 |
//
|
sl@0
|
524 |
// -----------------------------------------------------------------------------
|
sl@0
|
525 |
//
|
sl@0
|
526 |
TInt CDrmAudioPlayerAdaptation::CustomCommandSync(const TMMFMessageDestinationPckg& aDestination,
|
sl@0
|
527 |
TInt aFunction,
|
sl@0
|
528 |
const TDesC8& aDataTo1,
|
sl@0
|
529 |
const TDesC8& aDataTo2,
|
sl@0
|
530 |
TDes8& aDataFrom)
|
sl@0
|
531 |
{
|
sl@0
|
532 |
return iMdaPlayUtil->CustomCommandSync( aDestination,
|
sl@0
|
533 |
aFunction,
|
sl@0
|
534 |
aDataTo1,
|
sl@0
|
535 |
aDataTo2,
|
sl@0
|
536 |
aDataFrom );
|
sl@0
|
537 |
|
sl@0
|
538 |
}
|
sl@0
|
539 |
|
sl@0
|
540 |
|
sl@0
|
541 |
// -----------------------------------------------------------------------------
|
sl@0
|
542 |
//
|
sl@0
|
543 |
//
|
sl@0
|
544 |
// -----------------------------------------------------------------------------
|
sl@0
|
545 |
//
|
sl@0
|
546 |
TInt CDrmAudioPlayerAdaptation::CustomCommandSync( const TMMFMessageDestinationPckg& aDestination,
|
sl@0
|
547 |
TInt aFunction,
|
sl@0
|
548 |
const TDesC8& aDataTo1,
|
sl@0
|
549 |
const TDesC8& aDataTo2 )
|
sl@0
|
550 |
{
|
sl@0
|
551 |
return iMdaPlayUtil->CustomCommandSync( aDestination,
|
sl@0
|
552 |
aFunction,
|
sl@0
|
553 |
aDataTo1,
|
sl@0
|
554 |
aDataTo2 );
|
sl@0
|
555 |
|
sl@0
|
556 |
}
|
sl@0
|
557 |
|
sl@0
|
558 |
|
sl@0
|
559 |
// -----------------------------------------------------------------------------
|
sl@0
|
560 |
//
|
sl@0
|
561 |
//
|
sl@0
|
562 |
// -----------------------------------------------------------------------------
|
sl@0
|
563 |
//
|
sl@0
|
564 |
void CDrmAudioPlayerAdaptation::CustomCommandAsync(const TMMFMessageDestinationPckg& aDestination,
|
sl@0
|
565 |
TInt aFunction,
|
sl@0
|
566 |
const TDesC8& aDataTo1,
|
sl@0
|
567 |
const TDesC8& aDataTo2,
|
sl@0
|
568 |
TDes8& aDataFrom,
|
sl@0
|
569 |
TRequestStatus& aStatus)
|
sl@0
|
570 |
{
|
sl@0
|
571 |
iMdaPlayUtil->CustomCommandAsync( aDestination,
|
sl@0
|
572 |
aFunction,
|
sl@0
|
573 |
aDataTo1,
|
sl@0
|
574 |
aDataTo2,
|
sl@0
|
575 |
aDataFrom,
|
sl@0
|
576 |
aStatus);
|
sl@0
|
577 |
|
sl@0
|
578 |
}
|
sl@0
|
579 |
|
sl@0
|
580 |
|
sl@0
|
581 |
// -----------------------------------------------------------------------------
|
sl@0
|
582 |
//
|
sl@0
|
583 |
//
|
sl@0
|
584 |
// -----------------------------------------------------------------------------
|
sl@0
|
585 |
//
|
sl@0
|
586 |
void CDrmAudioPlayerAdaptation::CustomCommandAsync(const TMMFMessageDestinationPckg& aDestination,
|
sl@0
|
587 |
TInt aFunction,
|
sl@0
|
588 |
const TDesC8& aDataTo1,
|
sl@0
|
589 |
const TDesC8& aDataTo2,
|
sl@0
|
590 |
TRequestStatus& aStatus)
|
sl@0
|
591 |
{
|
sl@0
|
592 |
iMdaPlayUtil->CustomCommandAsync( aDestination,
|
sl@0
|
593 |
aFunction,
|
sl@0
|
594 |
aDataTo1,
|
sl@0
|
595 |
aDataTo2,
|
sl@0
|
596 |
aStatus);
|
sl@0
|
597 |
}
|
sl@0
|
598 |
|
sl@0
|
599 |
|
sl@0
|
600 |
// -----------------------------------------------------------------------------
|
sl@0
|
601 |
//
|
sl@0
|
602 |
//
|
sl@0
|
603 |
// -----------------------------------------------------------------------------
|
sl@0
|
604 |
//
|
sl@0
|
605 |
TBool CDrmAudioPlayerAdaptation::IsValidCustomCommandDestination(TUid aDestinationUid, TDesC8& aParam)
|
sl@0
|
606 |
{
|
sl@0
|
607 |
TBool retValue(ETrue);
|
sl@0
|
608 |
|
sl@0
|
609 |
if( aDestinationUid == KUidInterfaceMMFDRMControl)
|
sl@0
|
610 |
{
|
sl@0
|
611 |
retValue = EFalse;
|
sl@0
|
612 |
}
|
sl@0
|
613 |
else if( aDestinationUid == KUidCustomInterfaceBuilderImpl )
|
sl@0
|
614 |
{
|
sl@0
|
615 |
TRAPD(err, retValue = CheckCustomInterfaceBuilderImplL(aParam));
|
sl@0
|
616 |
if(err != KErrNone)
|
sl@0
|
617 |
{
|
sl@0
|
618 |
retValue = EFalse;
|
sl@0
|
619 |
}
|
sl@0
|
620 |
}
|
sl@0
|
621 |
return retValue;
|
sl@0
|
622 |
}
|
sl@0
|
623 |
TBool CDrmAudioPlayerAdaptation::CheckCustomInterfaceBuilderImplL(const TDesC8& aParam)
|
sl@0
|
624 |
{
|
sl@0
|
625 |
TBool retValue(ETrue);
|
sl@0
|
626 |
RDesReadStream stream(aParam);
|
sl@0
|
627 |
CleanupClosePushL(stream);
|
sl@0
|
628 |
TUid paramUid;
|
sl@0
|
629 |
paramUid.iUid = stream.ReadInt32L();
|
sl@0
|
630 |
CleanupStack::PopAndDestroy(&stream);
|
sl@0
|
631 |
if ( paramUid == KUidAudioOutput )
|
sl@0
|
632 |
{
|
sl@0
|
633 |
retValue = EFalse;
|
sl@0
|
634 |
}
|
sl@0
|
635 |
return retValue;
|
sl@0
|
636 |
}
|
sl@0
|
637 |
|
sl@0
|
638 |
|
sl@0
|
639 |
// -----------------------------------------------------------------------------
|
sl@0
|
640 |
//
|
sl@0
|
641 |
//
|
sl@0
|
642 |
// -----------------------------------------------------------------------------
|
sl@0
|
643 |
//
|
sl@0
|
644 |
void CDrmAudioPlayerAdaptation::MapcInitComplete( TInt aError, const TTimeIntervalMicroSeconds& aDuration )
|
sl@0
|
645 |
{
|
sl@0
|
646 |
iCallback->MdapcInitComplete( aError, aDuration );
|
sl@0
|
647 |
}
|
sl@0
|
648 |
|
sl@0
|
649 |
|
sl@0
|
650 |
// -----------------------------------------------------------------------------
|
sl@0
|
651 |
//
|
sl@0
|
652 |
//
|
sl@0
|
653 |
// -----------------------------------------------------------------------------
|
sl@0
|
654 |
//
|
sl@0
|
655 |
void CDrmAudioPlayerAdaptation::MapcPlayComplete( TInt aError )
|
sl@0
|
656 |
{
|
sl@0
|
657 |
iCallback->MdapcPlayComplete( aError );
|
sl@0
|
658 |
}
|
sl@0
|
659 |
|
sl@0
|
660 |
// End of File
|
sl@0
|
661 |
|