# HG changeset patch # User markw # Date 1290079057 0 # Node ID a3d769bd1939e08504707523f96517d0a98a9fb7 # Parent 40dccd6dd558215a26c93d82c7fbadd6406b64df# Parent bbbba97ac26086ce5dfddfc6a74cb173c00626dd Merge to tip. diff -r bbbba97ac260 -r a3d769bd1939 breakdeps/MediaClientAudio.mmp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/breakdeps/MediaClientAudio.mmp Thu Nov 18 11:17:37 2010 +0000 @@ -0,0 +1,61 @@ +// Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies). +// All rights reserved. +// This component and the accompanying materials are made available +// under the terms of "Eclipse Public License v1.0" +// which accompanies this distribution, and is available +// at the URL "http://www.eclipse.org/legal/epl-v10.html". +// +// Initial Contributors: +// Nokia Corporation - initial contribution. +// +// Contributors: +// +// Description: +// mediaclientaudio.dll Media Server audio compatibility library +// +// + +/** + @file +*/ + +#define KSharedLibraryUidDefine 268435597 +#define KUidMediaServerClientAudioDllUnicodeDefine 268450194 + +target stem_mediaclientaudio.dll +NOEXPORTLIBRARY +CAPABILITY ALL -TCB +targettype DLL +UID KSharedLibraryUidDefine KUidMediaServerClientAudioDllUnicodeDefine +VENDORID 0x70000001 +UNPAGED + +USERINCLUDE . +OS_LAYER_SYSTEMINCLUDE_SYMBIAN + + +// Real source /sf/os/mm/mmlibs/mmfw/src/Client/Audio/mmfclienttoneplayer.cpp +SOURCEPATH . +source mmfclienttoneplayer.cpp +source mmfclientaudioplayer.cpp + +library euser.lib +library ecom.lib + +#ifdef EABI +DEFFILE MediaClientAudio.def +#endif + +#ifdef WINSCW +DEFFILE MEDIACLIENTAUDIO.DEF +#endif + +nostrictdef + +start wins + baseaddress 0x4F2A0000 +end + + + +SMPSAFE diff -r bbbba97ac260 -r a3d769bd1939 breakdeps/mmfclientaudioplayer.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/breakdeps/mmfclientaudioplayer.cpp Thu Nov 18 11:17:37 2010 +0000 @@ -0,0 +1,2221 @@ +// Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies). +// All rights reserved. +// This component and the accompanying materials are made available +// under the terms of "Eclipse Public License v1.0" +// which accompanies this distribution, and is available +// at the URL "http://www.eclipse.org/legal/epl-v10.html". +// +// Initial Contributors: +// Nokia Corporation - initial contribution. +// +// Contributors: +// +// Description: +// + +#include +#include +#include +#include "mmfclientaudioplayer.h" +//#include "mmfclientutility.h" +#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS +//#include +//#include +#endif + +using namespace ContentAccess; + +// declared in the recorder module +void Panic(TInt aPanicCode); + +void TMMFMessage::Complete(TInt aReason) + { + iMessage.Complete(aReason); + iAmCompleted = ETrue; + } + +/** +Constructs and initialises a new instance of the audio player utility. + +The function leaves if the audio player utility object cannot be created. + +No callback notification is made upon completion of NewL(). + +@param aCallback + The audio player observer interface. +@param aPriority + The Priority Value - this client's relative priority. This is a value between EMdaPriorityMin and + EMdaPriorityMax and represents a relative priority. A higher value indicates a more important request. +@param aPref + The Priority Preference - an additional audio policy parameter. The suggested default is + EMdaPriorityPreferenceNone. Further values are given by TMdaPriorityPreference, and additional + values may be supported by given phones and/or platforms, but should not be depended upon by + portable code. + +@return A pointer to the new audio player utility object. + +Note: The Priority Value and Priority Preference are used primarily when deciding what to do when +several audio clients attempt to play or record simultaneously. In addition to the Priority Value and Preference, +the adaptation may consider other parameters such as the SecureId and Capabilities of the client process. +Whatever, the decision as to what to do in such situations is up to the audio adaptation, and may +vary between different phones. Portable applications are advised not to assume any specific behaviour. +*/ +EXPORT_C CMdaAudioPlayerUtility* CMdaAudioPlayerUtility::NewL(MMdaAudioPlayerCallback& aCallback, + TInt aPriority, + TInt aPref) + { + CMdaAudioPlayerUtility* self = new(ELeave) CMdaAudioPlayerUtility(); + CleanupStack::PushL(self); + self->iProperties = CMMFMdaAudioPlayerUtility::NewL(aCallback, aPriority, aPref); + CleanupStack::Pop(self); + return self; + } + +/** +Constructs and initialises a new instance of the audio player utility for playing sampled audio data +from a file. The audio data must be in a supported format (e.g. WAV and AU). + +The function leaves if the audio player utility object cannot be created. + +When initialisation of the audio player utility is complete, successfully or otherwise, the callback +function MMdaAudioPlayerCallback::MapcInitComplete() is called. + +@param aFileName + The full path name of the file containing the audio data. +@param aCallback + The audio player observer interface. +@param aPriority + The Priority Value - this client's relative priority. This is a value between EMdaPriorityMin and + EMdaPriorityMax and represents a relative priority. A higher value indicates a more important request. +@param aPref + The Priority Preference - an additional audio policy parameter. The suggested default is + EMdaPriorityPreferenceNone. Further values are given by TMdaPriorityPreference, and additional + values may be supported by given phones and/or platforms, but should not be depended upon by + portable code. +@param aServer + Not used in 7.0s. This parameter is provided for binary compatibility with previous versions. + +@return A pointer to the new audio player utility object. + +Note: The Priority Value and Priority Preference are used primarily when deciding what to do when +several audio clients attempt to play or record simultaneously. In addition to the Priority Value and Preference, +the adaptation may consider other parameters such as the SecureId and Capabilities of the client process. +Whatever, the decision as to what to do in such situations is up to the audio adaptation, and may +vary between different phones. Portable applications are advised not to assume any specific behaviour. +*/ +EXPORT_C CMdaAudioPlayerUtility* CMdaAudioPlayerUtility::NewFilePlayerL(const TDesC& aFileName, + MMdaAudioPlayerCallback& aCallback, + TInt aPriority, + TInt aPref, + CMdaServer* /*aServer*/) + { + CMdaAudioPlayerUtility* self = new(ELeave) CMdaAudioPlayerUtility(); + CleanupStack::PushL(self); + self->iProperties = CMMFMdaAudioPlayerUtility::NewFilePlayerL(aFileName, aCallback, aPriority, aPref); + CleanupStack::Pop(self); + return self; + } + +/** +Constructs and initialises a new instance of the audio player utility for playing sampled audio data +from a descriptor. + +The audio data must be in a supported format (e.g. WAV and AU). + +The function leaves if the audio player utility object cannot be created. When initialisation of the +audio player utility is complete, successfully or otherwise, the callback function +MMdaAudioPlayerCallback::MapcInitComplete() is called. + +@param aData + A descriptor containing the audio data. This descriptor must remain in existence for the + lifetime of this audio player utility object. +@param aCallback + The audio player observer interface. +@param aPriority + The Priority Value - this client's relative priority. This is a value between EMdaPriorityMin and + EMdaPriorityMax and represents a relative priority. A higher value indicates a more important request. +@param aPref + The Priority Preference - an additional audio policy parameter. The suggested default is + EMdaPriorityPreferenceNone. Further values are given by TMdaPriorityPreference, and additional + values may be supported by given phones and/or platforms, but should not be depended upon by + portable code. +@param aServer + Not used in 7.0s. This parameter is provided for binary compatibility with previous versions. + +@return A pointer to the new audio player utility object. + +Note: The Priority Value and Priority Preference are used primarily when deciding what to do when +several audio clients attempt to play or record simultaneously. In addition to the Priority Value and Preference, +the adaptation may consider other parameters such as the SecureId and Capabilities of the client process. +Whatever, the decision as to what to do in such situations is up to the audio adaptation, and may +vary between different phones. Portable applications are advised not to assume any specific behaviour. +*/ +EXPORT_C CMdaAudioPlayerUtility* CMdaAudioPlayerUtility::NewDesPlayerL(const TDesC8& aData, MMdaAudioPlayerCallback& aCallback, TInt aPriority, TInt aPref, CMdaServer* /*aServer*/) + { + CMdaAudioPlayerUtility* self = new(ELeave) CMdaAudioPlayerUtility(); + CleanupStack::PushL(self); + self->iProperties = CMMFMdaAudioPlayerUtility::NewDesPlayerL(aData, aCallback, aPriority, aPref); + CleanupStack::Pop(self); + return self; + } + +/** +Constructs and initialises a new instance of the audio player utility for playing sampled audio data +from a read only descriptor. + +The audio data must be in a supported format (e.g. WAV and AU). + +The function leaves if the audio player utility object cannot be created. When initialisation of +the audio player utility is complete, successfully or otherwise, the callback function +MMdaAudioPlayerCallback::MapcInitComplete() is called. + +@param aData + A read only descriptor containing the audio data. This descriptor must remain in existence + for the lifetime of this audio player utility object. +@param aCallback + The audio player observer interface. +@param aPriority + The Priority Value - this client's relative priority. This is a value between EMdaPriorityMin and + EMdaPriorityMax and represents a relative priority. A higher value indicates a more important request. +@param aPref + The Priority Preference - an additional audio policy parameter. The suggested default is + EMdaPriorityPreferenceNone. Further values are given by TMdaPriorityPreference, and additional + values may be supported by given phones and/or platforms, but should not be depended upon by + portable code. +@param aServer + Not used in 7.0s. This parameter is provided for binary compatibility with previous versions. + +@return A pointer to a new audio player utility. + +Note: The Priority Value and Priority Preference are used primarily when deciding what to do when +several audio clients attempt to play or record simultaneously. In addition to the Priority Value and Preference, +the adaptation may consider other parameters such as the SecureId and Capabilities of the client process. +Whatever, the decision as to what to do in such situations is up to the audio adaptation, and may +vary between different phones. Portable applications are advised not to assume any specific behaviour. +*/ +EXPORT_C CMdaAudioPlayerUtility* CMdaAudioPlayerUtility::NewDesPlayerReadOnlyL(const TDesC8& aData, MMdaAudioPlayerCallback& aCallback, TInt aPriority, TInt aPref, CMdaServer* /*aServer*/) + { + CMdaAudioPlayerUtility* self = new(ELeave) CMdaAudioPlayerUtility(); + CleanupStack::PushL(self); + self->iProperties = CMMFMdaAudioPlayerUtility::NewDesPlayerReadOnlyL(aData, aCallback, aPriority, aPref); + CleanupStack::Pop(self); + return self; + } + +CMdaAudioPlayerUtility::CMdaAudioPlayerUtility() + { + } + +/** +Destructor. + +Frees all resources owned by the object prior to its destruction. +*/ +CMdaAudioPlayerUtility::~CMdaAudioPlayerUtility() + { + delete iProperties; + } + +/** +Ensures that any subsequent calls to OpenXYZ() will create controllers that +share a heap. + +The default behaviour is that for each player utility a controller with its own heap +is created. Each heap uses a chunk, so using this function avoids situations where +the number of chunks per process is limited. +The default behaviour is generally to be preferred, and should give lower overall +memory usage. However, if many controllers are to be created for a particular thread, +then this function should be used to prevent running out of heaps or chunks. + +@since 9.1 +*/ +EXPORT_C void CMdaAudioPlayerUtility::UseSharedHeap() + { + ASSERT(iProperties); + iProperties->UseSharedHeap(); + } + +// 5.0 functions + +/** +Begins playback of audio sample data at the current playback position using the current volume, +gain and priority settings. + +When playing of the audio sample is complete, successfully or +otherwise, the callback function +MMdaAudioPlayerCallback::MapcPlayComplete() is +called. + +If this function is called whilst already playing then +MMdaAudioPlayerCallback::MapcPlayComplete will return with the +error code KErrNotReady. + +@since 5.0 +*/ +void CMdaAudioPlayerUtility::Play() + { + ASSERT(iProperties); + iProperties->Play(); + } + +/** +Stops playback of the audio sample as soon as possible. + +If the audio sample is playing, playback is stopped as soon as +possible. If playback is already complete, nothing further happens as +a result of calling this function. The callback function +MMdaAudioPlayerCallback::MapcPlayComplete() is not +called. + +@since 5.0 +*/ +void CMdaAudioPlayerUtility::Stop() + { + ASSERT(iProperties); + iProperties->Stop(); + } + + +/** +Changes the current playback volume to a specified value. + +The volume can be changed before or during playback and is effective +immediately. The volume can be set to any value between zero (mute) and +the maximum permissible volume (determined using MaxVolume()). + +@param aVolume + The volume setting. This can be any value from zero to + the value returned by a call to + CMdaAudioPlayerUtility::MaxVolume(). + Setting a zero value mutes the sound. Setting the maximum + value results in the loudest possible sound. Values less + than zero would be set to zero and the values greater than + the maximum permitted volume would be set to the maximum volume. +@return An error code indicating if the function call was successful. KErrNone on success, + otherwise another of the system-wide error codes. +@panic EMMFMediaClientBadArgument is raised when the audio player utility is not initialised. + +@since 5.0 +*/ +TInt CMdaAudioPlayerUtility::SetVolume(TInt aVolume) + { + ASSERT(iProperties); + return iProperties->SetVolume(aVolume); + } + +/** +Sets the number of times the audio sample is to be repeated during the +playback operation. + +A period of silence can follow each playing of the sample. The audio +sample can be repeated indefinitely. + +@param aRepeatNumberOfTimes + The number of times the audio sample, together with + the trailing silence, is to be repeated. If this is + set to KMdaRepeatForever, then the audio + sample, together with the trailing silence, is + repeated indefinitely or until Stop() is + called. If this is set to zero, then the audio sample + is not repeated. +@param aTrailingSilence + The time interval of the trailing silence in microseconds. + +@since 5.0 +*/ +void CMdaAudioPlayerUtility::SetRepeats(TInt aRepeatNumberOfTimes, const TTimeIntervalMicroSeconds& aTrailingSilence) + { + ASSERT(iProperties); + iProperties->SetRepeats(aRepeatNumberOfTimes, aTrailingSilence); + } + +/** +Defines the period over which the volume level is to rise smoothly +from nothing to the normal volume level. + +@param aRampDuration + The period over which the volume is to rise. A zero + value causes the audio sample to be played at the + normal level for the full duration of the playback. A + value which is longer than the duration of the audio + sample means that the sample never reaches its normal + volume level. + +@since 5.0 +*/ +void CMdaAudioPlayerUtility::SetVolumeRamp(const TTimeIntervalMicroSeconds& aRampDuration) + { + ASSERT(iProperties); + iProperties->SetVolumeRamp(aRampDuration); + } + +/** +Returns the duration of the audio sample in microseconds. + +@return The duration of the sample in microseconds. + +@since 5.0 +*/ +const TTimeIntervalMicroSeconds& CMdaAudioPlayerUtility::Duration() + { + ASSERT(iProperties); + return iProperties->Duration(); + } + +/** +Returns the duration of the audio sample in microseconds, and the duration state. + +@param aDuration + The duration of the sample in microseconds. +@return The duration state + +@since 9.1 +*/ +EXPORT_C TMMFDurationInfo CMdaAudioPlayerUtility::Duration(TTimeIntervalMicroSeconds& aDuration) +{ + ASSERT(iProperties); + return iProperties->Duration(aDuration); +} + +/** +Returns an integer representing the maximum volume. + +This is the maximum value which can be passed to +CMdaAudioPlayerUtility::SetVolume(). This value is platform +independent, but is always greater than or equal to one. + +@return The maximum volume setting. +@panic EMMFMediaClientPanicServerCommunicationProblem is raised when the audio player utility is not initialised. + +@since 5.0 +*/ +TInt CMdaAudioPlayerUtility::MaxVolume() + { + ASSERT(iProperties); + return iProperties->MaxVolume(); + } + +// 7.0s functions + +/** +Opens an audio clip from a file. + +The audio data must be in a supported format (for example, WAV or AU). + +This function leaves with KErrNotReady if there is a previous open statement awaiting notification of completion. + +@param aFileName + The file to open. +@leave KErrNotReady + If a previous open statement is awaiting notification of completion. + opening the file +@since 7.0s +*/ +EXPORT_C void CMdaAudioPlayerUtility::OpenFileL(const TDesC& aFileName) + { + ASSERT(iProperties); + iProperties->OpenFileL(aFileName); + } + +/** +Opens an audio clip from a file. + +The audio data must be in a supported format (for example, WAV or AU). + +This function leaves with KErrNotReady if there is a previous open statement awaiting notification of completion. + +Note: it is generally advisable that the RFile is shared through the call RFs::ShareProtected(). +This allows the adaptation to pass it to another process, if that is required. This is particularly +true of playing DRM encrypted files. + +@param aFile + The open shared session file handle to use +@leave KErrBadHandle + If the file handle is not shared through the call RFs::ShareProtected(), and the adaptation needs it to be. +@leave KErrNotReady + If a previous open statement is awaiting notification of completion. + opening the file +*/ +EXPORT_C void CMdaAudioPlayerUtility::OpenFileL(const RFile& aFile) + { + ASSERT(iProperties); + RFile& file = const_cast(aFile); + //TMMFileHandleSource tfs(file, KDefaultContentObject, EPlay); + TMMFileHandleSource * tfs; + iProperties->OpenFileL(*tfs); + } + +/** +Opens an audio clip from a file. + +The audio data must be in a supported format (for example, WAV or AU). + +This function leaves with KErrNotReady if there is a previous open statement awaiting notification of completion. + +@param aSource + The file to open or an open file handle to use +@leave KErrNotReady + If a previous open statement is awaiting notification of completion. + opening the file +*/ +EXPORT_C void CMdaAudioPlayerUtility::OpenFileL(const TMMSource& aSource) + { + ASSERT(iProperties); + iProperties->OpenFileL(aSource); + } + +/** +Opens an audio clip from a descriptor. + +The audio data must be in a supported format (for example, WAV or AU). + +@param aDescriptor + A descriptor containing the audio clip. +@leave KErrInUse + If a previous open statement is awaiting notification of completion. + +@since 7.0s +*/ +EXPORT_C void CMdaAudioPlayerUtility::OpenDesL(const TDesC8& aDescriptor) + { + ASSERT(iProperties); + iProperties->OpenDesL(aDescriptor); + } + +/** +Opens an audio clip from a URL. + +The audio data must be in a supported format (for example, WAV or AU). + +@param aUrl + The URL to open. +@param aIapId + Internet access point(IAP) ID to use. KUseDefaultIap selects the default IAP. +@param aMimeType + MIME type of the URL source. + +@leave KErrInUse + If a previous open statement is awaiting notification of completion. + +@since 7.0s +*/ +EXPORT_C void CMdaAudioPlayerUtility::OpenUrlL(const TDesC& aUrl, const TInt aIapId /*=KUseDefaultIap*/, const TDesC8& aMimeType /*=KNullDesC8*/) + { + ASSERT(iProperties); + iProperties->OpenUrlL(aUrl, aIapId, aMimeType); + } + +/** +Pauses the playback of the audio clip. + +@return An error code indicating if the function call was successful. KErrNone on success, otherwise + another of the system-wide error codes. + +@since 7.0s +*/ +EXPORT_C TInt CMdaAudioPlayerUtility::Pause() + { + ASSERT(iProperties); + return iProperties->Pause(); + } + +/** +Closes the current audio clip (allowing another clip to be opened). + +@since 7.0s +*/ +EXPORT_C void CMdaAudioPlayerUtility::Close() + { + ASSERT(iProperties); + iProperties->Close(); + } + +/** +Returns the current playback position in microseconds from the start of the clip. + +@param aPosition + The current time position in microseconds from the start of the clip to the current + play position. + +@return An error code indicating if the function call was successful. KErrNone on success, otherwise + another of the system-wide error codes. + +@since 7.0s +*/ +EXPORT_C TInt CMdaAudioPlayerUtility::GetPosition(TTimeIntervalMicroSeconds& aPosition) + { + ASSERT(iProperties); + return iProperties->GetPosition(aPosition); + } + +/** +Sets the current playback position in microseconds from the start of the clip. + +@param aPosition + The position to move to in microseconds from the start of the clip. + +@since 7.0s +*/ +EXPORT_C void CMdaAudioPlayerUtility::SetPosition(const TTimeIntervalMicroSeconds& aPosition) + { + ASSERT(iProperties); + iProperties->SetPosition(aPosition); + } + +/** +Sets the priority for playback. This is used to arbitrate between multiple +objects trying to access a single sound device. + +@param aPriority + The Priority Value. +@param aPref + The Priority Preference. + +@return An error code indicating if the function call was successful. KErrNone on success, otherwise + another of the system-wide error codes. + +@since 7.0s + +@see CMdaAudioPlayerUtility::NewL() + +*/ +EXPORT_C TInt CMdaAudioPlayerUtility::SetPriority(TInt aPriority, TInt aPref) + { + ASSERT(iProperties); + return iProperties->SetPriority(aPriority, aPref); + } + +/** +Returns the current playback volume. + +@param aVolume + A value between 0 and the maximum volume settings returned by MaxVolume(). + +@return An error code indicating if the function call was successful. KErrNone on success, otherwise + another of the system-wide error codes. + +@since 7.0s +*/ +EXPORT_C TInt CMdaAudioPlayerUtility::GetVolume(TInt& aVolume) + { + ASSERT(iProperties); + return iProperties->GetVolume(aVolume); + } + +/** +Returns the number of meta data entries in the current audio clip. + +@param aNumEntries + The number of meta data entries in the header of the current clip. + +@return An error code indicating if the function call was successful. KErrNone on success, otherwise + another of the system-wide error codes. + +@since 7.0s +*/ +EXPORT_C TInt CMdaAudioPlayerUtility::GetNumberOfMetaDataEntries(TInt& aNumEntries) + { + ASSERT(iProperties); + return iProperties->GetNumberOfMetaDataEntries(aNumEntries); + } + +/** +Returns the requested meta data entry. + +@param aMetaDataIndex + The index number of the meta data to retrieve. + +@return The requested meta data entry. +@leave KErrNotFound + The meta data entry does not exist. +@leave KErrNotImplemented + The controller does not support meta data information for this format. + +@since 7.0s +*/ +EXPORT_C CMMFMetaDataEntry* CMdaAudioPlayerUtility::GetMetaDataEntryL(TInt aMetaDataIndex) + { + ASSERT(iProperties); + return iProperties->GetMetaDataEntryL(aMetaDataIndex); + } + +/** +Defines a window on the audio sample data. + +The window is defined in terms of a start and end position. +When the current playback position reaches the window end position, or Stop() is called, the +current playback position is set to the window start position and playback stops. + +The current playback position is not affected by a call to SetPlayWindow() unless it is outside +the new playback window, in which case it is set to the window start or end position depending +on which one is closer. + +The window persists until ClearPlayWindow() is called. +Loading new audio sample data without adjusting or clearing the window will result in +playback errors if the window is outside the new data. + +@param aStart + The position defining the start of the window, measured in microseconds. If this value is less + than zero, it is set to zero. If this value is greater than aEnd, then it is swapped with aEnd. +@param aEnd + The position defining the end of the window, measured in microseconds. If this value is greater + than the value returned by Duration(), it is set to the value of Duration(). If this value is + less than aStart, then it is swapped with aStart. + +@return An error code indicating if the function call was successful. KErrNone on success, otherwise + another of the system-wide error codes. + +@since 7.0s +*/ +EXPORT_C TInt CMdaAudioPlayerUtility::SetPlayWindow(const TTimeIntervalMicroSeconds& aStart, + const TTimeIntervalMicroSeconds& aEnd) + { + ASSERT(iProperties); + return iProperties->SetPlayWindow(aStart, aEnd); + } + +/** +Clears the current playback window. + +@return An error code indicating if the function call was successful. KErrNone on success, otherwise + another of the system-wide error codes. + +@since 7.0s +*/ +EXPORT_C TInt CMdaAudioPlayerUtility::ClearPlayWindow() + { + ASSERT(iProperties); + return iProperties->ClearPlayWindow(); + } + +/** +Sets the current playback balance. + +@param aBalance + A value between KMMFBalanceMaxLeft + and KMMFBalanceMaxRight. The default value is + KMMFBalanceCenter. + +@return An error code indicating if the function call was successful. KErrNone on success, otherwise + another of the system-wide error codes. + +@since 7.0s +*/ +EXPORT_C TInt CMdaAudioPlayerUtility::SetBalance(TInt aBalance /*= KMMFBalanceCenter*/) + { + ASSERT(iProperties); + return iProperties->SetBalance(aBalance); + } + +/** + * Returns The current playback balance. This function may not return the same value + * as passed to SetBalance depending on the internal implementation in + * the underlying components. + * + * @param aBalance + * A value between KMMFBalanceMaxLeft + * and KMMFBalanceMaxRight. + * + * @return An error code indicating if the function call was successful. KErrNone on success, otherwise + * another of the system-wide error codes. + * + * @since 7.0s + */ +EXPORT_C TInt CMdaAudioPlayerUtility::GetBalance(TInt& aBalance) + { + ASSERT(iProperties); + return iProperties->GetBalance(aBalance); + } + +/** +Returns the controller implementation information associated with the current controller. + +@return The controller implementation structure + +@since 7.0s +*/ +EXPORT_C const CMMFControllerImplementationInformation& CMdaAudioPlayerUtility::ControllerImplementationInformationL() + { + ASSERT(iProperties); + return iProperties->ControllerImplementationInformationL(); + } + +/** +Registers callback object to receive notifications of audio loading/rebuffering. + +@param aCallback + The object to receive audio loading notifications. + +@since 7.0s +*/ +EXPORT_C void CMdaAudioPlayerUtility::RegisterForAudioLoadingNotification(MAudioLoadingObserver& aCallback) + { + ASSERT(iProperties); + iProperties->RegisterForAudioLoadingNotification(aCallback); + } + +/** +Returns the current progress of audio loading. + +@param aPercentageProgress + The percentage of the audio clip loaded. + +@since 7.0s +*/ +EXPORT_C void CMdaAudioPlayerUtility::GetAudioLoadingProgressL(TInt& aPercentageProgress) + { + ASSERT(iProperties); + iProperties->GetAudioLoadingProgressL(aPercentageProgress); + } + +/** +Sends a synchronous custom command to the controller. + +@param aDestination + The destination of the message, consisting of the UID of + the interface of this message. +@param aFunction + The function number to indicate which function is to be called + on the interface defined in the aDestination parameter. +@param aDataTo1 + A reference to the first chunk of data to be copied to the controller + framework. The exact contents of the data are dependent on the + interface being called. Can be KNullDesC8. +@param aDataTo2 + A reference to the second chunk of data to be copied to the controller + framework. The exact contents of the data are dependent on the + interface being called. Can be KNullDesC8. +@param aDataFrom + A reference to an area of memory to which the controller framework will + write any data to be passed back to the client. Can't be KNullDesC8. + +@return The result of the request. Exact range of values is dependent on the interface. + +@since 7.0s +*/ +EXPORT_C TInt CMdaAudioPlayerUtility::CustomCommandSync(const TMMFMessageDestinationPckg& aDestination, TInt aFunction, const TDesC8& aDataTo1, const TDesC8& aDataTo2, TDes8& aDataFrom) + { + ASSERT(iProperties); + return iProperties->CustomCommandSync(aDestination, aFunction, aDataTo1, aDataTo2, aDataFrom); + } + +/** +Sends a synchronous custom command to the controller. + +@param aDestination + The destination of the message, consisting of the UID of + the interface of this message. +@param aFunction + The function number to indicate which function is to be called + on the interface defined in the aDestination parameter. +@param aDataTo1 + A reference to the first chunk of data to be copied to the controller + framework. The exact contents of the data are dependent on the + interface being called. Can be KNullDesC8. +@param aDataTo2 + A reference to the second chunk of data to be copied to the controller + framework. The exact contents of the data are dependent on the + interface being called. Can be KNullDesC8. + +@return The result of the request. Exact range of values is dependent on the interface. + +@since 7.0s +*/ +EXPORT_C TInt CMdaAudioPlayerUtility::CustomCommandSync(const TMMFMessageDestinationPckg& aDestination, TInt aFunction, const TDesC8& aDataTo1, const TDesC8& aDataTo2) + { + ASSERT(iProperties); + return iProperties->CustomCommandSync(aDestination, aFunction, aDataTo1, aDataTo2); + } + +/** +Sends an asynchronous custom command to the controller. + +Note: +This method will return immediately. The RunL of the active object owning the +aStatus parameter will be called when the command is completed by the +controller framework. + +@param aDestination + The destination of the message, consisting of the uid of + the interface of this message. +@param aFunction + The function number to indicate which function is to be called + on the interface defined in the aDestination parameter. +@param aDataTo1 + A reference to the first chunk of data to be copied to the controller + framework. The exact contents of the data are dependent on the + interface being called. Can be KNullDesC8. +@param aDataTo2 + A reference to the second chunk of data to be copied to the controller + framework. The exact contents of the data are dependent on the + interface being called. Can be KNullDesC8. +@param aDataFrom + A reference to an area of memory to which the controller framework will + write any data to be passed back to the client. Can't be KNullDesC8." +@param aStatus + The TRequestStatus of an active object. This will contain the + result of the request on completion. The exact range of + result values is dependent on the interface. + +@since 7.0s +*/ +EXPORT_C void CMdaAudioPlayerUtility::CustomCommandAsync(const TMMFMessageDestinationPckg& aDestination, TInt aFunction, const TDesC8& aDataTo1, const TDesC8& aDataTo2, TDes8& aDataFrom, TRequestStatus& aStatus) + { + ASSERT(iProperties); + iProperties->CustomCommandAsync(aDestination, aFunction, aDataTo1, aDataTo2, aDataFrom, aStatus); + } + +/** +Sends an asynchronous custom command to the controller. + +Note: +This method will return immediately. The RunL of the active object owning the +aStatus parameter will be called when the command is completed by the +controller framework. + +@param aDestination + The destination of the message, consisting of the uid of + the interface of this message. +@param aFunction + The function number to indicate which function is to be called + on the interface defined in the aDestination parameter. +@param aDataTo1 + A reference to the first chunk of data to be copied to the controller + framework. The exact contents of the data are dependent on the + interface being called. Can be KNullDesC8. +@param aDataTo2 + A reference to the second chunk of data to be copied to the controller + framework. The exact contents of the data are dependent on the + interface being called. Can be KNullDesC8. +@param aStatus + The TRequestStatus of an active object. This will contain the + result of the request on completion. The exact range of + result values is dependent on the interface. + +@since 7.0s +*/ +EXPORT_C void CMdaAudioPlayerUtility::CustomCommandAsync(const TMMFMessageDestinationPckg& aDestination, TInt aFunction, const TDesC8& aDataTo1, const TDesC8& aDataTo2, TRequestStatus& aStatus) + { + ASSERT(iProperties); + iProperties->CustomCommandAsync(aDestination, aFunction, aDataTo1, aDataTo2, aStatus); + } + +/** +Returns the bit rate of the audio clip. + +@param aBitRate + The bit rate of the audio clip + +@return An error code indicating if the function call was successful. KErrNone on success, + otherwise another of the system-wide error codes. + +@since 7.0s +*/ +EXPORT_C TInt CMdaAudioPlayerUtility::GetBitRate(TUint& aBitRate) + { + ASSERT(iProperties); + return iProperties->GetBitRate(aBitRate); + } + +/** +Gets a controller's DRM custom command implementation. + +@return A pointer to a controller's DRM custom command implementation, or NULL if the +controller does not support it. +*/ +EXPORT_C MMMFDRMCustomCommand* CMdaAudioPlayerUtility::GetDRMCustomCommand() + { + ASSERT(iProperties); + return iProperties->GetDRMCustomCommand(); + } + +/** +Registers the Event for Notification when resource is avaliable. + +@param aCallback + The audio outputstream observer interface.. + +@param aNotificationEventUid + The Event for which the client is registered. + +@param aNotificationRegistrationData + Notification registration specific data. + +@return An error code indicating if the registration was successful. KErrNone on success, + otherwise another of the system-wide error codes. +*/ +EXPORT_C TInt CMdaAudioPlayerUtility::RegisterAudioResourceNotification(MMMFAudioResourceNotificationCallback& aCallback,TUid aNotificationEventUid,const TDesC8& aNotificationRegistrationData) + { + ASSERT(iProperties); + return iProperties->RegisterAudioResourceNotification(aCallback,aNotificationEventUid,aNotificationRegistrationData); + } + +/** +Cancels the registered notification event. + +@param aNotificationEventUid + The Event to notify the client. + +@return An error code indicating if the registration was successful. KErrNone on success, + otherwise another of the system-wide error codes. +*/ +EXPORT_C TInt CMdaAudioPlayerUtility::CancelRegisterAudioResourceNotification(TUid aNotificationEventUid) + { + ASSERT(iProperties); + return iProperties->CancelRegisterAudioResourceNotification(aNotificationEventUid); + } + +/** +Waits for the client to resume the play even after the default timer expires. + +@return An error code indicating if the registration was successful. KErrNone on success, + otherwise another of the system-wide error codes. +*/ +EXPORT_C TInt CMdaAudioPlayerUtility::WillResumePlay() + { + ASSERT(iProperties); + return iProperties->WillResumePlay(); + } + + +/** +Set the priority of the controller's sub thread. + +This can be used to increase the responsiveness of the audio plugin to minimise +any lag in processing. This function should be used with care as it may have knock-on +effects elsewhere in the system. + +@param aPriority + The TThreadPriority that the thread should run under. The default is EPriorityNormal. +@return TInt + A standard error code: KErrNone if successful, KErrNotReady if the thread does not have a + valid handle. +*/ +EXPORT_C TInt CMdaAudioPlayerUtility::SetThreadPriority(const TThreadPriority& aPriority) const + { + ASSERT(iProperties); + return iProperties->SetThreadPriority(aPriority); + } + + + + +CMMFMdaAudioPlayerUtility* CMMFMdaAudioPlayerUtility::NewL(MMdaAudioPlayerCallback& aCallback, + TInt aPriority, + TInt aPref) + { + CMMFMdaAudioPlayerUtility* self = new(ELeave) CMMFMdaAudioPlayerUtility(aCallback, aPriority, aPref); + CleanupStack::PushL(self); + self->ConstructL(); + CleanupStack::Pop(self); + return self; + } + +CMMFMdaAudioPlayerUtility* CMMFMdaAudioPlayerUtility::NewFilePlayerL(const TDesC& aFileName, + MMdaAudioPlayerCallback& aCallback, + TInt aPriority, + TInt aPref, + CMdaServer* /*aServer*/) + { + CMMFMdaAudioPlayerUtility* self = new(ELeave) CMMFMdaAudioPlayerUtility(aCallback, aPriority, aPref); + CleanupStack::PushL(self); + self->ConstructL(); + //TMMFileSource filesource(aFileName, KDefaultContentObject, EPlay); + TMMFileSource * filesource; + self->OpenFileL(*filesource); + CleanupStack::Pop(self); + return self; + } + +CMMFMdaAudioPlayerUtility* CMMFMdaAudioPlayerUtility::NewDesPlayerL(const TDesC8& aData, MMdaAudioPlayerCallback& aCallback, TInt aPriority, TInt aPref, CMdaServer* /*aServer*/) + { + CMMFMdaAudioPlayerUtility* self = new(ELeave) CMMFMdaAudioPlayerUtility(aCallback, aPriority, aPref); + CleanupStack::PushL(self); + self->ConstructL(); + self->OpenDesL(aData); + CleanupStack::Pop(self); + return self; + } + +CMMFMdaAudioPlayerUtility* CMMFMdaAudioPlayerUtility::NewDesPlayerReadOnlyL(const TDesC8& aData, MMdaAudioPlayerCallback& aCallback, TInt aPriority, TInt aPref, CMdaServer* /*aServer*/) + { + CMMFMdaAudioPlayerUtility* self = new(ELeave) CMMFMdaAudioPlayerUtility(aCallback, aPriority, aPref); + CleanupStack::PushL(self); + self->ConstructL(); + self->OpenDesL(aData); + CleanupStack::Pop(self); + return self; + } + +void CMMFMdaAudioPlayerUtility::UseSharedHeap() + { + //iFindAndOpenController->UseSharedHeap(); + } + +// CMMFMdaAudioPlayerUtility +CMMFMdaAudioPlayerUtility::~CMMFMdaAudioPlayerUtility() + { + + //delete iControllerImplementationInformation; + delete iAsyncCallBack; + //delete iRepeatTrailingSilenceTimer; + //delete iFindAndOpenController; + //delete iControllerEventMonitor; + //iMediaIds.Close(); + //iController.Close(); + } + +CMMFMdaAudioPlayerUtility::CMMFMdaAudioPlayerUtility(MMdaAudioPlayerCallback& aCallback, TInt aPriority, TInt aPref) : + CTimer(EPriorityHigh), + iCallback(aCallback) +// iAudioPlayDeviceCommands(iController), +// iAudioPlayControllerCommands(iController), +// iNotificationRegistrationCommands(iController) +// iDRMCustomCommands(iController) +// iAudioPlayControllerSetRepeatsCommands(iController) + { + iState = EStopped; + iPrioritySettings.iPriority = aPriority; + iPrioritySettings.iPref = aPref; + iPlayStart = TTimeIntervalMicroSeconds(0); + iPlayEnd = TTimeIntervalMicroSeconds(0); + iPlayWindowSet = ENone; + iEventHolder = KNullUid; + } + +void CMMFMdaAudioPlayerUtility::ConstructL() + { + //iControllerEventMonitor = CMMFControllerEventMonitor::NewL(*this, iController); + //iRepeatTrailingSilenceTimer = CRepeatTrailingSilenceTimer::NewL(*this); + iAsyncCallBack = CMMFMdaAudioPlayerCallBack::NewL(iCallback); + //User::LeaveIfError(iMediaIds.Append(KUidMediaTypeAudio)); + //iFindAndOpenController = CMMFFindAndOpenController::NewL(*this); + //iFindAndOpenController->Configure(iMediaIds[0], iPrioritySettings); + //iFindAndOpenController->ConfigureController(iController, *iControllerEventMonitor, CMMFFindAndOpenController::EPlayback); + iAsyncCallBack->InitComplete(KErrNone, 500000); + } + +#if 0 +void CMMFMdaAudioPlayerUtility::MfaocComplete( + TInt& aError, + RMMFController* /*aController*/, + TUid aControllerUid, + TMMFMessageDestination* /*aSourceHandle*/, + TMMFMessageDestination* /*aSinkHandle*/) + { + if (aError == KErrNone) + { + iControllerUid = aControllerUid; + + // Get the clip duration + iDuration = TTimeIntervalMicroSeconds(0); + aError = iController.GetDuration(iDuration); + + // If an error occurred during GetDuration, may try for next controller, if present. + if (aError != KErrNone) + { + iControllerEventMonitor->Cancel(); + + if (iFindAndOpenController) + { + if(iFindAndOpenController-> ControllerIndex() < (iFindAndOpenController->ControllerCount())-1) + { + return; //actually tries to load next controllers, if there are other controllers selected in the controller list + } + } + + iController.Close(); // otherwise close the controller + } + + if (iFindAndOpenController) + { + iFindAndOpenController->Close(); + } + } + + iAsyncCallBack->InitComplete(aError, iDuration); + } +#endif +/** + Open an audio clip from a file + @param "const TFileSource& aFileSource" "the file to open" + @leave "" "Leaves on an error opening the file + @since version 5.0 +*/ +void CMMFMdaAudioPlayerUtility::OpenFileL(const TDesC& aFileName) + { + //TMMFileSource filesource(aFileName, KDefaultContentObject, EPlay); + TMMFileSource * filesource; + OpenFileL(*filesource); + } + +/** + Open an audio clip from a file + @param "const RFile& aFile" "the shared session file handle to open" + @leave "" "KErrBadHandle if the file handle is not shared through the call RFs::ShareProtected(), and the underlying CAF layer needs it to be. + @leave "" "Leaves on an error opening the file + @since version 5.0 +*/ +void CMMFMdaAudioPlayerUtility::OpenFileL(const RFile& aFile) + { + RFile& file = const_cast(aFile); + //TMMFileHandleSource filesource(file, KDefaultContentObject, EPlay); + TMMFileHandleSource * filesource; + OpenFileL(*filesource); + } + +void CMMFMdaAudioPlayerUtility::OpenFileL(const TMMSource& aSource) + { + // If iAsyncCallBack is already active, we're still in the process of notifying the client + // that a previous request to Open...(...) has completed. + if (iAsyncCallBack->IsActive()) + User::Leave(KErrNotReady); +#if 0 + if (aSource.SourceType()==KUidMMFileHandleSource) + { + RFile& fileHandle = static_cast(aSource).Handle(); + iFindAndOpenController->ConfigureSourceSink( + TMMFileHandleSource(fileHandle, aSource.UniqueId(), aSource.Intent(), aSource.IsUIEnabled()), + CMMFFindAndOpenController::TSourceSink(KUidMmfAudioOutput)); + + } + if (aSource.SourceType()==KUidMMFileSource) + { + const TDesC& fileName = static_cast(aSource).Name(); + iFindAndOpenController->ConfigureSourceSink( + TMMFileSource(fileName, aSource.UniqueId(), aSource.Intent(), aSource.IsUIEnabled()), + CMMFFindAndOpenController::TSourceSink(KUidMmfAudioOutput)); + } + + iFindAndOpenController->OpenByFileSource(aSource); +#endif + } + +/** + Open an audio clip from a descriptor + @param "const TDesC8& aDescriptor" "the descriptor containing the clip" + @leave "" "Leaves on an error opening the descriptor" + @since version 5.0 +*/ +void CMMFMdaAudioPlayerUtility::OpenDesL(const TDesC8& aDescriptor) + { + // If iAsyncCallBack is already active, we're still in the process of notifying the client + // that a previous request to Open...(...) has completed. + if (iAsyncCallBack->IsActive()) + User::Leave(KErrInUse); +#if 0 + iFindAndOpenController->ConfigureSourceSink( + CMMFFindAndOpenController::TSourceSink(KUidMmfDescriptorSource, + CMMFFindAndOpenController::GetConfigDescriptor(aDescriptor)), + CMMFFindAndOpenController::TSourceSink(KUidMmfAudioOutput)); + iFindAndOpenController->OpenByDescriptor(aDescriptor); +#endif + } + +/** + Open an audio clip from a Url + @param "const TDesC& aUrl" "the url reference to the clip" + @leave "" "Leaves on an error opening the url" + @since version 7.0s +*/ +void CMMFMdaAudioPlayerUtility::OpenUrlL(const TDesC& aUrl, const TInt aIapId, const TDesC8& aMimeType) + { + // If iAsyncCallBack is already active, we're still in the process of notifying the client + // that a previous request to Open...(...) has completed. + if (iAsyncCallBack->IsActive()) + User::Leave(KErrInUse); +#if 0 + CBufFlat* urlCfgBuffer = NULL; + CMMFFindAndOpenController::GetConfigUrlL(urlCfgBuffer, aUrl, aIapId); + + iFindAndOpenController->ConfigureSourceSink( + CMMFFindAndOpenController::TSourceSink(KUidMmfUrlSource, urlCfgBuffer->Ptr(0)), + CMMFFindAndOpenController::TSourceSink(KUidMmfAudioOutput)); + iFindAndOpenController->OpenByUrl(aUrl, aIapId, aMimeType); + delete urlCfgBuffer; +#endif + } + +/** +Begins playback of the initialised audio sample at the current volume +and priority levels. + +When playing of the audio sample is complete, successfully or +otherwise, the callback function +MMdaAudioPlayerCallback::MapcPlayComplete() is +called. + +If this function is called whilst already playing then +MMdaAudioPlayerCallback::MapcPlayComplete will return with the +error code KErrNotReady. + +@since 5.0 +*/ +void CMMFMdaAudioPlayerUtility::Play() + { + // if we're already playing, call the client's callback with KErrNotReady. + // This is what the controller would do if we allowed the Play() + // to propagate down. Need to do it here too (for consistency) + // in case we're in a trailing silence period. + if (iState == EPlaying) + { + iAsyncCallBack->PlayComplete(KErrNotReady); + return; + } +#if 0 + // cancel the repeat timer in case the client has called Play() + // without waiting for the previous play to complete + iRepeatTrailingSilenceTimer->Cancel(); + // Reset played count + if(iState != EPaused) + { + iNumberOfTimesPlayed = 0; + if(iNumberOfTimesToRepeat>0 || iNumberOfTimesToRepeat == KMdaRepeatForever) + { + TInt err = iAudioPlayControllerSetRepeatsCommands.SetRepeats(iNumberOfTimesToRepeat, iTrailingSilence); + if(err==KErrNone) + { + iNumberOfTimesToRepeat = 0; + iTrailingSilence = 0; + } + //Controller not supporting setrepeats custom command is not a real error + //we revert back to playerutility's loop play implementation in that case + } + } +#endif + DoPlay(); + } + +void CMMFMdaAudioPlayerUtility::DoPlay() + { +#if 0 +#if defined(__AUDIO_PROFILING) + RDebug::ProfileStart(4); +#endif // defined(__AUDIO_PROFILING) + TInt err = KErrNone; + if (iState != EPaused || iRepeatCancelled) + { + err = iController.Prime(); + iRepeatCancelled = EFalse; + +#if defined(__AUDIO_PROFILING) + RDebug::ProfileEnd(4); +#endif // defined(__AUDIO_PROFILING) + + // make sure we don't set the position outside the play window - + // but allow it to remain unchanged if it's within the window + if (iPlayWindowSet == ESet && + (iPosition < iPlayStart || iPosition >= iPlayEnd)) + iPosition = iPlayStart; + + if (err==KErrNone) + err = iController.SetPosition(iPosition); + } + + if (err==KErrNone) + { + if (iPlayWindowSet == ESet) + err = iAudioPlayControllerCommands.SetPlaybackWindow(iPlayStart, iPlayEnd); + else if (iPlayWindowSet == EClear) + { + err = iAudioPlayControllerCommands.DeletePlaybackWindow(); + iPlayWindowSet = ENone; // assume window will stay cleared + } + } + + if (err==KErrNone) + { +#if defined(__AUDIO_PROFILING) + RDebug::ProfileStart(5); +#endif // defined(__AUDIO_PROFILING) + + err = iController.Play(); + +#if defined(__AUDIO_PROFILING) + RDebug::ProfileEnd(5); +#endif // defined(__AUDIO_PROFILING) + } + + if (err!=KErrNone) + iAsyncCallBack->PlayComplete(err); + else + iState = EPlaying; + + if(iEventHolder != KNullUid) + { + err = iNotificationRegistrationCommands.RegisterAsClient(iEventHolder,iNotificationDataHolder); + iEventHolder = KNullUid; + iNotificationDataHolder = KNullDesC8; + if(err == KErrNotSupported) + { + return; + } + if(err != KErrNone) + { + iController.Stop(); + iAsyncCallBack->PlayComplete(err); + } + } +#endif + iState = EPlaying; + After(500000); + } + +/** +Stops playback of the audio sample as soon as possible. + +If the audio sample is playing, playback is stopped as soon as +possible. If playback is already complete, nothing further happens as +a result of calling this function. The callback function +MMdaAudioPlayerCallback::MapcPlayComplete() is not +called. + +@since 5.0 +*/ +void CMMFMdaAudioPlayerUtility::Stop() + { + + if (iState==EStopped) + { + // resetting the position to the start. + //if any position change in stoped state + iPosition = iPlayStart; + return; + } + + if (iState==EPlaying || iState==EPaused) + { + // cancel the repeat timer in case the client has called Stop() + // during the trailing silence period + //iRepeatTrailingSilenceTimer->Cancel(); + + //iController.Stop(); + iPosition = iPlayStart; + iState = EStopped; + } + + } + +/** + * + * Pauses playback of the audio clip + * @return One of the system-wide error codes + * @since 7.0s + */ +TInt CMMFMdaAudioPlayerUtility::Pause() + { + TInt err = KErrNone; +#if 0 + if(iRepeatTrailingSilenceTimer->IsActive()) + { + iRepeatTrailingSilenceTimer->Cancel(); + iRepeatCancelled = ETrue; + iState = EPaused; + return KErrNone; + } + if (iState==EPlaying) + { + err = iController.Pause(); + if (!err || err==KErrNotReady) + err = iController.GetPosition(iPosition); + iState = EPaused; + } +#endif + iState = EPaused; + return err; + } + +/** + * + * Closes the current audio clip (allowing another clip to be opened) + * + * @since 7.0s + */ +void CMMFMdaAudioPlayerUtility::Close() + { + // Reset the audio player state. + Stop(); +#if 0 + iControllerEventMonitor->Cancel(); + iController.Close(); + if (iFindAndOpenController) + iFindAndOpenController->Close(); + if(iControllerImplementationInformation) + { + delete iControllerImplementationInformation; + iControllerImplementationInformation = NULL; + } + iControllerUid = KNullUid; +#endif + } + +void CMMFMdaAudioPlayerUtility::RunL() + { + switch(iState) + { + case EPlaying: + iAsyncCallBack->PlayComplete(KErrNone); + break; + default: + // do nothing + break; + } + } +/** +Changes the current playback volume to a specified value. + +The volume can be changed before or during playback and is effective +immediately. + +@param aVolume + The volume setting. This can be any value from zero to + the value returned by a call to + CMdaAudioPlayerUtility::MaxVolume(). + Setting a zero value mutes the sound. Setting the + maximum value results in the loudest possible sound. +@return An error code indicating if the function call was successful. KErrNone on success, + otherwise another of the system-wide error codes. +@panic EMMFMediaClientBadArgument is raised when the audio player utility is not initialised. + +@since 5.0 +*/ +TInt CMMFMdaAudioPlayerUtility::SetVolume(TInt aVolume) + { + TInt err = KErrNone; +#if 0 + TInt err = iAudioPlayDeviceCommands.SetVolume(aVolume); + if (err == KErrArgument) + { + TInt maxVolume = MaxVolume(); + if (aVolume < 0) + { + aVolume = 0; + } + else if (aVolume > maxVolume) + { + aVolume = maxVolume; + } + err = iAudioPlayDeviceCommands.SetVolume(aVolume); + } +#endif + return err; + } + +/** +Sets the number of times the audio sample is to be repeated during the +playback operation. + +A period of silence can follow each playing of the sample. The audio +sample can be repeated indefinitely. + +@param aRepeatNumberOfTimes + The number of times the audio sample, together with + the trailing silence, is to be repeated. If this is + set to KMdaRepeatForever, then the audio + sample, together with the trailing silence, is + repeated indefinitely or until Stop() is + called. If this is set to zero, then the audio sample + is not repeated. The behaviour is undefined for + negative values (other than KMdaRepeatForever). +@param aTrailingSilence + The time interval of the training silence. + Negative values will produce a panic USER 87. +@since 5.0 +*/ +void CMMFMdaAudioPlayerUtility::SetRepeats(TInt aRepeatNumberOfTimes, const TTimeIntervalMicroSeconds& aTrailingSilence) + { +#if 0 + TInt err = iAudioPlayControllerSetRepeatsCommands.SetRepeats(aRepeatNumberOfTimes, aTrailingSilence); + + if(err!=KErrNone) + { + iNumberOfTimesToRepeat = aRepeatNumberOfTimes; + iTrailingSilence = aTrailingSilence; + } +#endif + } + +/** +Defines the period over which the volume level is to rise smoothly +from nothing to the normal volume level. + +@param aRampDuration + The period over which the volume is to rise. A zero + value causes the audio sample to be played at the + normal level for the full duration of the playback. A + value which is longer than the duration of the audio + sample means that the sample never reaches its normal + volume level. + +@since 5.0 +*/ +void CMMFMdaAudioPlayerUtility::SetVolumeRamp(const TTimeIntervalMicroSeconds& aRampDuration) + { + //iAudioPlayDeviceCommands.SetVolumeRamp(aRampDuration); + } + +TInt CMMFMdaAudioPlayerUtility::SetPriority(TInt aPriority, TInt aPref) + { + return KErrNone; +#if 0 + iPrioritySettings.iPref = aPref; + iPrioritySettings.iPriority = aPriority; + iFindAndOpenController->Configure(iMediaIds[0], iPrioritySettings); + + return iController.SetPrioritySettings(iPrioritySettings); +#endif + } + +/** +Returns the duration of the audio sample. + +@return The duration in microseconds. + +@since 5.0 +*/ +const TTimeIntervalMicroSeconds& CMMFMdaAudioPlayerUtility::Duration() + { +#if 0 + TInt err = iController.GetDuration(iDuration); + if (err) + { + iDuration = 0; + } +#endif + iDuration = 500000; + return iDuration; + } + +/** +Returns the duration of the audio sample in microseconds, and the duration state. + +@param aDuration + The duration of the sample in microseconds. +@return The duration state + +@since 9.1 +*/ +TMMFDurationInfo CMMFMdaAudioPlayerUtility::Duration(TTimeIntervalMicroSeconds& aDuration) +{ +#if 0 + TPckgBuf pckg; + TMMFDurationInfo result = EMMFDurationInfoValid; + + TMMFMessageDestinationPckg iDestinationPckg(TMMFMessageDestination(KUidInterfaceMMFDurationInfoControl, KMMFObjectHandleController)); + + TInt err = iController.CustomCommandSync(iDestinationPckg, + EMMFGetDurationInfo, + KNullDesC8, + KNullDesC8, + pckg ); + + switch ( err ) + { + case KErrNone: + result = pckg(); + break; + + case KErrNotSupported: + // Custom command not implemented return EMMFDurationInfoValid as the default value + break; + + default: + // Unknown error + result = EMMFDurationInfoUnknown; + break; + } + + // Get the duration information to return in aDuration + // This is the intended behaviour regardless of what value err has + aDuration = Duration(); + return result; +#endif + return EMMFDurationInfoValid; +} + +/** +Returns an integer representing the maximum volume. + +This is the maximum value which can be passed to +CMdaAudioPlayerUtility::SetVolume(). + +@return The maximum volume. This value is platform dependent but is always greater than or equal + to one. +@panic EMMFMediaClientPanicServerCommunicationProblem is raised when the audio player utility is not initialised. + +@since 5.0 +*/ +TInt CMMFMdaAudioPlayerUtility::MaxVolume() + { + TInt maxVolume = 100; +#if 0 +#ifdef _DEBUG + TInt error = +#endif + iAudioPlayDeviceCommands.GetMaxVolume(maxVolume); + __ASSERT_DEBUG(error==KErrNone, Panic(EMMFMediaClientPanicServerCommunicationProblem)); +#endif + return maxVolume; + } + +#if 0 +void CMMFMdaAudioPlayerUtility::HandleEvent(const TMMFEvent& aEvent) + { + // handle loading started/complete messages first, as the later code does not explicitly check the event type + if (aEvent.iEventType == KMMFEventCategoryAudioLoadingStarted) + { + if (iLoadingObserver) + { + iLoadingObserver->MaloLoadingStarted(); + } + } + else if (aEvent.iEventType == KMMFEventCategoryAudioLoadingComplete) + { + if (iLoadingObserver) + { + iLoadingObserver->MaloLoadingComplete(); + } + } + else if (aEvent.iEventType == KMMFEventCategoryAudioResourceAvailable) + { + if (iAudioResourceNotificationCallBack != NULL) + { + TBuf8 notificationData; + if (KErrNone != iNotificationRegistrationCommands.GetResourceNotificationData(aEvent.iEventType, notificationData)) + { + notificationData.SetLength(0); + } + iAudioResourceNotificationCallBack->MarncResourceAvailable(aEvent.iEventType, notificationData); + } + } + else if (aEvent.iEventType == KMMFEventCategoryPlaybackComplete) + { + TInt oldState = iState; + //DevCR KEVN-7T5EHA: In case of pre-emption, we need to get the position from Controller, if that fails we reset the position to keep the original behaviour. + if(aEvent.iErrorCode == KErrInUse ||aEvent.iErrorCode == KErrDied ||aEvent.iErrorCode == KErrAccessDenied ) + { + TInt err= iController.GetPosition(iPosition); + if(err != KErrNone) + { + iPosition = iPlayStart; + } + } + else + { + iPosition = iPlayStart; + } + if (aEvent.iErrorCode == KErrNone) + { + //If we weren't playing, ignore the event. + if (oldState == EPlaying) + { + //we finished playing the clip so repeat if required + iNumberOfTimesPlayed++; + if ((iNumberOfTimesPlayed > iNumberOfTimesToRepeat) && (iNumberOfTimesToRepeat != KMdaRepeatForever)) + { + //we've repeated enough times now + iNumberOfTimesPlayed = 0; + iState = EStopped; + iCallback.MapcPlayComplete(KErrNone); + } + else + { + // We need to play silence, then repeat the clip + iTrailingSilenceLeftToPlay = iTrailingSilence; + PlaySilence(); + } + } + } + else + { //aEvent.iErrorCode != KErrNone + //if we weren't playing, don't advise Client. + iState = EStopped; + if (oldState == EPlaying) + { + iCallback.MapcPlayComplete(aEvent.iErrorCode); + } + } + } + else if(aEvent.iEventType == KMMFErrorCategoryControllerGeneralError) + { + TInt oldState = iState; + iPosition = iPlayStart; + iState = EStopped; + if (oldState == EPlaying) + { + iCallback.MapcPlayComplete(aEvent.iErrorCode); + } + } + // else we have an unexpected event that cannot be dealt with by the client. + // We will simply ignore this. + } +#endif + +void CMMFMdaAudioPlayerUtility::PlaySilence() + { +#if 0 + // iRepeatTrailingSilenceTimer->After() takes a TTimeIntervalMicroSeconds32 + // so for longer periods of silence call it repeatedly with KMaxTInt lengths + TTimeIntervalMicroSeconds32 silence; + if (iTrailingSilenceLeftToPlay.Int64() > KMaxTInt) + { + silence = KMaxTInt; + iTrailingSilenceLeftToPlay = iTrailingSilenceLeftToPlay.Int64() - KMaxTInt; + } + else + { + silence = I64INT(iTrailingSilenceLeftToPlay.Int64()); + iTrailingSilenceLeftToPlay = 0; + } + iRepeatTrailingSilenceTimer->After(silence); +#endif + } + +#if 0 +void CMMFMdaAudioPlayerUtility::RepeatTrailingSilenceTimerComplete() + { + if (iTrailingSilenceLeftToPlay.Int64() > 0) + { + PlaySilence(); + } + else + { + // reset the position for subsequent plays + iPosition = iPlayStart; + DoPlay(); + } + } +#endif + +/** + * + * Returns the current playback position in microseconds + * + * @param "TTimeIntervalMicroSeconds& aPosition" + * The current time position in microseconds from the start of the file + * @return "TInt" One of the global error codes + * + * @since 7.0s + */ +TInt CMMFMdaAudioPlayerUtility::GetPosition(TTimeIntervalMicroSeconds& aPosition) + { + TInt error = KErrNone; + if (iState==EPlaying) + aPosition = 250000; +// error = iController.GetPosition(iPosition); + aPosition = iPosition; + return error; + } + +/** + * + * Set the current playback position in microseconds from the start of the file + * + * @param "TTimeIntervalMicroSeconds& aPosition" + * The position to move to in microseconds from the start of the file. + * If aPosition is negative, the position is set to the start of the file. + * If aPosition is greater than the file duration, the position is set to the + * end of the file. + * + * @since 7.0s + */ +void CMMFMdaAudioPlayerUtility::SetPosition(const TTimeIntervalMicroSeconds& aPosition) + { +#if 0 + // Clip the position if aPosition is greater than the duration + // or if aPosition is negative. + const TTimeIntervalMicroSeconds maxPosition(Duration()); + const TTimeIntervalMicroSeconds minPosition(0); + + if (aPosition > maxPosition) + iPosition = maxPosition; + else if (aPosition < minPosition) + iPosition = minPosition; + else + iPosition = aPosition; + + if (iState==EPlaying || iState==EPaused) + { + iController.SetPosition(iPosition); + } +// else if (iState == EPaused) +// { +// Stop(); // We call stop so that DevSound's internal buffers are reset +// } +#endif + } + +/** +Returns the current playback volume + +@param aVolume + A volume value between 0 and the value returned by MaxVolume(). + +@return One of the global error codes. + +@since 7.0s +*/ +TInt CMMFMdaAudioPlayerUtility::GetVolume(TInt& aVolume) + { +#if 0 + TInt error = iAudioPlayDeviceCommands.GetVolume(aVolume); + return error; +#endif + aVolume = 50; + return KErrNone; + } + +/** + * + * Returns the number of meta data entries in the current clip + * + * @param "TInt& aNumEntries" + * The number of meta data entries in the header of the current clip + * @return "TInt" One of the global error codes + * + * @since 7.0s + */ +TInt CMMFMdaAudioPlayerUtility::GetNumberOfMetaDataEntries(TInt& aNumEntries) + { +#if 0 + TInt error = iController.GetNumberOfMetaDataEntries(aNumEntries); + return error; +#endif + aNumEntries = 0; + return KErrNone; + } + +/** + * + * Returns the requested meta data entry + * + * @param "TInt aMetaDataIndex" + * The index number of the meta data to retrieve + * @return "CMMFMetaDataEntry*" The meta data entry to return + * @leave Leaves with KErrNotFound if the meta data entry does not exist or + * KErrNotImplemented if the controller does not support meta data + * information for this format. Other errors indicate more general system + * failure. + * + * @since 7.0s + */ +CMMFMetaDataEntry* CMMFMdaAudioPlayerUtility::GetMetaDataEntryL(TInt aMetaDataIndex) + { +#if 0 + return iController.GetMetaDataEntryL(aMetaDataIndex); +#endif + User::Leave(KErrNotSupported); + return NULL; + } + +/** + * + * Set the current playback window + * + * @param "const TTimeIntervalMicroSeconds& aStart" + * Start time of playback window relative to start of file + * @param "const TTimeIntervalMicroSeconds& aEnd" + * End time of playback window relative to start of file + * + * @return "TInt" One of the global error codes + * + * @since 7.0s + */ +TInt CMMFMdaAudioPlayerUtility::SetPlayWindow(const TTimeIntervalMicroSeconds& aPlayStart, + const TTimeIntervalMicroSeconds& aPlayEnd) + { + TInt error = KErrNone; +#if 0 + if (aPlayStart >= TTimeIntervalMicroSeconds(0) && + aPlayStart < iDuration && + aPlayStart < aPlayEnd && + aPlayEnd <= iDuration ) + { + iPlayStart = aPlayStart; + iPlayEnd = aPlayEnd; + iPlayWindowSet = ESet; + + if (iState==EPlaying) + error = iAudioPlayControllerCommands.SetPlaybackWindow(aPlayStart, aPlayEnd); + } + else + error = KErrArgument; +#endif + return error; + } + +/** + * + * Clear the current playback window + * + * @return "TInt" One of the global error codes + * + * @since 7.0s + */ +TInt CMMFMdaAudioPlayerUtility::ClearPlayWindow() + { + // clear play window start - very important because this is assigned + // to iPosition when we stop & is used to set the position on the next Play() + //iPosition = iPlayStart = iPlayEnd = TTimeIntervalMicroSeconds(0); + + //iPlayWindowSet = EClear; + TInt err = KErrNone; + //if (iState==EPlaying) + //err = iAudioPlayControllerCommands.DeletePlaybackWindow(); + return err; + } + +/** +Sets the current playback balance + +@param aBalance + A value between KMMFBalanceMaxLeft and KMMFBalanceMaxRight. The default value is + KMMFBalanceCenter. + +@return One of the global error codes. + +@since 7.0s +*/ +TInt CMMFMdaAudioPlayerUtility::SetBalance(TInt aBalance) + { + //TInt err = iAudioPlayDeviceCommands.SetBalance(aBalance); + //return err; + return KErrNone; + } + +/** +Returns the bit rate of the audio clip. + +@param aBitRate + Bit rate of the audio clip. + +@return One of the global error codes. + +@since 7.0s +*/ +TInt CMMFMdaAudioPlayerUtility::GetBitRate(TUint& aBitRate) + { + //RMMFAudioControllerCustomCommands controller(iController); + //TInt err = controller.GetSourceBitRate(aBitRate); + //return err; + return KErrNone; + } + +const CMMFControllerImplementationInformation& CMMFMdaAudioPlayerUtility::ControllerImplementationInformationL() + { +#if 0 + if (!iControllerImplementationInformation) + { + if (iControllerUid==KNullUid) + User::Leave(KErrNotReady); + iControllerImplementationInformation = CMMFControllerImplementationInformation::NewL(iControllerUid); + } + return *iControllerImplementationInformation; +#endif + User::Leave(KErrNotSupported); + return *iControllerImplementationInformation; + } + +void CMMFMdaAudioPlayerUtility::GetAudioLoadingProgressL(TInt& aPercentageProgress) + { + //User::LeaveIfError(iAudioPlayControllerCommands.GetLoadingProgress(aPercentageProgress)); + User::Leave(KErrNotSupported); + } + +TInt CMMFMdaAudioPlayerUtility::CustomCommandSync(const TMMFMessageDestinationPckg& aDestination, TInt aFunction, const TDesC8& aDataTo1, const TDesC8& aDataTo2, TDes8& aDataFrom) + { + //return iController.CustomCommandSync(aDestination, aFunction, aDataTo1, aDataTo2, aDataFrom); + return KErrNotSupported; + } + +TInt CMMFMdaAudioPlayerUtility::CustomCommandSync(const TMMFMessageDestinationPckg& aDestination, TInt aFunction, const TDesC8& aDataTo1, const TDesC8& aDataTo2) + { + //return iController.CustomCommandSync(aDestination, aFunction, aDataTo1, aDataTo2); + return KErrNotSupported; + } + +void CMMFMdaAudioPlayerUtility::CustomCommandAsync(const TMMFMessageDestinationPckg& aDestination, TInt aFunction, const TDesC8& aDataTo1, const TDesC8& aDataTo2, TDes8& aDataFrom, TRequestStatus& aStatus) + { + //iController.CustomCommandAsync(aDestination, aFunction, aDataTo1, aDataTo2, aDataFrom, aStatus); + } + +void CMMFMdaAudioPlayerUtility::CustomCommandAsync(const TMMFMessageDestinationPckg& aDestination, TInt aFunction, const TDesC8& aDataTo1, const TDesC8& aDataTo2, TRequestStatus& aStatus) + { + //iController.CustomCommandAsync(aDestination, aFunction, aDataTo1, aDataTo2, aStatus); + } + +/** +Returns the current playback balance + +@param aBalance + A value between KMMFBalanceMaxLeft and KMMFBalanceMaxRight + +@return One of the global error codes. + +@since 7.0s +*/ +TInt CMMFMdaAudioPlayerUtility::GetBalance(TInt& aBalance) + { + //TInt err = iAudioPlayDeviceCommands.GetBalance(aBalance); + //return err; + aBalance = KMMFBalanceMaxLeft; + return KErrNone; + } + +MMMFDRMCustomCommand* CMMFMdaAudioPlayerUtility::GetDRMCustomCommand() + { +#if 0 + // TODO: check controller supports MMMFDRMCustomCommandImplementor + if (iDRMCustomCommands.IsSupported()) + { + return static_cast(&iDRMCustomCommands); + } + else + { + return NULL; + } +#endif + return NULL; + } + +void CMMFMdaAudioPlayerUtility::RegisterForAudioLoadingNotification(MAudioLoadingObserver& aLoadingObserver) + { + iLoadingObserver = &aLoadingObserver; + } + +TInt CMMFMdaAudioPlayerUtility::RegisterAudioResourceNotification(MMMFAudioResourceNotificationCallback& aCallback, + TUid aNotificationEventUid, + const TDesC8& aNotificationRegistrationData) + { +#if 0 + iAudioResourceNotificationCallBack = &aCallback; + TInt err = iNotificationRegistrationCommands.RegisterAsClient(aNotificationEventUid, aNotificationRegistrationData); + if(err == KErrNotReady) + { + iEventHolder = aNotificationEventUid; + iNotificationDataHolder = aNotificationRegistrationData; + return KErrNone; + } + iNotificationDataHolder = KNullDesC8; + iEventHolder = KNullUid; + return err; +#endif + return KErrNotSupported; + } + +TInt CMMFMdaAudioPlayerUtility::CancelRegisterAudioResourceNotification(TUid aNotificationEventId) + { +#if 0 + TInt err = iNotificationRegistrationCommands.CancelRegisterAsClient(aNotificationEventId); + if(err == KErrNotReady) + { + if(aNotificationEventId != KMMFEventCategoryAudioResourceAvailable) + { + return KErrNotSupported; + } + if(iEventHolder == KNullUid) + { + return KErrCancel; + } + iEventHolder = KNullUid; + iNotificationDataHolder = KNullDesC8; + return KErrNone; + } + return err; +#endif + return KErrNotSupported; + } + +TInt CMMFMdaAudioPlayerUtility::WillResumePlay() + { + //return iNotificationRegistrationCommands.WillResumePlay(); + return KErrNone; + } + +TInt CMMFMdaAudioPlayerUtility::SetThreadPriority(const TThreadPriority& aThreadPriority) const + { + //return iController.SetThreadPriority(aThreadPriority); + return KErrNone; + } + +CRepeatTrailingSilenceTimer* CRepeatTrailingSilenceTimer::NewL(MRepeatTrailingSilenceTimerObs& aObs) + { + CRepeatTrailingSilenceTimer* s = new(ELeave) CRepeatTrailingSilenceTimer(aObs); + CleanupStack::PushL(s); + s->ConstructL(); + CleanupStack::Pop(); + return s; + } + +void CRepeatTrailingSilenceTimer::RunL() + { + iObs.RepeatTrailingSilenceTimerComplete(); + } + +CRepeatTrailingSilenceTimer::CRepeatTrailingSilenceTimer(MRepeatTrailingSilenceTimerObs& aObs) : + CTimer(EPriorityHigh), + iObs(aObs) + { + CActiveScheduler::Add(this); + } + + + +CMMFMdaAudioPlayerCallBack* CMMFMdaAudioPlayerCallBack::NewL(MMdaAudioPlayerCallback& aCallback) + { + return new(ELeave) CMMFMdaAudioPlayerCallBack(aCallback); + } + +CMMFMdaAudioPlayerCallBack::CMMFMdaAudioPlayerCallBack(MMdaAudioPlayerCallback& aCallback) : + CActive(CActive::EPriorityHigh), iCallback(aCallback) + { + CActiveScheduler::Add(this); + } + +CMMFMdaAudioPlayerCallBack::~CMMFMdaAudioPlayerCallBack() + { + Cancel(); + } + +void CMMFMdaAudioPlayerCallBack::InitComplete(TInt aError, const TTimeIntervalMicroSeconds& aDuration) + { + iError = aError; + iDuration = aDuration; + iState = ECallbackInitComplete; + if (!IsActive()) + { + TRequestStatus* s = &iStatus; + SetActive(); + User::RequestComplete(s, KErrNone); + } + } + +void CMMFMdaAudioPlayerCallBack::PlayComplete(TInt aError) + { + iError = aError; + iState = ECallbackPlayComplete; + if (!IsActive()) + { + TRequestStatus* s = &iStatus; + SetActive(); + User::RequestComplete(s, KErrNone); + } + } + +void CMMFMdaAudioPlayerCallBack::RunL() + { + switch (iState) + { + case ECallbackInitComplete: + iCallback.MapcInitComplete(iError, iDuration); + break; + case ECallbackPlayComplete: + iCallback.MapcPlayComplete(iError); + break; + } + } + +void CMMFMdaAudioPlayerCallBack::DoCancel() + { + // Nothing to cancel + } diff -r bbbba97ac260 -r a3d769bd1939 breakdeps/mmfclientaudioplayer.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/breakdeps/mmfclientaudioplayer.h Thu Nov 18 11:17:37 2010 +0000 @@ -0,0 +1,250 @@ +// Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies). +// All rights reserved. +// This component and the accompanying materials are made available +// under the terms of "Eclipse Public License v1.0" +// which accompanies this distribution, and is available +// at the URL "http://www.eclipse.org/legal/epl-v10.html". +// +// Initial Contributors: +// Nokia Corporation - initial contribution. +// +// Contributors: +// +// Description: +// + + +#ifndef MMFCLIENTAUDIOPLAY_H +#define MMFCLIENTAUDIOPLAY_H + +#include +#include +#include +//#include +#include +#include +//#include +//#include +//#include +//#include "mmfclientutility.h" +//#include + +//static const TUid KUidMmfAudioController = {KMmfUidControllerAudio}; + +/** +Mixin class to allow notification that the timed silence has finished. +*/ +class MRepeatTrailingSilenceTimerObs + { +public: + virtual void RepeatTrailingSilenceTimerComplete() = 0; + }; + +/** +CTimer-based active object that waits the requested time before notifying its observer. +*/ +class CRepeatTrailingSilenceTimer : public CTimer + { +public: + static CRepeatTrailingSilenceTimer* NewL(MRepeatTrailingSilenceTimerObs& aObs); + void RunL(); +private: + CRepeatTrailingSilenceTimer(MRepeatTrailingSilenceTimerObs& aObs); +private: + MRepeatTrailingSilenceTimerObs& iObs; + }; + +/** +Active object utility class to allow the callback to be called asynchronously. +This should help prevent re-entrant code in clients of the mediaframework. +*/ +class CMMFMdaAudioPlayerCallBack : public CActive + { +public: + enum TCallbackState { + ECallbackInitComplete, + ECallbackPlayComplete + }; + + +public: + static CMMFMdaAudioPlayerCallBack* NewL(MMdaAudioPlayerCallback& aCallback); + ~CMMFMdaAudioPlayerCallBack(); + void InitComplete(TInt aError, const TTimeIntervalMicroSeconds& aDuration); + void PlayComplete(TInt aError); +private: + CMMFMdaAudioPlayerCallBack(MMdaAudioPlayerCallback& aCallback); + void RunL(); + void DoCancel(); +private: + MMdaAudioPlayerCallback& iCallback; + TInt iError; + TTimeIntervalMicroSeconds iDuration; + TCallbackState iState; + }; + +/** +Concrete implementation of the CMdaAudioPlayerUtility API. +@see CMdaAudioPlayerUtility +*/ +/*class CMMFMdaAudioPlayerUtility; +NONSHARABLE_CLASS( CMMFMdaAudioPlayerUtility ): public CBase, + public MMMFControllerEventMonitorObserver, + public MRepeatTrailingSilenceTimerObs, + public MMMFFindAndOpenControllerObserver +*/ +class CMMFMdaAudioPlayerUtility; +NONSHARABLE_CLASS( CMMFMdaAudioPlayerUtility ): public CTimer + { +friend class CMdaAudioPlayerUtility; +// friends for Unit testing only + +public: + enum TMMFAudioPlayerState + { + EStopped, + EOpening, + EPaused, + EPlaying + }; +public: + static CMMFMdaAudioPlayerUtility* NewFilePlayerL(const TDesC& aFileName, + MMdaAudioPlayerCallback& aCallback, + TInt aPriority = EMdaPriorityNormal, + TInt aPref = EMdaPriorityPreferenceTimeAndQuality, + CMdaServer* aServer = NULL); + static CMMFMdaAudioPlayerUtility* NewDesPlayerL(const TDesC8& aData, + MMdaAudioPlayerCallback& aCallback, + TInt aPriority = EMdaPriorityNormal, + TInt aPref = EMdaPriorityPreferenceTimeAndQuality, + CMdaServer* aServer = NULL); + static CMMFMdaAudioPlayerUtility* NewDesPlayerReadOnlyL(const TDesC8& aData, + MMdaAudioPlayerCallback& aCallback, + TInt aPriority = EMdaPriorityNormal, + TInt aPref = EMdaPriorityPreferenceTimeAndQuality, + CMdaServer* aServer = NULL); + + static CMMFMdaAudioPlayerUtility* NewL(MMdaAudioPlayerCallback& aCallback, + TInt aPriority = EMdaPriorityNormal, + TInt aPref = EMdaPriorityPreferenceTimeAndQuality); + +/** + Destructor +*/ + ~CMMFMdaAudioPlayerUtility(); + + void UseSharedHeap(); + + void OpenFileL(const TDesC& aFileName); + void OpenFileL(const RFile& aFile); + void OpenFileL(const TMMSource& aSource); + + void OpenDesL(const TDesC8& aDescriptor); + void OpenUrlL(const TDesC& aUrl, TInt aIapId=KUseDefaultIap, const TDesC8& aMimeType = KNullDesC8); + void Play(); + void Stop(); + TInt SetVolume(TInt aVolume); + void SetRepeats(TInt aRepeatNumberOfTimes, const TTimeIntervalMicroSeconds& aTrailingSilence); + void SetVolumeRamp(const TTimeIntervalMicroSeconds& aRampDuration); + const TTimeIntervalMicroSeconds& Duration(); + TInt MaxVolume(); + + // API Additions since version 7.0 + TInt Pause(); + void Close(); + TInt GetPosition(TTimeIntervalMicroSeconds& aPosition); + void SetPosition(const TTimeIntervalMicroSeconds& aPosition); + + TInt SetPriority(TInt aPriority, TInt aPref); + TInt GetVolume(TInt& aVolume); + TInt GetNumberOfMetaDataEntries(TInt& aNumEntries); + CMMFMetaDataEntry* GetMetaDataEntryL(TInt aMetaDataIndex); + TInt SetPlayWindow(const TTimeIntervalMicroSeconds& aStart, + const TTimeIntervalMicroSeconds& aEnd); + TInt ClearPlayWindow(); + TInt SetBalance(TInt aBalance = KMMFBalanceCenter); + TInt GetBalance(TInt& aBalance); + TInt GetBitRate(TUint& aBitRate); + + void RegisterForAudioLoadingNotification(MAudioLoadingObserver& aCallback); + void GetAudioLoadingProgressL(TInt& aPercentageProgress); + const CMMFControllerImplementationInformation& ControllerImplementationInformationL(); + + TInt RegisterAudioResourceNotification(MMMFAudioResourceNotificationCallback& aCallback,TUid aNotificationEventUid,const TDesC8& aNotificationRegistrationData = KNullDesC8); + TInt CancelRegisterAudioResourceNotification(TUid aNotificationEventId); + TInt WillResumePlay(); + TInt CustomCommandSync(const TMMFMessageDestinationPckg& aDestination, TInt aFunction, const TDesC8& aDataTo1, const TDesC8& aDataTo2, TDes8& aDataFrom); + TInt CustomCommandSync(const TMMFMessageDestinationPckg& aDestination, TInt aFunction, const TDesC8& aDataTo1, const TDesC8& aDataTo2); + void CustomCommandAsync(const TMMFMessageDestinationPckg& aDestination, TInt aFunction, const TDesC8& aDataTo1, const TDesC8& aDataTo2, TDes8& aDataFrom, TRequestStatus& aStatus); + void CustomCommandAsync(const TMMFMessageDestinationPckg& aDestination, TInt aFunction, const TDesC8& aDataTo1, const TDesC8& aDataTo2, TRequestStatus& aStatus); + + MMMFDRMCustomCommand* GetDRMCustomCommand(); + + TInt SetThreadPriority(const TThreadPriority& aThreadPriority) const; + + TMMFDurationInfo Duration(TTimeIntervalMicroSeconds& aDuration); + void RunL(); +protected: + CMMFMdaAudioPlayerUtility(MMdaAudioPlayerCallback& aCallback, TInt aPriority, TInt aPref); + void ConstructL(); + void DoPlay(); + +private: + void PlaySilence(); + +private: + // last play window command + enum TPlayWindowCommand + { + ENone, + ESet, + EClear + }; + + MMdaAudioPlayerCallback& iCallback; + CMMFMdaAudioPlayerCallBack* iAsyncCallBack; + MAudioLoadingObserver* iLoadingObserver; + MMMFAudioResourceNotificationCallback* iAudioResourceNotificationCallBack; + //RMMFController iController; + CMMFControllerEventMonitor* iControllerEventMonitor; + TMMFAudioPlayerState iState; + TTimeIntervalMicroSeconds iDuration; // Needed because of api "Duration()" that returns a reference + TMMFPrioritySettings iPrioritySettings; + + TInt iNumberOfTimesPlayed; + TInt iNumberOfTimesToRepeat; + TTimeIntervalMicroSeconds iTrailingSilence; + TTimeIntervalMicroSeconds iTrailingSilenceLeftToPlay; + CRepeatTrailingSilenceTimer* iRepeatTrailingSilenceTimer; + + // Source and sink handle info + //TMMFMessageDestination iSourceHandle; + //TMMFMessageDestination iSinkHandle; + + // Custom command handlers + //RMMFAudioPlayDeviceCustomCommands iAudioPlayDeviceCommands; + //RMMFAudioPlayControllerCustomCommands iAudioPlayControllerCommands; + //RMMFResourceNotificationCustomCommands iNotificationRegistrationCommands; + //RMMFDRMCustomCommands iDRMCustomCommands; + //RMMFAudioPlayControllerSetRepeatsCustomCommands iAudioPlayControllerSetRepeatsCommands; + + // Current playback time so we can resume from where we were stopped + TTimeIntervalMicroSeconds iPosition; + + // Play window start and end times and whether it has been set + TTimeIntervalMicroSeconds iPlayStart; + TTimeIntervalMicroSeconds iPlayEnd; + TPlayWindowCommand iPlayWindowSet; + RArray iMediaIds; + + CMMFControllerImplementationInformation* iControllerImplementationInformation; + TUid iControllerUid; + + // utility class to find and open a suitable controller asynchronously + //CMMFFindAndOpenController* iFindAndOpenController; + TUid iEventHolder; + TBuf8<256> iNotificationDataHolder; + TBool iRepeatCancelled; + }; + +#endif diff -r bbbba97ac260 -r a3d769bd1939 breakdeps/mmfclienttoneplayer.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/breakdeps/mmfclienttoneplayer.cpp Thu Nov 18 11:17:37 2010 +0000 @@ -0,0 +1,1059 @@ +// Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies). +// All rights reserved. +// This component and the accompanying materials are made available +// under the terms of "Eclipse Public License v1.0" +// which accompanies this distribution, and is available +// at the URL "http://www.eclipse.org/legal/epl-v10.html". +// +// Initial Contributors: +// Nokia Corporation - initial contribution. +// +// Contributors: +// +// Description: +// + +#include + +#include "mmfclienttoneplayer.h" +using namespace ContentAccess; +enum TMmfMdaAudioToneUtility + { + EBadArgument, + EPostConditionViolation, + EPlayStartedCalledWithError + }; + +void Panic(TInt aPanicCode) + { + _LIT(KMMFMediaClientAudioPanicCategory, "Stem_MMFAudioClient"); + User::Panic(KMMFMediaClientAudioPanicCategory, aPanicCode); + } + +// Dummy DevSound class + +CDummyDevSound::CDummyDevSound() + : CTimer(EPriorityStandard) + {} + +CDummyDevSound* CDummyDevSound::NewL() + { + CDummyDevSound* self = new(ELeave) CDummyDevSound(); + return self; + } + +void CDummyDevSound::InitializeL(MDevSoundObserver& aDevSoundObserver) + { + iObserver = &aDevSoundObserver; + iObserver->InitializeComplete(KErrNone); + } + +void CDummyDevSound::Play(const TTimeIntervalMicroSeconds& aDuration) + { + if (IsActive()) + { + // currently playing - ignore the request? + return; + } + TTimeIntervalMicroSeconds32 d = I64LOW(aDuration.Int64()); + if (d <= TTimeIntervalMicroSeconds32(0)) + { + d = 10; + } + After(d); + } + +void CDummyDevSound::RunL() + { + RDebug::Printf("!Beep!\n"); + iObserver->ToneFinished(KErrNone); + } + +/** +Creates a new instance of the tone player utility. +The default volume is set to MaxVolume() / 2. + +@param aObserver + A class to receive notifications from the tone player. +@param aServer + This parameter is no longer used and should be NULL. + +@return A pointer to the new audio tone player utility object. + +@since 5.0 +*/ +EXPORT_C CMdaAudioToneUtility* CMdaAudioToneUtility::NewL(MMdaAudioToneObserver& aObserver, CMdaServer* aServer /*= NULL*/) + { + return CMdaAudioToneUtility::NewL(aObserver, aServer, EMdaPriorityNormal, EMdaPriorityPreferenceTimeAndQuality); + } + +/** +Creates a new instance of the tone player utility. +The default volume is set to MaxVolume() / 2. + +@param aObserver + A class to receive notifications from the tone player +@param aServer + This parameter is no longer used and should be NULL +@param aPriority + The Priority Value - this client's relative priority. This is a value between EMdaPriorityMin and + EMdaPriorityMax and represents a relative priority. A higher value indicates a more important request. +@param aPref + The Priority Preference - an additional audio policy parameter. The suggested default is + EMdaPriorityPreferenceNone. Further values are given by TMdaPriorityPreference, and additional + values may be supported by given phones and/or platforms, but should not be depended upon by + portable code. + +@return A pointer to the new audio tone player utility object. + +@since 5.0 + +Note: The Priority Value and Priority Preference are used primarily when deciding what to do when +several audio clients attempt to play or record simultaneously. In addition to the Priority Value and Preference, +the adaptation may consider other parameters such as the SecureId and Capabilities of the client process. +Whatever, the decision as to what to do in such situations is up to the audio adaptation, and may +vary between different phones. Portable applications are advised not to assume any specific behaviour. +*/ +EXPORT_C CMdaAudioToneUtility* CMdaAudioToneUtility::NewL(MMdaAudioToneObserver& aObserver, CMdaServer* /*aServer = NULL*/, + TInt aPriority /*= EMdaPriorityNormal*/, + TInt aPref /*= EMdaPriorityPreferenceTimeAndQuality*/) + { + CMdaAudioToneUtility* self = new(ELeave) CMdaAudioToneUtility(); + CleanupStack::PushL(self); + self->iProperties = CMMFMdaAudioToneUtility::NewL(aObserver, NULL, aPriority, aPref); + CleanupStack::Pop(); //self + return self; + } + +/** +Destructor. Frees any resources held by the tone player + +@since 5.0 +*/ +CMdaAudioToneUtility::~CMdaAudioToneUtility() + { + delete iProperties; + } + +/** +Returns the current state of the audio tone utility. + +@return The state of the audio tone utility. + +@since 5.0 +*/ +TMdaAudioToneUtilityState CMdaAudioToneUtility::State() + { + ASSERT(iProperties); + return iProperties->State(); + } + +/** +Returns the maximum volume supported by the device. This is the maximum value which can be +passed to CMdaAudioToneUtility::SetVolume(). + +@return The maximum volume. This value is platform dependent but is always greater than or equal to one. + +@since 5.0 +*/ +TInt CMdaAudioToneUtility::MaxVolume() + { + ASSERT(iProperties); + return iProperties->MaxVolume(); + } + +/** +Returns an integer representing the current volume of the audio device. + +@return The current volume. + +@since 5.0 +*/ +TInt CMdaAudioToneUtility::Volume() + { + ASSERT(iProperties); + return iProperties->Volume(); + } + +/** +Changes the volume of the audio device. + +The volume can be changed before or during play and is effective +immediately. + +@param aVolume + The volume setting. This can be any value from zero to + the value returned by a call to + CMdaAudioToneUtility::MaxVolume(). + Setting a zero value mutes the sound. Setting the + maximum value results in the loudest possible sound. + +@since 5.0 +*/ +void CMdaAudioToneUtility::SetVolume(TInt aVolume) + { + ASSERT(iProperties); + iProperties->SetVolume(aVolume); + } + +/** +Changes the clients priority. + +@param aPriority + The Priority Value. +@param aPref + The Priority Preference. + +@see CMdaAudioToneUtility::NewL() + +@since 5.0 + +*/ +void CMdaAudioToneUtility::SetPriority(TInt aPriority, TInt aPref) + { + ASSERT(iProperties); + iProperties->SetPriority(aPriority, aPref); + } + +/** +Changes the duration of DTMF tones, the gaps between DTMF tones and the +pauses. + +@param aToneLength + The duration of the DTMF tone in microseconds. +@param aToneOffLength + The gap between DTFM tones in microseconds. +@param aPauseLength + Pauses in microseconds +*/ +void CMdaAudioToneUtility::SetDTMFLengths(TTimeIntervalMicroSeconds32 aToneLength, + TTimeIntervalMicroSeconds32 aToneOffLength, + TTimeIntervalMicroSeconds32 aPauseLength) + { + ASSERT(iProperties); + iProperties->SetDTMFLengths(aToneLength, aToneOffLength, aPauseLength); + } + +/** +Sets the number of times the tone sequence is to be repeated during +the play operation. + +A period of silence can follow each playing of the tone sequence. The +tone sequence can be repeated indefinitely. + +@param aRepeatNumberOfTimes + The number of times the tone sequence, together with + the trailing silence, is to be repeated. If this is + set to KMdaRepeatForever, then the tone + sequence, together with the trailing silence, is + repeated indefinitely. The behaviour is undefined for values other than + KMdaRepeatForever, zero and positive. +@param aTrailingSilence + The time interval of the training silence. The behaviour is undefined + for values other than zero and positive. + +@since 5.0 +*/ +void CMdaAudioToneUtility::SetRepeats(TInt aRepeatNumberOfTimes, + const TTimeIntervalMicroSeconds& aTrailingSilence) + { + ASSERT(iProperties); + iProperties->SetRepeats(aRepeatNumberOfTimes, aTrailingSilence); + } + +/** +Defines the period over which the volume level is to rise smoothly +from nothing to the normal volume level. + +@param aRampDuration + The period over which the volume is to rise. A zero + value causes the tone to be played at the normal level + for the full duration of the playback. A value which + is longer than the duration of the tone sequence means + that the tone never reaches its normal volume level. + +@since 5.0 +*/ +void CMdaAudioToneUtility::SetVolumeRamp(const TTimeIntervalMicroSeconds& aRampDuration) + { + ASSERT(iProperties); + iProperties->SetVolumeRamp(aRampDuration); + } + +/** +Returns the number of available pre-defined tone sequences. + +@return The number of tone sequences. This value is implementation + dependent but is always greater than or equal to zero. + +@since 5.0 +*/ +TInt CMdaAudioToneUtility::FixedSequenceCount() + { + ASSERT(iProperties); + return iProperties->FixedSequenceCount(); + } + +/** +Returns the name assigned to a specific pre-defined tone sequence. + +@param aSequenceNumber + The index identifying the specific pre-defined tone sequence. + Index values are relative to zero. This can be any value from + zero to the value returned by a call to FixedSequenceCount() - 1. + The function raises a panic if sequence number is not within this + range. + +@see CMMFDevSound::FixedSequenceName(TInt aSequenceNumber) +@see FixedSequenceCount() + +@return The name assigned to the tone sequence. + +@since 5.0 +*/ +const TDesC& CMdaAudioToneUtility::FixedSequenceName(TInt aSequenceNumber) + { + ASSERT(iProperties); + return iProperties->FixedSequenceName(aSequenceNumber); + } + +/** +Configures the audio tone player utility to play a single tone. + +This function is asynchronous. On completion, the observer callback +function MMdaAudioToneObserver::MatoPrepareComplete() is +called, indicating the success or failure of the configuration +operation.The configuration operation can be cancelled by calling +CMdaAudioToneUtility::CancelPrepare(). The configuration +operation cannot be started if a play operation is in progress. + +@param aFrequency + The frequency (pitch) of the tone in Hz. +@param aDuration + The duration of the tone in microseconds. +@since 5.0 +*/ +void CMdaAudioToneUtility::PrepareToPlayTone(TInt aFrequency, const TTimeIntervalMicroSeconds& aDuration) + { + ASSERT(iProperties); + iProperties->PrepareToPlayTone(aFrequency, aDuration); + } + +/** +Configures the audio tone player utility to play a dual tone. +The generated tone consists of two sine waves of different +frequencies summed together. + +This function is asynchronous. On completion, the observer callback +function MMdaAudioToneObserver::MatoPrepareComplete() is +called, indicating the success or failure of the configuration +operation. The configuration operation can be cancelled by calling +CMdaAudioToneUtility::CancelPrepare(). The configuration +operation cannot be started if a play operation is in progress. + +@param aFrequencyOne + The first frequency (pitch) of the tone. +@param aFrequencyTwo + The second frequency (pitch) of the tone. +@param aDuration + The duration of the tone in microseconds. + +@since 7.0sy +*/ +EXPORT_C void CMdaAudioToneUtility::PrepareToPlayDualTone(TInt aFrequencyOne, TInt aFrequencyTwo, const TTimeIntervalMicroSeconds& aDuration) + { + ASSERT(iProperties); + iProperties->PrepareToPlayDualTone(aFrequencyOne, aFrequencyTwo, aDuration); + } + +/** +Configures the audio tone utility player to play a DTMF (Dual-Tone +Multi-Frequency) string. + +This function is asynchronous. On completion, the observer callback +function MMdaAudioToneObserver::MatoPrepareComplete() is +called, indicating the success or failure of the configuration +operation. The configuration operation can be cancelled by calling +CMdaAudioToneUtility::CancelPrepare(). The configuration +operation cannot be started if a play operation is in progress. + +@param aDTMF + A descriptor containing the DTMF string. + +@since 5.0 +*/ +void CMdaAudioToneUtility::PrepareToPlayDTMFString(const TDesC& aDTMF) + { + ASSERT(iProperties); + iProperties->PrepareToPlayDTMFString(aDTMF); + } + +/** +Configures the audio tone player utility to play a tone sequence +contained in a descriptor. + +This function is asynchronous. On completion, the observer callback +function MMdaAudioToneObserver::MatoPrepareComplete() is +called, indicating the success or failure of the configuration +operation. The configuration operation can be cancelled by calling +CMdaAudioToneUtility::CancelPrepare(). The configuration +operation cannot be started if a play operation is in progress. + +@param aSequence + The descriptor containing the tone sequence. The + format of the data is unspecified but is expected to + be platform dependent. A device might support more + than one form of sequence data. + +@since 5.0 +*/ +void CMdaAudioToneUtility::PrepareToPlayDesSequence(const TDesC8& aSequence) + { + ASSERT(iProperties); + iProperties->PrepareToPlayDesSequence(aSequence); + } + +/** +Configures the audio tone player utility to play a tone sequence +contained in a file. + +This function is asynchronous. On completion, the observer callback +function MMdaAudioToneObserver::MatoPrepareComplete() is +called, indicating the success or failure of the configuration +operation. The configuration operation can be cancelled by calling +CMdaAudioToneUtility::CancelPrepare(). The configuration +operation cannot be started if a play operation is in progress. + +@param aFileName + The full path name of the file containing the tone + sequence. The format of the data is unspecified but is + expected to be platform dependent. A device might + support more than one form of sequence data. + +@since 5.0 +*/ +void CMdaAudioToneUtility::PrepareToPlayFileSequence(const TDesC& aFileName) + { + ASSERT(iProperties); + iProperties->PrepareToPlayFileSequence(aFileName); + } + +/** +Configures the audio tone player utility to play a tone sequence +contained in a file. + +This function is asynchronous. On completion, the observer callback +function MMdaAudioToneObserver::MatoPrepareComplete() is +called, indicating the success or failure of the configuration +operation. The configuration operation can be cancelled by calling +CMdaAudioToneUtility::CancelPrepare(). The configuration +operation cannot be started if a play operation is in progress. + +@param aFile + A handle to an open file containing the tone + sequence. The format of the data is unspecified but is + expected to be platform dependent. A device might + support more than one form of sequence data. + +@since 5.0 +*/ +EXPORT_C void CMdaAudioToneUtility::PrepareToPlayFileSequence(RFile& aFile) + { + ASSERT(iProperties); + iProperties->PrepareToPlayFileSequence(aFile); + } + + +/** +Configures the audio tone player utility to play the specified +pre-defined tone sequence. + +This function is asynchronous. On completion, the observer callback +function MMdaAudioToneObserver::MatoPrepareComplete() is +called, indicating the success or failure of the configuration +operation. The configuration operation can be cancelled by calling +CMdaAudioToneUtility::CancelPrepare(). The configuration +operation cannot be started if a play operation is in progress. + +@param aSequenceNumber + An index into the set of pre-defined tone sequences. + This can be any value from zero to the value returned by a + call to FixedSequenceCount() - 1. + If the sequence number is not within this range, a panic will be + raised when Play() is called later. + +@see FixedSequenceCount() +@see CMMFDevSound::PlayFixedSequenceL(TInt aSequenceNumber) + +@since 5.0 +*/ +void CMdaAudioToneUtility::PrepareToPlayFixedSequence(TInt aSequenceNumber) + { + ASSERT(iProperties); + iProperties->PrepareToPlayFixedSequence(aSequenceNumber); + } + +/** +Cancels the configuration operation. + +The observer callback function +MMdaAudioToneObserver::MatoPrepareComplete() is not +called. + +@since 5.0 +*/ +void CMdaAudioToneUtility::CancelPrepare() + { + ASSERT(iProperties); + iProperties->CancelPrepare(); + } + +/** +Plays the tone. + +The tone played depends on the current configuration.This function is +asynchronous. On completion, the observer callback function +MMdaAudioToneObserver::MatoPlayComplete() is called, +indicating the success or failure of the play operation.The play +operation can be cancelled by +calling CMdaAudioToneUtility::CancelPlay(). + +@since 5.0 +*/ +void CMdaAudioToneUtility::Play() + { + ASSERT(iProperties); + iProperties->Play(); + } + +EXPORT_C TInt CMdaAudioToneUtility::Pause() + { + ASSERT(iProperties); + return iProperties->Pause(); + } + +EXPORT_C TInt CMdaAudioToneUtility::Resume() + { + ASSERT(iProperties); + return iProperties->Resume(); + } + +/** +Cancels the tone playing operation. + +The observer callback +function MMdaAudioToneObserver::MatoPlayComplete() is not +called. + +@since 5.0 +*/ +void CMdaAudioToneUtility::CancelPlay() + { + ASSERT(iProperties); + iProperties->CancelPlay(); + } + +/** +Sets the stereo balance for playback. + +@param aBalance + The balance. Should be between KMMFBalanceMaxLeft and KMMFBalanceMaxRight. + +@return An error code indicating if the function call was successful. KErrNone on success, otherwise + another of the system-wide error codes. + +@since 7.0s +*/ +EXPORT_C void CMdaAudioToneUtility::SetBalanceL(TInt aBalance /*=KMMFBalanceCenter*/) + { + ASSERT(iProperties); + iProperties->SetBalanceL(aBalance); + } + +/** + * Returns The current playback balance.This function may not return the same value + * as passed to SetBalanceL depending on the internal implementation in + * the underlying components. + * + * @return The balance. Should be between KMMFBalanceMaxLeft and KMMFBalanceMaxRight. + * + * @since 7.0s + */ +EXPORT_C TInt CMdaAudioToneUtility::GetBalanceL() + { + ASSERT(iProperties); + return iProperties->GetBalanceL(); + } + +/** +Retrieves a custom interface to the underlying device. + +@param aInterfaceId + The interface UID, defined with the custom interface. + +@return A pointer to the interface implementation, or NULL if the device does not + implement the interface requested. The return value must be cast to the + correct type by the user. +*/ +EXPORT_C TAny* CMdaAudioToneUtility::CustomInterface(TUid aInterfaceId) + { + ASSERT(iProperties); + return 0; + } + +EXPORT_C void CMdaAudioToneUtility::RegisterPlayStartCallback(MMdaAudioTonePlayStartObserver& aObserver) + { + ASSERT(iProperties); + iProperties->RegisterPlayStartCallback(aObserver); + } + + + +CMMFMdaAudioToneUtility* CMMFMdaAudioToneUtility::NewL(MMdaAudioToneObserver& aObserver, CMdaServer* /*aServer = NULL*/, + TInt aPriority /*= EMdaPriorityNormal*/, + TInt aPref /*= EMdaPriorityPreferenceTimeAndQuality*/) + + { + CMMFMdaAudioToneUtility* self = new(ELeave) CMMFMdaAudioToneUtility(aObserver, aPriority, aPref); + CleanupStack::PushL(self); + self->ConstructL(); + CleanupStack::Pop(self); + return self; + } + + + +CMMFMdaAudioToneUtility::CMMFMdaAudioToneUtility(MMdaAudioToneObserver& aCallback, TInt aPriority, TInt aPref) : + iCallback(aCallback) + { + iPrioritySettings.iPref = aPref; + iPrioritySettings.iPriority = aPriority; + iState = EMdaAudioToneUtilityNotReady; + iInitialized = EFalse; + iPlayCalled = EFalse; + +#ifdef _DEBUG + iPlayCalledBeforeInitialized = EFalse; +#endif + } + +void CMMFMdaAudioToneUtility::ConstructL() + { + iAsyncCallback = CMMFMdaAudioToneObserverCallback::NewL(*this, *this); + + // iDevSound = CMMFDevSound::NewL(); + // iDevSound->InitializeL(*this,EMMFStateTonePlaying); + + iTimer = CDummyDevSound::NewL(); + iTimer->InitializeL(*this); + + SetVolume(MaxVolume()/2 ); // set the volume to an intermediate value + } + +CMMFMdaAudioToneUtility::~CMMFMdaAudioToneUtility() + { + delete iAsyncCallback; + } + + + +void CMMFMdaAudioToneUtility::InitializeComplete(TInt aError) + { +#ifdef _DEBUG + __ASSERT_ALWAYS(!iPlayCalledBeforeInitialized, User::Panic(_L("PlayInitialized called before InitializeComplete"), 0)); +#endif + iInitialized = ETrue; + + if (iPlayCalled) + { + // Play() is called before InitializeComplete() + if (aError == KErrNone) + { + PlayAfterInitialized(); + } + else + { + // InitializeComplete() with error other than KErrNone + iState = EMdaAudioToneUtilityNotReady; + iAsyncCallback->MatoPlayComplete(aError); + } + iPlayCalled = EFalse; + } + iInitializeState = aError; + } + +void CMMFMdaAudioToneUtility::ToneFinished(TInt aError) + { + if (aError != KErrCancel) + { + if (aError == KErrUnderflow) + { + aError = KErrNone; + } + + iAsyncCallback->MatoPlayComplete(aError); + } + // else don't want to callback after a cancel + } + + +TMdaAudioToneUtilityState CMMFMdaAudioToneUtility::State() + { + return iState; + } + +TInt CMMFMdaAudioToneUtility::MaxVolume() + { + return 100; + } + +TInt CMMFMdaAudioToneUtility::Volume() + { + return iDevSoundVolume; + } + +void CMMFMdaAudioToneUtility::SetVolume(TInt aVolume) + { + iDevSoundVolume = aVolume; + } + +void CMMFMdaAudioToneUtility::SetPriority(TInt aPriority, TInt aPref) + { + iPrioritySettings.iPref = aPref; + iPrioritySettings.iPriority = aPriority; + } + +void CMMFMdaAudioToneUtility::SetDTMFLengths(TTimeIntervalMicroSeconds32 aToneLength, + TTimeIntervalMicroSeconds32 aToneOffLength, + TTimeIntervalMicroSeconds32 aPauseLength) + { + } + +void CMMFMdaAudioToneUtility::SetRepeats(TInt aRepeatNumberOfTimes, const TTimeIntervalMicroSeconds& aTrailingSilence) + { + // iDevSound->SetToneRepeats(aRepeatNumberOfTimes, aTrailingSilence); + } + +void CMMFMdaAudioToneUtility::SetVolumeRamp(const TTimeIntervalMicroSeconds& aRampDuration) + { + } + +TInt CMMFMdaAudioToneUtility::FixedSequenceCount() + { + return 1; // iDevSound->FixedSequenceCount(); + } + +_LIT(KFixedSequenceName, "FixedSequenceName"); +const TDesC& CMMFMdaAudioToneUtility::FixedSequenceName(TInt aSequenceNumber) + { + return KFixedSequenceName; + } + +void CMMFMdaAudioToneUtility::CalculateBalance( TInt& aBalance, TInt aLeft, TInt aRight ) const + { + } + + +void CMMFMdaAudioToneUtility::CalculateLeftRightBalance( TInt& aLeft, TInt& aRight, TInt aBalance ) const + { + } + + +void CMMFMdaAudioToneUtility::SetBalanceL(TInt aBalance) + { + iDevSoundBalance = aBalance; + } + +TInt CMMFMdaAudioToneUtility::GetBalanceL() + { + return iDevSoundBalance; + } + +void CMMFMdaAudioToneUtility::PrepareToPlayTone(TInt aFrequency, const TTimeIntervalMicroSeconds& aDuration) + { + iDuration = aDuration; + iAsyncCallback->MatoPrepareComplete(KErrNone); + } + +void CMMFMdaAudioToneUtility::PrepareToPlayDualTone(TInt aFrequencyOne, TInt aFrequencyTwo, const TTimeIntervalMicroSeconds& aDuration) + { + iDuration = aDuration; + iAsyncCallback->MatoPrepareComplete(KErrNone); + } + +void CMMFMdaAudioToneUtility::PrepareToPlayDTMFString(const TDesC& aDTMF) + { + iDuration = TTimeIntervalMicroSeconds(100); + iAsyncCallback->MatoPrepareComplete(KErrNone); + } + +void CMMFMdaAudioToneUtility::PrepareToPlayDesSequence(const TDesC8& aSequence) + { + iDuration = TTimeIntervalMicroSeconds(100); + iAsyncCallback->MatoPrepareComplete(KErrNone); + } + +void CMMFMdaAudioToneUtility::PrepareToPlayFileSequence(const TDesC& aFileName) + { + iDuration = TTimeIntervalMicroSeconds(100); + iAsyncCallback->MatoPrepareComplete(KErrNone); + } + +void CMMFMdaAudioToneUtility::PrepareToPlayFileSequence(RFile& aFileName) + { + iDuration = TTimeIntervalMicroSeconds(100); + iAsyncCallback->MatoPrepareComplete(KErrNone); + } + + + + +void CMMFMdaAudioToneUtility::PrepareToPlayFixedSequence(TInt aSequenceNumber) + { + iDuration = TTimeIntervalMicroSeconds(100); + iSequenceNumber = aSequenceNumber; + iAsyncCallback->MatoPrepareComplete(KErrNone); + } + +void CMMFMdaAudioToneUtility::CancelPrepare() + { + if (iState == EMdaAudioToneUtilityPrepared) + { + iState = EMdaAudioToneUtilityNotReady; + } + // Cancel the AO + iAsyncCallback->Cancel(); + } + +TInt CMMFMdaAudioToneUtility::Pause() + { + // Handle scenario when Pause is called before playback has started + if (iState != EMdaAudioToneUtilityPlaying || (iState == EMdaAudioToneUtilityPlaying && !iInitialized)) + { + return KErrNotReady; + } + + iState = EMdaAudioToneUtilityPaused; + return KErrNone; + } + +TInt CMMFMdaAudioToneUtility::Resume() + { + if (iState != EMdaAudioToneUtilityPaused) + { + return KErrNotReady; + } + + iState = EMdaAudioToneUtilityPlaying; + return KErrNone; + } + +void CMMFMdaAudioToneUtility::Play() + { + TInt error = KErrNone; + + if ((iState == EMdaAudioToneUtilityPlaying) || (iState == EMdaAudioToneUtilityPaused) || iPlayCalled) + { + iState = EMdaAudioToneUtilityNotReady; + iAsyncCallback->MatoPlayComplete(error); + return; + } + + iState = EMdaAudioToneUtilityPlaying; + + if (iInitialized) + { + // Play() is called after InitializeComplete() + if (iInitializeState) + { + // InitializeComplete() with error other than KErrNone + iState = EMdaAudioToneUtilityNotReady; + iAsyncCallback->MatoPlayComplete(iInitializeState); + } + else + { + PlayAfterInitialized(); + } + } + else + { + // Play() is called before InitializeComplete() + iPlayCalled = ETrue; + } + } + +void CMMFMdaAudioToneUtility::PlayAfterInitialized() + { +#ifdef _DEBUG + if (iInitialized == EFalse) + { + iPlayCalledBeforeInitialized = ETrue; + } +#endif + + // Really play something! + // TRAP(error, iDevSound->PlayToneL(c->Frequency(), c->Duration())); + iTimer->Play(iDuration); + +#if 0 // the error case + iState = EMdaAudioToneUtilityNotReady; + iAsyncCallback->MatoPlayComplete(error); + return; +#endif + + if(iPlayStartObserver) + { + iAsyncCallback->MatoPlayStarted(KErrNone); + } + } + +void CMMFMdaAudioToneUtility::CancelPlay() + { + iTimer->Cancel(); + if(iState == EMdaAudioToneUtilityPlaying || iState == EMdaAudioToneUtilityPaused) + { + iState = EMdaAudioToneUtilityPrepared; + } + // Cancel the AO + iAsyncCallback->Cancel(); + iPlayCalled = EFalse; + } + + +void CMMFMdaAudioToneUtility::SendEventToClient(const TMMFEvent& /*aEvent*/) + { + if(iState == EMdaAudioToneUtilityPlaying) + { + iState = EMdaAudioToneUtilityPrepared; + } + + iAsyncCallback->MatoPlayComplete(KErrInUse); + } + + +void CMMFMdaAudioToneUtility::RegisterPlayStartCallback(MMdaAudioTonePlayStartObserver& aObserver) + { + iPlayStartObserver = &aObserver; + } + +void CMMFMdaAudioToneUtility::MatoPrepareComplete(TInt aError) + { + if (!aError) + { + iState = EMdaAudioToneUtilityPrepared; + } + else + { + iState = EMdaAudioToneUtilityNotReady; + } + + iCallback.MatoPrepareComplete(aError); + } + +void CMMFMdaAudioToneUtility::MatoPlayComplete(TInt aError) + { + iState = EMdaAudioToneUtilityPrepared; + iCallback.MatoPlayComplete(aError); + } + +void CMMFMdaAudioToneUtility::MatoPlayStarted(TInt aError) + { + __ASSERT_DEBUG(aError==KErrNone, Panic(EPlayStartedCalledWithError)); + + // Not always there is an observer registered + if(iPlayStartObserver) + { + iPlayStartObserver->MatoPlayStarted(aError); + } + } + +// CustomInferface - just pass on to DevSound. +TAny* CMMFMdaAudioToneUtility::CustomInterface(TUid aInterfaceId) + { + return 0; + } + + +CMMFMdaAudioToneObserverCallback* CMMFMdaAudioToneObserverCallback::NewL(MMdaAudioToneObserver& aCallback, MMdaAudioTonePlayStartObserver& aPlayStartCallback) + { + return new(ELeave) CMMFMdaAudioToneObserverCallback(aCallback, aPlayStartCallback); + } + +CMMFMdaAudioToneObserverCallback::CMMFMdaAudioToneObserverCallback(MMdaAudioToneObserver& aCallback, MMdaAudioTonePlayStartObserver& aPlayStartCallback) : + CActive(CActive::EPriorityHigh), + iCallback(aCallback), + iPlayStartCallback(aPlayStartCallback) + { + CActiveScheduler::Add(this); + } + +CMMFMdaAudioToneObserverCallback::~CMMFMdaAudioToneObserverCallback() + { + Cancel(); + } + +void CMMFMdaAudioToneObserverCallback::MatoPrepareComplete(TInt aError) + { + iAction = EPrepareComplete; + iErrorCode = aError; + + TRequestStatus* s = &iStatus; + SetActive(); + User::RequestComplete(s, KErrNone); + } + +void CMMFMdaAudioToneObserverCallback::MatoPlayComplete(TInt aError) + { + if(!IsActive()) + { + iAction = EPlayComplete; + iErrorCode = aError; + + TRequestStatus* s = &iStatus; + SetActive(); + User::RequestComplete(s, KErrNone); + } + } + +void CMMFMdaAudioToneObserverCallback::MatoPlayStarted(TInt aError) + { + iAction = EPlayStarted; + iErrorCode = aError; + + TRequestStatus* s = &iStatus; + SetActive(); + User::RequestComplete(s, KErrNone); + } + +void CMMFMdaAudioToneObserverCallback::RunL() + { + switch (iAction) + { + case EPrepareComplete: + { + iCallback.MatoPrepareComplete(iErrorCode); + break; + } + case EPlayComplete: + { + iCallback.MatoPlayComplete(iErrorCode); + break; + } + case EPlayStarted: + iPlayStartCallback.MatoPlayStarted(iErrorCode); + break; + } + } + +void CMMFMdaAudioToneObserverCallback::DoCancel() + { + //nothing to cancel + } + +void MMMFClientUtility::ReservedVirtual1() {} +void MMMFClientUtility::ReservedVirtual2() {} +void MMMFClientUtility::ReservedVirtual3() {} +void MMMFClientUtility::ReservedVirtual4() {} +void MMMFClientUtility::ReservedVirtual5() {} +void MMMFClientUtility::ReservedVirtual6() {} + diff -r bbbba97ac260 -r a3d769bd1939 breakdeps/mmfclienttoneplayer.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/breakdeps/mmfclienttoneplayer.h Thu Nov 18 11:17:37 2010 +0000 @@ -0,0 +1,189 @@ +// Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies). +// All rights reserved. +// This component and the accompanying materials are made available +// under the terms of "Eclipse Public License v1.0" +// which accompanies this distribution, and is available +// at the URL "http://www.eclipse.org/legal/epl-v10.html". +// +// Initial Contributors: +// Nokia Corporation - initial contribution. +// +// Contributors: +// +// Description: +// + + +#ifndef __MMFCLIENTTONEPLAY_H__ +#define __MMFCLIENTTONEPLAY_H__ + + +#include +#include +#include +#include +//Panic category and codes +_LIT(KMMFMdaAudioToneUtilityPanicCategory, "MMFMdaAudioToneUtility"); +enum TMMFMdaAudioToneUtilityPanicCodes + { + EMMFMdaAudioToneUtilityAlreadyPrepared, + EMMFMdaAudioToneUtilityBadToneConfig, + EMMFMdaAudioToneUtilityBadMixinCall + }; + +/** +Active object utility class to allow the callback to be called asynchronously. +This should help prevent re-entrant code in clients of the mediaframework. +*/ +class CMMFMdaAudioToneObserverCallback : public CActive, public MMdaAudioToneObserver, public MMdaAudioTonePlayStartObserver + { +public: + static CMMFMdaAudioToneObserverCallback* NewL(MMdaAudioToneObserver& aCallback, MMdaAudioTonePlayStartObserver& aPlayStartCallback); + ~CMMFMdaAudioToneObserverCallback(); +// From MMdaAudioToneObserver + virtual void MatoPrepareComplete(TInt aError); + virtual void MatoPlayComplete(TInt aError); +// From MMdaAudioTonePlayStartObserver + virtual void MatoPlayStarted(TInt aError); +private: + CMMFMdaAudioToneObserverCallback(MMdaAudioToneObserver& aCallback, MMdaAudioTonePlayStartObserver& aPlayStartCallback); + void RunL(); + void DoCancel(); +private: + enum TMMFAudioToneObserverCallbackAction {EPrepareComplete, EPlayComplete, EPlayStarted}; + MMdaAudioToneObserver& iCallback; + MMdaAudioTonePlayStartObserver& iPlayStartCallback; + TMMFAudioToneObserverCallbackAction iAction; + TInt iErrorCode; + }; + +class CMMFToneConfig; + +/** +Timer class used instead of actual CMMFDevSound - the interface isn't the same either! +*/ +NONSHARABLE_CLASS( CDummyDevSound ) : public CTimer + { + public: + static CDummyDevSound* NewL(); + + void InitializeL(MDevSoundObserver& aDevSoundObserver); + void RunL(); + void Play(const TTimeIntervalMicroSeconds& aDuration); + + private: + CDummyDevSound(); + + private: + MDevSoundObserver* iObserver; + }; + +/** +Concrete implementation of the CMdaAudioToneUtility API. +@see CMdaAudioToneUtility +*/ +class CMMFMdaAudioToneUtility; +NONSHARABLE_CLASS( CMMFMdaAudioToneUtility ): public CBase, + public MMdaAudioToneObserver, + public MDevSoundObserver, + public MMdaAudioTonePlayStartObserver + { +friend class CMdaAudioToneUtility; +// only for testing purposes +friend class CTestStepUnitMMFAudClient; + +public: + static CMMFMdaAudioToneUtility* NewL(MMdaAudioToneObserver& aObserver, CMdaServer* aServer = NULL, + TInt aPriority = EMdaPriorityNormal, + TInt aPref = EMdaPriorityPreferenceTimeAndQuality); + + ~CMMFMdaAudioToneUtility(); + + TMdaAudioToneUtilityState State(); + TInt MaxVolume(); + TInt Volume(); + void SetVolume(TInt aVolume); + void SetPriority(TInt aPriority, TInt aPref); + void SetDTMFLengths(TTimeIntervalMicroSeconds32 aToneLength, + TTimeIntervalMicroSeconds32 aToneOffLength, + TTimeIntervalMicroSeconds32 aPauseLength); + void SetRepeats(TInt aRepeatNumberOfTimes, const TTimeIntervalMicroSeconds& aTrailingSilence); + void SetVolumeRamp(const TTimeIntervalMicroSeconds& aRampDuration); + TInt FixedSequenceCount(); + const TDesC& FixedSequenceName(TInt aSequenceNumber); + void PrepareToPlayTone(TInt aFrequency, const TTimeIntervalMicroSeconds& aDuration); + void PrepareToPlayDualTone(TInt aFrequencyOne, TInt aFrequencyTwo, const TTimeIntervalMicroSeconds& aDuration); + void PrepareToPlayDTMFString(const TDesC& aDTMF); + void PrepareToPlayDesSequence(const TDesC8& aSequence); + void PrepareToPlayFileSequence(const TDesC& aFileName); + void PrepareToPlayFileSequence(RFile& aFile); + void PrepareToPlayFixedSequence(TInt aSequenceNumber); + void CancelPrepare(); + void Play(); + void CancelPlay(); + TInt Pause(); + TInt Resume(); + + void SetBalanceL(TInt aBalance=KMMFBalanceCenter); + TInt GetBalanceL(); +// From MMdaAudioToneObserver + void MatoPrepareComplete(TInt aError); + void MatoPlayComplete(TInt aError); + +// From DevSoundObserver + void InitializeComplete(TInt aError); + void ToneFinished(TInt aError); + void BufferToBeFilled(CMMFBuffer* /*aBuffer*/) {User::Panic(KMMFMdaAudioToneUtilityPanicCategory,EMMFMdaAudioToneUtilityBadMixinCall);} + void PlayError(TInt /*aError*/) {User::Panic(KMMFMdaAudioToneUtilityPanicCategory,EMMFMdaAudioToneUtilityBadMixinCall);} + void BufferToBeEmptied(CMMFBuffer* /*aBuffer*/) {User::Panic(KMMFMdaAudioToneUtilityPanicCategory,EMMFMdaAudioToneUtilityBadMixinCall);} + void RecordError(TInt /*aError*/) {User::Panic(KMMFMdaAudioToneUtilityPanicCategory,EMMFMdaAudioToneUtilityBadMixinCall);} + void ConvertError(TInt /*aError*/) {User::Panic(KMMFMdaAudioToneUtilityPanicCategory,EMMFMdaAudioToneUtilityBadMixinCall);} + void DeviceMessage(TUid /*aMessageId*/, const TDesC8& /*aMsg*/) {User::Panic(KMMFMdaAudioToneUtilityPanicCategory,EMMFMdaAudioToneUtilityBadMixinCall);} + void SendEventToClient(const TMMFEvent& /*aEvent*/); + + TAny* CustomInterface(TUid aInterfaceId); + + void PlayAfterInitialized(); + + void RegisterPlayStartCallback(MMdaAudioTonePlayStartObserver& aObserver); + +// From MMdaAudioTonePlayStartObserver + void MatoPlayStarted(TInt aError); + +protected: + CMMFMdaAudioToneUtility(MMdaAudioToneObserver& aCallback, TInt aPriority, TInt aPref); + void ConstructL(); +private: + // functions to convert between MediaServer Balance and SoundDev balance + void CalculateBalance( TInt& aBalance, TInt aLeft, TInt aRight ) const; + void CalculateLeftRightBalance( TInt& aLeft, TInt& aRight, TInt aBalance ) const; + +private: + CDummyDevSound* iTimer; + MMdaAudioToneObserver& iCallback; + CMMFMdaAudioToneObserverCallback* iAsyncCallback; + + TMdaAudioToneUtilityState iState; + + TMMFPrioritySettings iPrioritySettings; + + TInt iInitializeState; + + TInt iSequenceNumber; + TBool iPlayCalled; + + TBool iInitialized; + + MMdaAudioTonePlayStartObserver* iPlayStartObserver; + +#ifdef _DEBUG + TBool iPlayCalledBeforeInitialized; +#endif + + TInt iDevSoundVolume; + TInt iDevSoundBalance; + TTimeIntervalMicroSeconds iDuration; + }; + + +#endif diff -r bbbba97ac260 -r a3d769bd1939 eabi/MediaClientAudio.def --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eabi/MediaClientAudio.def Thu Nov 18 11:17:37 2010 +0000 @@ -0,0 +1,166 @@ +EXPORTS + _ZN13CMdaAudioTypeD0Ev @ 1 NONAME ABSENT + _ZN13CMdaAudioTypeD1Ev @ 2 NONAME ABSENT + _ZN13CMdaAudioTypeD2Ev @ 3 NONAME ABSENT +_ZN20CMdaAudioToneUtility11GetBalanceLEv @ 4 NONAME + _ZN20CMdaAudioToneUtility11SetBalanceLEi @ 5 NONAME + _ZN20CMdaAudioToneUtility15CustomInterfaceE4TUid @ 6 NONAME + _ZN20CMdaAudioToneUtility21PrepareToPlayDualToneEiiRK25TTimeIntervalMicroSeconds @ 7 NONAME + _ZN20CMdaAudioToneUtility25PrepareToPlayFileSequenceER5RFile @ 8 NONAME + _ZN20CMdaAudioToneUtility4NewLER21MMdaAudioToneObserverP10CMdaServer @ 9 NONAME + _ZN20CMdaAudioToneUtility4NewLER21MMdaAudioToneObserverP10CMdaServerii @ 10 NONAME + _ZN22CMdaAudioPlayerUtility10GetBalanceERi @ 11 NONAME + _ZN22CMdaAudioPlayerUtility10GetBitRateERj @ 12 NONAME + _ZN22CMdaAudioPlayerUtility10SetBalanceEi @ 13 NONAME + _ZN22CMdaAudioPlayerUtility11GetPositionER25TTimeIntervalMicroSeconds @ 14 NONAME + _ZN22CMdaAudioPlayerUtility11SetPositionERK25TTimeIntervalMicroSeconds @ 15 NONAME + _ZN22CMdaAudioPlayerUtility11SetPriorityEii @ 16 NONAME + _ZN22CMdaAudioPlayerUtility13NewDesPlayerLERK6TDesC8R23MMdaAudioPlayerCallbackiiP10CMdaServer @ 17 NONAME + _ZN22CMdaAudioPlayerUtility13SetPlayWindowERK25TTimeIntervalMicroSecondsS2_ @ 18 NONAME + _ZN22CMdaAudioPlayerUtility14NewFilePlayerLERK7TDesC16R23MMdaAudioPlayerCallbackiiP10CMdaServer @ 19 NONAME + _ZN22CMdaAudioPlayerUtility14WillResumePlayEv @ 20 NONAME + _ZN22CMdaAudioPlayerUtility15ClearPlayWindowEv @ 21 NONAME + _ZN22CMdaAudioPlayerUtility17CustomCommandSyncERK8TPckgBufI22TMMFMessageDestinationEiRK6TDesC8S7_ @ 22 NONAME + _ZN22CMdaAudioPlayerUtility17CustomCommandSyncERK8TPckgBufI22TMMFMessageDestinationEiRK6TDesC8S7_R5TDes8 @ 23 NONAME + _ZN22CMdaAudioPlayerUtility17GetMetaDataEntryLEi @ 24 NONAME + _ZN22CMdaAudioPlayerUtility18CustomCommandAsyncERK8TPckgBufI22TMMFMessageDestinationEiRK6TDesC8S7_R14TRequestStatus @ 25 NONAME + _ZN22CMdaAudioPlayerUtility18CustomCommandAsyncERK8TPckgBufI22TMMFMessageDestinationEiRK6TDesC8S7_R5TDes8R14TRequestStatus @ 26 NONAME + _ZN22CMdaAudioPlayerUtility19GetDRMCustomCommandEv @ 27 NONAME + _ZN22CMdaAudioPlayerUtility21NewDesPlayerReadOnlyLERK6TDesC8R23MMdaAudioPlayerCallbackiiP10CMdaServer @ 28 NONAME + _ZN22CMdaAudioPlayerUtility24GetAudioLoadingProgressLERi @ 29 NONAME + _ZN22CMdaAudioPlayerUtility26GetNumberOfMetaDataEntriesERi @ 30 NONAME + _ZN22CMdaAudioPlayerUtility33RegisterAudioResourceNotificationER37MMMFAudioResourceNotificationCallback4TUidRK6TDesC8 @ 31 NONAME + _ZN22CMdaAudioPlayerUtility35RegisterForAudioLoadingNotificationER21MAudioLoadingObserver @ 32 NONAME + _ZN22CMdaAudioPlayerUtility36ControllerImplementationInformationLEv @ 33 NONAME + _ZN22CMdaAudioPlayerUtility39CancelRegisterAudioResourceNotificationE4TUid @ 34 NONAME + _ZN22CMdaAudioPlayerUtility4NewLER23MMdaAudioPlayerCallbackii @ 35 NONAME + _ZN22CMdaAudioPlayerUtility5CloseEv @ 36 NONAME + _ZN22CMdaAudioPlayerUtility5PauseEv @ 37 NONAME + _ZN22CMdaAudioPlayerUtility8OpenDesLERK6TDesC8 @ 38 NONAME + _ZN22CMdaAudioPlayerUtility8OpenUrlLERK7TDesC16iRK6TDesC8 @ 39 NONAME + _ZN22CMdaAudioPlayerUtility9GetVolumeERi @ 40 NONAME + _ZN22CMdaAudioPlayerUtility9OpenFileLERK5RFile @ 41 NONAME + _ZN22CMdaAudioPlayerUtility9OpenFileLERK7TDesC16 @ 42 NONAME + _ZN22CMdaAudioPlayerUtility9OpenFileLERK9TMMSource @ 43 NONAME + _ZN23CMdaAudioConvertUtility13SourceFormatLEv @ 44 NONAME ABSENT + _ZN23CMdaAudioConvertUtility14SourceBitRateLEv @ 45 NONAME ABSENT + _ZN23CMdaAudioConvertUtility15SourceDataTypeLEv @ 46 NONAME ABSENT + _ZN23CMdaAudioConvertUtility17CustomCommandSyncERK8TPckgBufI22TMMFMessageDestinationEiRK6TDesC8S7_ @ 47 NONAME ABSENT + _ZN23CMdaAudioConvertUtility17CustomCommandSyncERK8TPckgBufI22TMMFMessageDestinationEiRK6TDesC8S7_R5TDes8 @ 48 NONAME ABSENT + _ZN23CMdaAudioConvertUtility17SourceSampleRateLEv @ 49 NONAME ABSENT + _ZN23CMdaAudioConvertUtility18CustomCommandAsyncERK8TPckgBufI22TMMFMessageDestinationEiRK6TDesC8S7_R14TRequestStatus @ 50 NONAME ABSENT + _ZN23CMdaAudioConvertUtility18CustomCommandAsyncERK8TPckgBufI22TMMFMessageDestinationEiRK6TDesC8S7_R5TDes8R14TRequestStatus @ 51 NONAME ABSENT + _ZN23CMdaAudioConvertUtility18DestinationFormatLEv @ 52 NONAME ABSENT + _ZN23CMdaAudioConvertUtility19DestinationBitRateLEv @ 53 NONAME ABSENT + _ZN23CMdaAudioConvertUtility20DestinationDataTypeLEv @ 54 NONAME ABSENT + _ZN23CMdaAudioConvertUtility21SetDestinationFormatLE4TUid @ 55 NONAME ABSENT + _ZN23CMdaAudioConvertUtility22DestinationSampleRateLEv @ 56 NONAME ABSENT + _ZN23CMdaAudioConvertUtility22SetDestinationBitRateLEj @ 57 NONAME ABSENT + _ZN23CMdaAudioConvertUtility23SetDestinationDataTypeLE7TFourCC @ 58 NONAME ABSENT + _ZN23CMdaAudioConvertUtility23SourceNumberOfChannelsLEv @ 59 NONAME ABSENT + _ZN23CMdaAudioConvertUtility25SetDestinationSampleRateLEj @ 60 NONAME ABSENT + _ZN23CMdaAudioConvertUtility28DestinationNumberOfChannelsLEv @ 61 NONAME ABSENT + _ZN23CMdaAudioConvertUtility31GetSupportedConversionBitRatesLER6RArrayIjE @ 62 NONAME ABSENT + _ZN23CMdaAudioConvertUtility31SetDestinationNumberOfChannelsLEj @ 63 NONAME ABSENT + _ZN23CMdaAudioConvertUtility33GetSupportedDestinationDataTypesLER6RArrayI7TFourCCE @ 64 NONAME ABSENT + _ZN23CMdaAudioConvertUtility34GetSupportedConversionSampleRatesLER6RArrayIjE @ 65 NONAME ABSENT + _ZN23CMdaAudioConvertUtility36ControllerImplementationInformationLEv @ 66 NONAME ABSENT + _ZN23CMdaAudioConvertUtility39GetSupportedConversionNumberOfChannelsLER6RArrayIjE @ 67 NONAME ABSENT + _ZN23CMdaAudioConvertUtility4NewLER29MMdaObjectStateChangeObserverP10CMdaServerii @ 68 NONAME ABSENT + _ZN23CMdaAudioConvertUtility5OpenLEP16TMdaClipLocationS1_4TUidS2_7TFourCC @ 69 NONAME ABSENT + _ZN23CMdaAudioConvertUtility8ConvertLEv @ 70 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility11SetPriorityEii @ 71 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility14SourceBitRateLEv @ 72 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility14WillResumePlayEv @ 73 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility16GetRecordBalanceERi @ 74 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility16SetRecordBalanceEi @ 75 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility17AddMetaDataEntryLER17CMMFMetaDataEntry @ 76 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility17GetMetaDataEntryLEi @ 77 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility18DestinationFormatLEv @ 78 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility18GetPlaybackBalanceERi @ 79 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility18SetPlaybackBalanceEi @ 80 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility19DestinationBitRateLEv @ 81 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility19GetDRMCustomCommandEv @ 82 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility19RemoveMetaDataEntryEi @ 83 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility20DestinationDataTypeLEv @ 84 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility21GetSupportedBitRatesLER6RArrayIjE @ 85 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility21ReplaceMetaDataEntryLEiR17CMMFMetaDataEntry @ 86 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility21SetDestinationFormatLE4TUid @ 87 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility22DestinationSampleRateLEv @ 88 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility22SetDestinationBitRateLEj @ 89 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility23SetDestinationDataTypeLE7TFourCC @ 90 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility24GetAudioLoadingProgressLERi @ 91 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility24GetSupportedSampleRatesLER6RArrayIjE @ 92 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility25SetDestinationSampleRateLEj @ 93 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility26GetNumberOfMetaDataEntriesERi @ 94 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility28DestinationNumberOfChannelsLEv @ 95 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility29GetSupportedNumberOfChannelsLER6RArrayIjE @ 96 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility31PlayControllerCustomCommandSyncERK8TPckgBufI22TMMFMessageDestinationEiRK6TDesC8S7_ @ 97 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility31PlayControllerCustomCommandSyncERK8TPckgBufI22TMMFMessageDestinationEiRK6TDesC8S7_R5TDes8 @ 98 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility31SetDestinationNumberOfChannelsLEj @ 99 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility32PlayControllerCustomCommandAsyncERK8TPckgBufI22TMMFMessageDestinationEiRK6TDesC8S7_R14TRequestStatus @ 100 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility32PlayControllerCustomCommandAsyncERK8TPckgBufI22TMMFMessageDestinationEiRK6TDesC8S7_R5TDes8R14TRequestStatus @ 101 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility33GetSupportedDestinationDataTypesLER6RArrayI7TFourCCE @ 102 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility33RecordControllerCustomCommandSyncERK8TPckgBufI22TMMFMessageDestinationEiRK6TDesC8S7_ @ 103 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility33RecordControllerCustomCommandSyncERK8TPckgBufI22TMMFMessageDestinationEiRK6TDesC8S7_R5TDes8 @ 104 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility33RegisterAudioResourceNotificationER37MMMFAudioResourceNotificationCallback4TUidRK6TDesC8 @ 105 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility34RecordControllerCustomCommandAsyncERK8TPckgBufI22TMMFMessageDestinationEiRK6TDesC8S7_R14TRequestStatus @ 106 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility34RecordControllerCustomCommandAsyncERK8TPckgBufI22TMMFMessageDestinationEiRK6TDesC8S7_R5TDes8R14TRequestStatus @ 107 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility35RegisterForAudioLoadingNotificationER21MAudioLoadingObserver @ 108 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility39CancelRegisterAudioResourceNotificationE4TUid @ 109 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility45AudioPlayControllerImplementationInformationLEv @ 110 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility49AudioRecorderControllerImplementationInformationLEv @ 111 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility4NewLER29MMdaObjectStateChangeObserverP10CMdaServerii @ 112 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility7GetGainERi @ 113 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility8OpenDesLER5TDes8 @ 114 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility8OpenDesLER5TDes84TUidS2_S2_7TFourCC @ 115 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility8OpenUrlLERK7TDesC16i4TUidS3_S3_7TFourCC @ 116 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility8OpenUrlLERK7TDesC16iRK6TDesC8 @ 117 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility9GetVolumeERi @ 118 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility9OpenFileLERK5RFile @ 119 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility9OpenFileLERK5RFile4TUidS3_S3_7TFourCC @ 120 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility9OpenFileLERK7TDesC164TUidS3_S3_7TFourCC @ 121 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility9OpenFileLERK9TMMSource @ 122 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility9OpenFileLERK9TMMSource4TUidS3_S3_7TFourCC @ 123 NONAME ABSENT + _ZTI13CMdaAudioType @ 124 NONAME ABSENT ; ## + _ZTI18CMMFDualToneConfig @ 125 NONAME ABSENT ; ## + _ZTI20CMMFDesSeqToneConfig @ 126 NONAME ABSENT ; ## + _ZTI20CMMFSimpleToneConfig @ 127 NONAME ABSENT ; ## + _ZTI20CMdaAudioClipUtility @ 128 NONAME ABSENT ; ## + _ZTI20CMdaAudioToneUtility @ 129 NONAME ; ## + _ZTI21CMMFFileSeqToneConfig @ 130 NONAME ABSENT ; ## + _ZTI22CMMFFixedSeqToneConfig @ 131 NONAME ABSENT ; ## + _ZTI22CMdaAudioPlayerUtility @ 132 NONAME ; ## + _ZTI23CMdaAudioConvertUtility @ 133 NONAME ABSENT ; ## + _ZTI24CMMFDTMFStringToneConfig @ 134 NONAME ABSENT ; ## + _ZTI24CMdaAudioRecorderUtility @ 135 NONAME ABSENT ; ## + _ZTI26CMMFMdaAudioPlayerCallBack @ 136 NONAME ; ## + _ZTI27CRepeatTrailingSilenceTimer @ 137 NONAME ; ## + _ZTI32CMMFMdaAudioToneObserverCallback @ 138 NONAME ; ## + _ZTV13CMdaAudioType @ 139 NONAME ABSENT ; ## + _ZTV18CMMFDualToneConfig @ 140 NONAME ABSENT ; ## + _ZTV20CMMFDesSeqToneConfig @ 141 NONAME ABSENT ; ## + _ZTV20CMMFSimpleToneConfig @ 142 NONAME ABSENT ; ## + _ZTV20CMdaAudioClipUtility @ 143 NONAME ABSENT ; ## + _ZTV20CMdaAudioToneUtility @ 144 NONAME ; ## + _ZTV21CMMFFileSeqToneConfig @ 145 NONAME ABSENT ; ## + _ZTV22CMMFFixedSeqToneConfig @ 146 NONAME ABSENT ; ## + _ZTV22CMdaAudioPlayerUtility @ 147 NONAME ; ## + _ZTV23CMdaAudioConvertUtility @ 148 NONAME ABSENT ; ## + _ZTV24CMMFDTMFStringToneConfig @ 149 NONAME ABSENT ; ## + _ZTV24CMdaAudioRecorderUtility @ 150 NONAME ABSENT ; ## + _ZTV26CMMFMdaAudioPlayerCallBack @ 151 NONAME ; ## + _ZTV27CRepeatTrailingSilenceTimer @ 152 NONAME ; ## + _ZTV32CMMFMdaAudioToneObserverCallback @ 153 NONAME ; ## + _ZNK22CMdaAudioPlayerUtility17SetThreadPriorityERK15TThreadPriority @ 154 NONAME + _ZNK23CMdaAudioConvertUtility17SetThreadPriorityERK15TThreadPriority @ 155 NONAME ABSENT + _ZNK24CMdaAudioRecorderUtility23SetThreadPriorityRecordERK15TThreadPriority @ 156 NONAME ABSENT + _ZNK24CMdaAudioRecorderUtility25SetThreadPriorityPlaybackERK15TThreadPriority @ 157 NONAME ABSENT + _ZN22CMdaAudioPlayerUtility13UseSharedHeapEv @ 158 NONAME + _ZN22CMdaAudioPlayerUtility8DurationER25TTimeIntervalMicroSeconds @ 159 NONAME + _ZN24CMdaAudioRecorderUtility8DurationER25TTimeIntervalMicroSeconds @ 160 NONAME ABSENT + _ZN23CMdaAudioConvertUtility13UseSharedHeapEv @ 161 NONAME ABSENT + _ZN24CMdaAudioRecorderUtility13UseSharedHeapEv @ 162 NONAME ABSENT + _ZN20CMdaAudioToneUtility5PauseEv @ 163 NONAME + _ZN20CMdaAudioToneUtility6ResumeEv @ 164 NONAME + _ZN20CMdaAudioToneUtility25RegisterPlayStartCallbackER30MMdaAudioTonePlayStartObserver @ 165 NONAME diff -r bbbba97ac260 -r a3d769bd1939 group/bld.inf --- a/group/bld.inf Fri Nov 12 16:39:06 2010 +0000 +++ b/group/bld.inf Thu Nov 18 11:17:37 2010 +0000 @@ -23,6 +23,9 @@ PRJ_MMPFILES +// Pure stemkit code +../breakdeps/MediaClientAudio.mmp + // based on sf/os/devicesrv ../startup/ssmcmdlists.mmp ../startup/ssmstartuppolicy.mmp diff -r bbbba97ac260 -r a3d769bd1939 syborg_stem/rom_content.csv --- a/syborg_stem/rom_content.csv Fri Nov 12 16:39:06 2010 +0000 +++ b/syborg_stem/rom_content.csv Thu Nov 18 11:17:37 2010 +0000 @@ -3167,7 +3167,7 @@ sys\bin\comsdbgutil.dll,/epoc32/release/armv5/urel/comsdbgutil.dll,commsdebugutility.iby,os/persistentdata,Out,Auto,Not referenced during boot sys\bin\ConArc.dll,/epoc32/release/armv5/urel/conarc.dll,conarc.iby,mw/appsupport,,, sys\bin\conditionevaluator.dll,/epoc32/release/armv5/urel/conditionevaluator.dll,conditionevaluator.iby,os/devicesrv,,, -sys\bin\Cone.dll,/epoc32/release/armv5/urel/cone.dll,cone.iby,mw/classicui,Stem,MW,Break dependency on MediaClientAudio.dll +sys\bin\Cone.dll,/epoc32/release/armv5/urel/cone.dll,cone.iby,mw/classicui,mm_Stem,MW,Break dependency on MediaClientAudio.dll sys\bin\ConfigurationComponentsFactory.dll,/epoc32/release/armv5/urel/configurationcomponentsfactory.dll,core/os/ConfigurationComponentsFactory.iby,mw/mmmw,Out,Auto,Not referenced during boot Sys\Bin\connectiondialogswrapper.DLL,/epoc32/release/armv5/urel/connectiondialogswrapper.dll,core/mw/ConnectionDialogs.iby,mw/ipconnmgmt,,, sys\bin\ConnectionManager.dll,/epoc32/release/armv5/urel/connectionmanager.dll,core/mw/ConnectionManager.iby,mw/web,Out,Auto,Not referenced during boot @@ -3467,7 +3467,7 @@ sys\bin\EikSrv.dll,/epoc32/release/armv5/urel/eiksrv.dll,uikon.iby,mw/classicui,,, sys\bin\EikSrvc.dll,/epoc32/release/armv5/urel/eiksrvc.dll,uikon.iby,mw/classicui,,, sys\bin\EikSrvs.exe,/epoc32/release/armv5/urel/eiksrvs.exe,uikon.iby,mw/classicui,,, -sys\bin\eiksrvui.dll,/epoc32/release/armv5/urel/eiksrvui.dll,core/mw/eikstd.iby,mw/classicui,Stem,MW,Break dependency on mediaclientaudio.dll +sys\bin\eiksrvui.dll,/epoc32/release/armv5/urel/eiksrvui.dll,core/mw/eikstd.iby,mw/classicui,mm_Stem,MW,Break dependency on mediaclientaudio.dll Sys\Bin\eintsock_transport.dll,/epoc32/release/armv5/urel/eintsock_transport.dll,esock_core.iby,os/commsfw,Out,Auto,Not referenced during boot sys\bin\eirclient.dll,/epoc32/release/armv5/urel/eirclient.dll,bluetooth.iby,os/bt,Out,Auto,Not referenced during boot sys\bin\EKTran.dll,/epoc32/release/armv5/urel/ektran.dll,base.iby,os/kernelhwsrv,,, diff -r bbbba97ac260 -r a3d769bd1939 syborg_stem/static_dependencies.txt --- a/syborg_stem/static_dependencies.txt Fri Nov 12 16:39:06 2010 +0000 +++ b/syborg_stem/static_dependencies.txt Thu Nov 18 11:17:37 2010 +0000 @@ -2183,7 +2183,7 @@ sys\bin\MceSettings.dll /epoc32/release/armv5/urel/mcesettings.dll sid=101f868d:CommonDialogs[101f4688].dll:CommonEngine[100058fe].dll:CommonUI[100058fd].dll:IMUMUTILS[102750c7].dll:ServiceHandler[101f865a].dll:avkon[100056c6].dll:bafl[10003a0f].dll:centralrepository[101fbc70].dll:cone[10003a41].dll:drtaeabi.dll:efsrv[100039e4].dll:eikcoctl[1000489e].dll:eikcore[10004892].dll:eikctl[1000489c].dll:eikdlg[10004898].dll:euser[100039e5].dll:featmgr[10005a2b].dll:hlplch[101f423b].dll:msgs[10004e66].dll:mtur[10004835].dll:muiu_internal[1028256a].dll:muiu[100058cd].dll:platformenv[101f857f].dll:scppnwdl.dll:sendui[100058f0].dll:sssettings[10005a01].dll:sysutil[10005943].dll sys\bin\MediaClient.dll /epoc32/release/armv5/urel/mediaclient.dll sid=10003942:drtaeabi.dll:euser[100039e5].dll:scppnwdl.dll sys\bin\MediaClientAudio.dll /epoc32/release/armv5/urel/mediaclientaudio.dll exports=1-165:sid=10003992:caf.dll:drtaeabi.dll:drtrvct2_2.dll:ecom[10009d8e].dll:euser[100039e5].dll:mediaclientutility[101ffa08].dll:mediaclient[10003942].dll:mmcommon[101f7d8f].dll:mmfcontrollerframework[101f76dd].dll:mmfdevsound[100058cc].dll:mmfstandardcustomcommands[101f76de].dll:scppnwdl.dll -sys\bin\MediaClientAudio.dll /epoc32/release/armv5/urel/stem_mediaclientaudio.dll exports=9:sid=10003992:drtaeabi.dll:euser[100039e5].dll:scppnwdl.dll +sys\bin\MediaClientAudio.dll /epoc32/release/armv5/urel/stem_mediaclientaudio.dll exports=4-43.129.132.136-138.144.147.151-154.158-159.163-165:sid=10003992:drtaeabi.dll:ecom[10009d8e].dll:euser[100039e5].dll:scppnwdl.dll sys\bin\MediaClientAudioInputStream.dll /epoc32/release/armv5/urel/mediaclientaudioinputstream.dll sid=10003998:drtaeabi.dll:drtrvct2_2.dll:euser[100039e5].dll:mediaclient[10003942].dll:mmfdevsound[100058cc].dll:scppnwdl.dll sys\bin\MediaClientAudioStream.dll /epoc32/release/armv5/urel/mediaclientaudiostream.dll sid=10003996:drtaeabi.dll:drtrvct2_2.dll:euser[100039e5].dll:mediaclient[10003942].dll:mmfdevsound[100058cc].dll:scppnwdl.dll sys\bin\MediaClientImage.dll /epoc32/release/armv5/urel/mediaclientimage.dll sid=10003994:bitmaptransforms[101f45ec].dll:drtaeabi.dll:ecom[10009d8e].dll:efsrv[100039e4].dll:euser[100039e5].dll:fbscli[10003a15].dll:imageconversion[101f45ad].dll:scppnwdl.dll