sl@0
|
1 |
|
sl@0
|
2 |
// MmfDevSoundCustomInterfaceSupport.h
|
sl@0
|
3 |
|
sl@0
|
4 |
// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
5 |
// All rights reserved.
|
sl@0
|
6 |
// This component and the accompanying materials are made available
|
sl@0
|
7 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
8 |
// which accompanies this distribution, and is available
|
sl@0
|
9 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Initial Contributors:
|
sl@0
|
12 |
// Nokia Corporation - initial contribution.
|
sl@0
|
13 |
//
|
sl@0
|
14 |
// Contributors:
|
sl@0
|
15 |
//
|
sl@0
|
16 |
// Description:
|
sl@0
|
17 |
//
|
sl@0
|
18 |
|
sl@0
|
19 |
/**
|
sl@0
|
20 |
@publishedPartner
|
sl@0
|
21 |
@released
|
sl@0
|
22 |
@file
|
sl@0
|
23 |
*/
|
sl@0
|
24 |
|
sl@0
|
25 |
#ifndef MMFDEVSOUNDCUSTOMINTERFACESUPPORTCLASSES_H
|
sl@0
|
26 |
#define MMFDEVSOUNDCUSTOMINTERFACESUPPORTCLASSES_H
|
sl@0
|
27 |
|
sl@0
|
28 |
const TUid KMmfUidDevSoundAudioResourceCustomInterface = {0x101FD9F3};
|
sl@0
|
29 |
const TUid KMmfUidDevSoundEmptyBuffersCustomInterface = {0x1027379c};
|
sl@0
|
30 |
const TUid KMmfUidDevSoundCancelInitializeCustomInterface = {0x102834D3};
|
sl@0
|
31 |
const TUid KMmfUidDevSoundAudioClientThreadInfoCustomInterface = {0x102834A7};
|
sl@0
|
32 |
|
sl@0
|
33 |
|
sl@0
|
34 |
/**
|
sl@0
|
35 |
Custom Interface class providing support for emptying the play buffers.
|
sl@0
|
36 |
*/
|
sl@0
|
37 |
class MMMFDevSoundEmptyBuffers
|
sl@0
|
38 |
{
|
sl@0
|
39 |
public:
|
sl@0
|
40 |
|
sl@0
|
41 |
/**
|
sl@0
|
42 |
Empties the play buffers below DevSound without causing the codec to be deleted.
|
sl@0
|
43 |
|
sl@0
|
44 |
@return An error code indicating if the function call was successful. KErrNone on success, KErrNotSupported
|
sl@0
|
45 |
if called in record mode, otherwise another of the system-wide error codes.
|
sl@0
|
46 |
*/
|
sl@0
|
47 |
virtual TInt EmptyBuffers() = 0;
|
sl@0
|
48 |
};
|
sl@0
|
49 |
|
sl@0
|
50 |
/**
|
sl@0
|
51 |
Custom Interface class providing support for canceling initialization.
|
sl@0
|
52 |
*/
|
sl@0
|
53 |
class MMMFDevSoundCancelInitialize
|
sl@0
|
54 |
{
|
sl@0
|
55 |
public:
|
sl@0
|
56 |
|
sl@0
|
57 |
/** Cancels the initialization process of a CMMFDevSound object
|
sl@0
|
58 |
|
sl@0
|
59 |
@return An error code indicating if the function call was successful.
|
sl@0
|
60 |
KErrNone on success,
|
sl@0
|
61 |
KerrNotReady if this is called before InitializeL() call or after
|
sl@0
|
62 |
the object has been initialized,
|
sl@0
|
63 |
*/
|
sl@0
|
64 |
virtual TInt CancelInitialize() = 0;
|
sl@0
|
65 |
};
|
sl@0
|
66 |
|
sl@0
|
67 |
/**
|
sl@0
|
68 |
Custom Interface class providing support for setting the client thread info for devsound.
|
sl@0
|
69 |
*/
|
sl@0
|
70 |
class MAudioClientThreadInfo
|
sl@0
|
71 |
{
|
sl@0
|
72 |
public:
|
sl@0
|
73 |
/**
|
sl@0
|
74 |
Set client thread info for devsound if plugin implementation requires this info
|
sl@0
|
75 |
|
sl@0
|
76 |
@param aTid the required thread Id
|
sl@0
|
77 |
@return An error code indicating if the function call was successful.
|
sl@0
|
78 |
|
sl@0
|
79 |
@capability MultimediaDD
|
sl@0
|
80 |
A process requires MultimediaDD capability to make this call.
|
sl@0
|
81 |
*/
|
sl@0
|
82 |
virtual TInt SetClientThreadInfo(TThreadId aTid) = 0;
|
sl@0
|
83 |
};
|
sl@0
|
84 |
|
sl@0
|
85 |
/*****************************************************************************/
|
sl@0
|
86 |
/**
|
sl@0
|
87 |
UID associated with the Custom interface MMMFDevSoundGetTimePlayed
|
sl@0
|
88 |
*/
|
sl@0
|
89 |
const TUid KMmfUidDevSoundTimePlayedCustomInterface = {0x10285CE4};
|
sl@0
|
90 |
|
sl@0
|
91 |
/**
|
sl@0
|
92 |
This class provides an interface to querying current play time from DevSound.
|
sl@0
|
93 |
*/
|
sl@0
|
94 |
class MMMFDevSoundTimePlayed
|
sl@0
|
95 |
{
|
sl@0
|
96 |
public:
|
sl@0
|
97 |
/** Retrieves the current play time from the audio renderer.
|
sl@0
|
98 |
@param aTime
|
sl@0
|
99 |
A reference to TTimeIntervalMicroSeconds object which will be filled with the current play time by this function.
|
sl@0
|
100 |
@return An error code indicating if the function call was successful.
|
sl@0
|
101 |
KErrNone on success,
|
sl@0
|
102 |
KErrNotSupported if the underlying HwDevice does not support this custominterface
|
sl@0
|
103 |
*/
|
sl@0
|
104 |
virtual TInt GetTimePlayed(TTimeIntervalMicroSeconds& aTime) = 0;
|
sl@0
|
105 |
};
|
sl@0
|
106 |
|
sl@0
|
107 |
/*****************************************************************************/
|
sl@0
|
108 |
/**
|
sl@0
|
109 |
UID associated with the Custom interface MMMFDevSoundQueryIgnoresUnderflow
|
sl@0
|
110 |
*/
|
sl@0
|
111 |
const TUid KMmfUidDevSoundQueryIgnoresUnderflowCustomInterface = {0x10285E7B};
|
sl@0
|
112 |
|
sl@0
|
113 |
/**
|
sl@0
|
114 |
This class provides an interface for querying DevSound whether it ignores the underflow errors from the sound driver.
|
sl@0
|
115 |
*/
|
sl@0
|
116 |
class MMMFDevSoundQueryIgnoresUnderflow
|
sl@0
|
117 |
{
|
sl@0
|
118 |
public:
|
sl@0
|
119 |
/** Queries the devsound whether it ignores the underflow errors from the sound driver
|
sl@0
|
120 |
@return ETrue if the devsound ignores all the underflow errors from the sound driver except for the last buffer. That means DevSound
|
sl@0
|
121 |
propagates the underflow error from sound driver to its clients only when client sets the last buffer flag on the CMMFBuffer type buffer.
|
sl@0
|
122 |
EFalse if devsound propagates the underflow errors from the sound driver in all the cases
|
sl@0
|
123 |
*/
|
sl@0
|
124 |
virtual TBool QueryIgnoresUnderflow() = 0;
|
sl@0
|
125 |
};
|
sl@0
|
126 |
|
sl@0
|
127 |
|
sl@0
|
128 |
const TUid KMmfUidDevSoundTruePauseCustomInterface = {0x1028643E};
|
sl@0
|
129 |
|
sl@0
|
130 |
/**
|
sl@0
|
131 |
This class provides an interface to be able to Resume from DevSound.
|
sl@0
|
132 |
@publishedPartner
|
sl@0
|
133 |
@released
|
sl@0
|
134 |
*/
|
sl@0
|
135 |
class MMMFDevSoundTruePause
|
sl@0
|
136 |
{
|
sl@0
|
137 |
public:
|
sl@0
|
138 |
/** Queries the devsound whether it supports True Pause or not
|
sl@0
|
139 |
This call is only valid when DevSound is initialized
|
sl@0
|
140 |
@return ETrue if the current DevSound configuration does support this feature
|
sl@0
|
141 |
EFalse otherwise
|
sl@0
|
142 |
*/
|
sl@0
|
143 |
virtual TBool IsResumeSupported() = 0;
|
sl@0
|
144 |
|
sl@0
|
145 |
/** Resume the playback, recording or tone playing that was paused
|
sl@0
|
146 |
@return An error code indicating if the function call was successful.
|
sl@0
|
147 |
KErrNone on success,
|
sl@0
|
148 |
KErrNotReady when is DevSound is not in pause
|
sl@0
|
149 |
KErrNotSupported if the DevSound configuration does support this feature
|
sl@0
|
150 |
*/
|
sl@0
|
151 |
virtual TInt Resume() = 0;
|
sl@0
|
152 |
};
|
sl@0
|
153 |
|
sl@0
|
154 |
|
sl@0
|
155 |
#endif // MMFDEVSOUNDCUSTOMINTERFACESUPPORTCLASSES_H
|