sl@0: /* sl@0: * Copyright (c) 2002-2004 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: DRM Audio player sl@0: * sl@0: */ sl@0: sl@0: sl@0: sl@0: #ifndef DRMAUDIOSAMPLEPLAYER_H sl@0: #define DRMAUDIOSAMPLEPLAYER_H sl@0: sl@0: sl@0: sl@0: #include sl@0: #include sl@0: sl@0: // FORWARD DECLARATIONS sl@0: class CDrmAudioPlayerAdaptation; sl@0: sl@0: // CLASS DECLARATION sl@0: sl@0: /** sl@0: * Interface class for DRM Player callbacks sl@0: * sl@0: * sl@0: * @lib DRMAudioPlayer.lib sl@0: * @since Series 60 3.0 sl@0: */ sl@0: sl@0: class MDrmAudioPlayerCallback sl@0: { sl@0: public: sl@0: /** sl@0: * Called by CDrmPlayerUtility when initialization is complete. sl@0: * @since Series 60 3.0 sl@0: * @param aError The status of the audio sample after initialisation. sl@0: The following values have the same specific meaning sl@0: across all EPOC platforms: KErrNone the sl@0: sample is ready to play. KErrNotSupported sl@0: the audio format or particular encoding type is not sl@0: recognised or not supported. KErrNotFound sl@0: the audio sample cannot be found. sl@0: KErrNoMemory there is insufficient memory sl@0: to play this audio sample. Other values are possible sl@0: indicating a problem opening the audio sample. These sl@0: values are dependent on the EPOC platform. sl@0: * @param aDuration The duration of the audio sample. sl@0: */ sl@0: sl@0: virtual void MdapcInitComplete(TInt aError, const TTimeIntervalMicroSeconds& aDuration) = 0; sl@0: sl@0: /** sl@0: * Called by CDrmPlayerUtility when playing is complete. sl@0: * @since Series 60 3.0 sl@0: * @param aError sl@0: The status of playback. The following values have the sl@0: same specific meaning across all EPOC platforms: sl@0: KErrNone playing of the audio sample is sl@0: complete. KErrCorrupt the sample data is sl@0: corrupt. KErrInUse the sound device is in sl@0: use by another higher priority client. This can happen sl@0: during playback. KErrNoMemory there is sl@0: insufficient memory to play this audio sample Other sl@0: values are possible indicating a problem opening the sl@0: audio sample. These values are dependent on the EPOC sl@0: platform. sl@0: */ sl@0: virtual void MdapcPlayComplete(TInt aError) = 0; sl@0: }; sl@0: sl@0: sl@0: sl@0: /** sl@0: * Used by third party developers to play sampled audio data. sl@0: The class offers a simple interface to open, play and obtain sl@0: information from, sampled audio data. The audio data can be supplied sl@0: either in a file (file-based), as a descriptor sl@0: (descriptor-based) or as a URL reference. sl@0: * sl@0: * @lib DRMAudioPlayer.lib sl@0: * @since Series 60 3.0 sl@0: */ sl@0: class CDrmPlayerUtility : public CBase sl@0: { sl@0: public: sl@0: sl@0: /** sl@0: * Two-phased constructor. sl@0: */ sl@0: IMPORT_C static CDrmPlayerUtility* NewL(MDrmAudioPlayerCallback& aCallback,TInt aPriority, sl@0: TMdaPriorityPreference aPref); sl@0: sl@0: /** sl@0: * Two-phased constructor. sl@0: */ sl@0: IMPORT_C static CDrmPlayerUtility* NewFilePlayerL(const TDesC& aFileName,MDrmAudioPlayerCallback& aCallback, sl@0: TInt aPriority, sl@0: TMdaPriorityPreference aPref); sl@0: sl@0: /** sl@0: * Two-phased constructor. sl@0: */ sl@0: IMPORT_C static CDrmPlayerUtility* NewDesPlayerL(const TDesC8& aData, sl@0: MDrmAudioPlayerCallback& aCallback, sl@0: TInt aPriority, sl@0: TMdaPriorityPreference aPref sl@0: ); sl@0: sl@0: /** sl@0: * Two-phased constructor. sl@0: */ sl@0: IMPORT_C static CDrmPlayerUtility* NewDesPlayerReadOnlyL(const TDesC8& aData, sl@0: MDrmAudioPlayerCallback& aCallback, sl@0: TInt aPriority, sl@0: TMdaPriorityPreference aPref sl@0: ); sl@0: sl@0: /** sl@0: * Destructor. sl@0: */ sl@0: IMPORT_C ~CDrmPlayerUtility(); sl@0: sl@0: /** sl@0: * Begins playback of the initialised audio sample at the current volume and priority levels. sl@0: * sl@0: * @since Series 60 3.0 sl@0: */ sl@0: IMPORT_C void Play(); sl@0: sl@0: /** sl@0: * Stops playback of the audio sample as soon as is possible. sl@0: * sl@0: * @since Series 60 3.0 sl@0: */ sl@0: IMPORT_C void Stop(); sl@0: sl@0: /** sl@0: * Pauses playback of the audio clip sl@0: * sl@0: * @since Series 60 3.0 sl@0: * @return KErrNone on success, otherwise another of the system-wide error codes sl@0: */ sl@0: IMPORT_C TInt Pause(); sl@0: sl@0: /** sl@0: * Changes the current playback volume to a specified value. sl@0: * sl@0: * @since Series 60 3.0 sl@0: * @param aVolume Any value between 0 (mute) and the maximum volume sl@0: */ sl@0: IMPORT_C void SetVolume(TInt aVolume sl@0: ); sl@0: sl@0: /** sl@0: * Sets the number of times the audio sample should be repeated during the playback operation sl@0: * sl@0: * @since Series 60 3.0 sl@0: sl@0: * @param aRepeatNumberOfTimes sl@0: The number of times to repeat the sample. Use 0 for no repeat, sl@0: KMdaRepeatForever for continuous, any other value for number of times. sl@0: * @param aTrailingSilence sl@0: The duration of silence after the sample has played in microseconds. sl@0: */ sl@0: IMPORT_C void SetRepeats(TInt aRepeatNumberOfTimes, sl@0: const TTimeIntervalMicroSeconds& aTrailingSilence sl@0: ); sl@0: sl@0: /** sl@0: * Changes the current playback volume to a specified value. sl@0: * sl@0: * @since Series 60 3.0 sl@0: * @param aVolume Any value between 0 (mute) and the maximum volume returned by sl@0: */ sl@0: IMPORT_C void SetVolumeRamp(const TTimeIntervalMicroSeconds& aRampDuration); sl@0: sl@0: sl@0: /** sl@0: * Returns the duration of the audio sample in microseconds. sl@0: * sl@0: * @since Series 60 3.0 sl@0: * @return The duration of the sample in microseconds sl@0: */ sl@0: IMPORT_C const TTimeIntervalMicroSeconds& Duration(); sl@0: sl@0: /** sl@0: * Returns an integer representing the maximum volume that the audio clip can support. sl@0: * sl@0: * @since Series 60 3.0 sl@0: * @return The maximum permissible volume setting sl@0: */ sl@0: IMPORT_C TInt MaxVolume(); sl@0: sl@0: /** sl@0: * Opens an audio clip from a file. sl@0: * sl@0: * @since Series 60 3.0 sl@0: * @param aFileName The file containing the audio clip sl@0: */ sl@0: IMPORT_C void OpenFileL(const TDesC& aFileName); sl@0: sl@0: /** sl@0: * Opens an audio clip from a file. sl@0: * sl@0: * @since Series 60 3.0 sl@0: * @param aFile The file handle of the file containing the clip sl@0: */ sl@0: IMPORT_C void OpenFileL(const RFile& aFile); sl@0: sl@0: /** sl@0: * Opens an audio clip from a file. sl@0: * sl@0: * @since Series 60 3.0 sl@0: * @param aSource The source of the file containing the clip sl@0: */ sl@0: IMPORT_C void OpenFileL(const TMMSource& aSource); sl@0: sl@0: /** sl@0: * Opens an audio clip from a descriptor. sl@0: * sl@0: * @since Series 60 3.0 sl@0: * @param aDescriptor The descriptor containing the audio clip sl@0: */ sl@0: IMPORT_C void OpenDesL(const TDesC8& aDescriptor); sl@0: sl@0: /** sl@0: * Opens an audio clip from a URL. sl@0: * sl@0: * @since Series 60 3.0 sl@0: * @param aUrl The URL of the audio clip. sl@0: * @param aMimeType The mime type associated with the specified URL/audio clip sl@0: */ sl@0: IMPORT_C void OpenUrlL(const TDesC& aUrl, TInt aIapId = KUseDefaultIap, const TDesC8& aMimeType=KNullDesC8); sl@0: sl@0: /** sl@0: * Closes the current audio clip. sl@0: * sl@0: * @since Series 60 3.0 sl@0: */ sl@0: IMPORT_C void Close(); sl@0: sl@0: /** sl@0: * Returns the current playback position in microseconds from the start of the clip. sl@0: * sl@0: * @since Series 60 3.0 sl@0: * @param aPosition The number of microseconds from the start of the clip to the current play position sl@0: * @return KErrNone on success, otherwise another of the system-wide error codes sl@0: */ sl@0: IMPORT_C TInt GetPosition(TTimeIntervalMicroSeconds& aPosition); sl@0: sl@0: /** sl@0: * Returns the current playback position in microseconds from the start of the clip. sl@0: * sl@0: * @since Series 60 3.0 sl@0: * @param aPosition The number of microseconds from the start of the clip to the current play position sl@0: * @return KErrNone on success, otherwise another of the system-wide error codes sl@0: */ sl@0: IMPORT_C void SetPosition(const TTimeIntervalMicroSeconds& aPosition); sl@0: sl@0: /** sl@0: * Set the priority for playback. sl@0: * sl@0: * @since Series 60 3.0 sl@0: * @param aPriority sl@0: The priority level to apply, EMdaPriorityMin client can be interrupted by any other client, sl@0: EMdaPriorityNormal client can only be interrupted by a client with a higher priority or sl@0: EMdaPriorityMax client cannot be interrupted by other clients. sl@0: * @param aPref The time and quality preferences to apply. sl@0: * @return KErrNone on success, otherwise another of the system-wide error codes sl@0: */ sl@0: IMPORT_C TInt SetPriority(TInt aPriority, TMdaPriorityPreference aPref); sl@0: sl@0: /** sl@0: * Returns the current playback volume. sl@0: * sl@0: * @since Series 60 3.0 sl@0: * @param aVolume A value between 0 (mute) and the maximum volume setting sl@0: * @return KErrNone on success, otherwise another of the system-wide error codes sl@0: */ sl@0: IMPORT_C TInt GetVolume(TInt& aVolume); sl@0: sl@0: /** sl@0: * Gets the number of meta data entries in the current audio clip. sl@0: * sl@0: * @since Series 60 3.0 sl@0: * @param aNumEntries On return, contains the number of meta data entries sl@0: * @return KErrNone on success, otherwise another of the system-wide error codes sl@0: */ sl@0: IMPORT_C TInt GetNumberOfMetaDataEntries(TInt& aNumEntries); sl@0: sl@0: /** sl@0: * Returns a specified meta data entry from the audio clip. sl@0: * sl@0: * @since Series 60 3.0 sl@0: * @param aMetaDataIndex The index of the meta data entry to return sl@0: * @return The returned meta data entry sl@0: */ sl@0: IMPORT_C CMMFMetaDataEntry* GetMetaDataEntryL(TInt aMetaDataIndex); sl@0: sl@0: /** sl@0: * Defines the size of the current playback window. sl@0: * sl@0: * @since Series 60 3.0 sl@0: * @param aStart sl@0: The position defining the start of the window, measured in microseconds. sl@0: If this value is less than zero, it is set to zero. If this value is sl@0: greater than aEnd, then it is swapped with aEnd. sl@0: * @param aEnd sl@0: The position defining the end of the window, measured in microseconds. sl@0: If this value is greater than the value returned by Duration(), it is sl@0: set to the value of Duration(). If this value is less than aStart, then sl@0: it is swapped with aStart. sl@0: * @return KErrNone on success, otherwise another of the system-wide error codes sl@0: */ sl@0: IMPORT_C TInt SetPlayWindow(const TTimeIntervalMicroSeconds& aStart, sl@0: const TTimeIntervalMicroSeconds& aEnd); sl@0: sl@0: /** sl@0: * Clears the current playback window. sl@0: * sl@0: * @since Series 60 3.0 sl@0: * @return KErrNone on success, otherwise another of the system-wide error codes sl@0: */ sl@0: IMPORT_C TInt ClearPlayWindow(); sl@0: sl@0: /** sl@0: * Sets the current playback balance. sl@0: * sl@0: * @since Series 60 3.0 sl@0: * @param aBalance The balance value to set sl@0: * @return KErrNone on success, otherwise another of the system-wide error codes sl@0: */ sl@0: IMPORT_C TInt SetBalance(TInt aBalance = KMMFBalanceCenter); sl@0: sl@0: /** sl@0: * Returns the current playback balance. sl@0: * sl@0: * @since Series 60 3.0 sl@0: * @param aBalance On return, contains the current balance setting sl@0: * @return KErrNone on success, otherwise another of the system-wide error codes sl@0: */ sl@0: IMPORT_C TInt GetBalance(TInt& aBalance); sl@0: sl@0: /** sl@0: * Returns the current bit rate sl@0: * sl@0: * @since Series 60 3.0 sl@0: * @param aBitRate On return, contains the current bit rate sl@0: * @return KErrNone on success, otherwise another of the system-wide error codes sl@0: */ sl@0: IMPORT_C TInt GetBitRate(TUint& aBitRate); sl@0: sl@0: /** sl@0: * Allows user to register for audio loading callback sl@0: * sl@0: * @since Series 60 3.0 sl@0: * @param aCallback Reference to the client to be notified sl@0: */ sl@0: IMPORT_C void RegisterForAudioLoadingNotification(MAudioLoadingObserver& aCallback); sl@0: sl@0: /** sl@0: * Gets the progress of audio loading sl@0: * sl@0: * @since Series 60 3.0 sl@0: * @param aPercentageProgress Upon return, contains the percentage progress sl@0: */ sl@0: IMPORT_C void GetAudioLoadingProgressL(TInt& aPercentageProgress); sl@0: sl@0: /** sl@0: * Returns controller implementation parameters sl@0: * sl@0: * @since Series 60 3.0 sl@0: * @return The controller information sl@0: */ sl@0: IMPORT_C const CMMFControllerImplementationInformation& ControllerImplementationInformationL(); sl@0: sl@0: /** sl@0: * Sends a custom command synchronously to the controller plugin sl@0: * sl@0: * @since Series 60 3.0 sl@0: * @param aDestination sl@0: The destination of the custom command, consisting of the unique ID of the sl@0: interface of this custom command and a special handle id KMMFObjectHandleController sl@0: to indicate that the custom command is to be handled by the controller plugin sl@0: * @param aFunction The function number to indicate which function is to be called sl@0: on the controller's custom command interface. sl@0: * @param aDataTo1 A reference to data to be copied to the controller plugin. The exact sl@0: contents of the data are dependent on the custom command interface of the controller. Can be NULL. sl@0: * @param aDataTo2 sl@0: A reference to data to be copied to the controller plugin. The exact contents of the data sl@0: are dependent on the custom command interface of the controller. Can be NULL sl@0: * @param aDataFrom sl@0: A reference to an area of memory to which the controller plugin will write any data sl@0: to be passed back to the client. Cannot be NULL sl@0: * @return KErrNone on success, otherwise another of the system-wide error codes sl@0: */ sl@0: IMPORT_C TInt CustomCommandSync(const TMMFMessageDestinationPckg& aDestination, TInt aFunction, const TDesC8& aDataTo1, const TDesC8& aDataTo2, TDes8& aDataFrom); sl@0: sl@0: /** sl@0: * Sends a custom command synchronously to the controller plugin sl@0: * sl@0: * @since Series 60 3.0 sl@0: * @param aDestination sl@0: The destination of the custom command, consisting of the unique ID of the sl@0: interface of this custom command and a special handle id KMMFObjectHandleController sl@0: to indicate that the custom command is to be handled by the controller plugin sl@0: * @param aFunction The function number to indicate which function is to be called sl@0: on the controller's custom command interface. sl@0: * @param aDataTo1 A reference to data to be copied to the controller plugin. The exact sl@0: contents of the data are dependent on the custom command interface of the controller. Can be NULL. sl@0: * @param aDataTo2 sl@0: A reference to data to be copied to the controller plugin. The exact contents of the data sl@0: are dependent on the custom command interface of the controller. Can be NULL sl@0: * @return KErrNone on success, otherwise another of the system-wide error codes sl@0: */ sl@0: IMPORT_C TInt CustomCommandSync(const TMMFMessageDestinationPckg& aDestination, TInt aFunction, const TDesC8& aDataTo1, const TDesC8& aDataTo2); sl@0: sl@0: /** sl@0: * Sends a custom command asynchronously to the controller plugin sl@0: * sl@0: * @since Series 60 3.0 sl@0: * @param aDestination sl@0: The destination of the custom command, consisting of the unique ID of the sl@0: interface of this custom command and a special handle id KMMFObjectHandleController sl@0: to indicate that the custom command is to be handled by the controller plugin sl@0: * @param aFunction The function number to indicate which function is to be called sl@0: on the controller's custom command interface. sl@0: * @param aDataTo1 A reference to data to be copied to the controller plugin. The exact sl@0: contents of the data are dependent on the custom command interface of the controller. Can be NULL. sl@0: * @param aDataTo2 sl@0: A reference to data to be copied to the controller plugin. The exact contents of the data sl@0: are dependent on the custom command interface of the controller. Can be NULL sl@0: * @param aDataFrom sl@0: A reference to an area of memory to which the controller plugin will write any data sl@0: to be passed back to the client. Cannot be NULL sl@0: * @param aDataFrom sl@0: The TRequestStatus of an active object. This will contain the result of the custom sl@0: command on completion. The exact range of result values is dependent on the custom sl@0: command interface sl@0: * @return KErrNone on success, otherwise another of the system-wide error codes sl@0: */ sl@0: IMPORT_C void CustomCommandAsync(const TMMFMessageDestinationPckg& aDestination, TInt aFunction, const TDesC8& aDataTo1, const TDesC8& aDataTo2, TDes8& aDataFrom, TRequestStatus& aStatus); sl@0: sl@0: /** sl@0: * Sends a custom command asynchronously to the controller plugin sl@0: * sl@0: * @since Series 60 3.0 sl@0: * @param aDestination sl@0: The destination of the custom command, consisting of the unique ID of the sl@0: interface of this custom command and a special handle id KMMFObjectHandleController sl@0: to indicate that the custom command is to be handled by the controller plugin sl@0: * @param aFunction The function number to indicate which function is to be called sl@0: on the controller's custom command interface. sl@0: * @param aDataTo1 A reference to data to be copied to the controller plugin. The exact sl@0: contents of the data are dependent on the custom command interface of the controller. Can be NULL. sl@0: * @param aDataTo2 sl@0: A reference to data to be copied to the controller plugin. The exact contents of the data sl@0: are dependent on the custom command interface of the controller. Can be NULL sl@0: * @param aDataFrom sl@0: A reference to an area of memory to which the controller plugin will write any data sl@0: to be passed back to the client. Cannot be NULL sl@0: * @return KErrNone on success, otherwise another of the system-wide error codes sl@0: */ sl@0: IMPORT_C void CustomCommandAsync(const TMMFMessageDestinationPckg& aDestination, TInt aFunction, const TDesC8& aDataTo1, const TDesC8& aDataTo2, TRequestStatus& aStatus); sl@0: sl@0: protected: sl@0: /** sl@0: This member is internal and not intended for use. sl@0: */ sl@0: CDrmAudioPlayerAdaptation* iProperties; sl@0: sl@0: }; sl@0: sl@0: #endif