sl@0: /* sl@0: * Copyright (c) 2007 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: Class handling restricted audio output sl@0: * sl@0: */ sl@0: sl@0: sl@0: sl@0: #ifndef RESTRICTEDAUDIOOUTPUT_H sl@0: #define RESTRICTEDAUDIOOUTPUT_H sl@0: sl@0: #include sl@0: sl@0: class CRestrictedAudioOutputImpl; sl@0: sl@0: /** sl@0: * CRestrictedAudioOutput class documentation. sl@0: * sl@0: * Use this class to control audio routing to enforce DRM restrictions. sl@0: * sl@0: * Instance of this class should be associated with an audio stream. sl@0: * (Currently supported for DevSound API instance). Once associated, it is sl@0: * valid and should be used only until the DevSound instance exist. Instance of sl@0: * this class should be deleted before deleting the DevSound instance. sl@0: * sl@0: * The output restrictions specified via Commit() will be applied to audio devices sl@0: * when DevSound instance enters playing state. sl@0: * sl@0: * @lib RestrictedAudioOutput.lib sl@0: * sl@0: * @since S60 5.0 sl@0: */ sl@0: class CRestrictedAudioOutput : public CBase sl@0: { sl@0: public: sl@0: enum TAllowedOutputPreference sl@0: { sl@0: EAllowAllAudio, sl@0: EAllowAudioAnalog, sl@0: EAllowAudioFMTransmitter, sl@0: EAllowAudioBtHFPHSP, sl@0: EAllowAudioBtA2DP, sl@0: EAllowAudioUplink, sl@0: EAllowAudioUsb, sl@0: EAllowAudioRecording, sl@0: EAllowVisualization, sl@0: /** sl@0: * RIM CR 417-7642: HDMI with HDCP to Resctricted Audio Output API sl@0: * Adding new ENUMs to CRestrictedAudioOutput::TAllowedOutputPreference for HDMI and HDCP sl@0: * EAllowAudioHDMI and EAllowAudioHdmiHdcpRequired sl@0: */ sl@0: EAllowAudioHDMI, sl@0: EAllowAudioHdmiHdcpRequired sl@0: }; sl@0: sl@0: sl@0: /** sl@0: * Destructor sl@0: * sl@0: */ sl@0: IMPORT_C virtual ~CRestrictedAudioOutput(); sl@0: sl@0: /** sl@0: * Appends an allowed output to the existing list. sl@0: * sl@0: * @param aOutput to be appended. sl@0: * @return KErrNone if successful. KErrAlreadyExists if aOutput is already sl@0: * appended before. KErrIncompleteInitialization if ConstructL is not called sl@0: * by the deriving class. Otherwise any systemwide error code. sl@0: */ sl@0: IMPORT_C TInt AppendAllowedOutput( TAllowedOutputPreference aOutput ); sl@0: sl@0: /** sl@0: * Removes an allowed output from the existing list. sl@0: * sl@0: * @param The position within the array from where the object is to be sl@0: * removed. The position is relative to zero, i.e. zero implies that an sl@0: * object at the beginning of the array is to be removed. sl@0: * sl@0: * @return KErrNone if successful. KErrNotFound if aOutput is not in the sl@0: * the list. KErrIncompleteInitialization if ConstructL is not called sl@0: * by the deriving class. Otherwise any systemwide error code. sl@0: */ sl@0: IMPORT_C TInt RemoveAllowedOutput( TAllowedOutputPreference aOutput ); sl@0: sl@0: /** sl@0: * Gets a reference to an allowed output located at a specified position sl@0: * within the list. sl@0: * sl@0: * @param The position within the array from where the object is to be sl@0: * removed. The position is relative to zero, i.e. zero implies that an sl@0: * object at the beginning of the array is to be removed. sl@0: * sl@0: * @param The position within the array from where the object is to be sl@0: * removed. The position is relative to zero, i.e. zero implies that an sl@0: * object at the beginning of the array is to be removed. sl@0: * sl@0: * @param A const reference to the object at position anIndex within the sl@0: * list. sl@0: * sl@0: * @return KErrNone if successful. KErrNotFound if index is not in the sl@0: * the list. KErrIncompleteInitialization if ConstructL is not called sl@0: * by the deriving class. Otherwise any systemwide error code. sl@0: */ sl@0: IMPORT_C TInt GetAllowedOutput( TInt aIndex, TAllowedOutputPreference& aOutput ); sl@0: sl@0: /** sl@0: * Gets the number of objects in the array. sl@0: * sl@0: * @param On successful return will contain the number of objects in sl@0: * the list. sl@0: * sl@0: * @return KErrIncompleteInitialization if ConstructL is not called sl@0: * by the deriving class. Otherwise a system wide error code. sl@0: */ sl@0: IMPORT_C TInt GetAllowedOutputCount( TInt& aSize ); sl@0: sl@0: /** sl@0: * Empties the list, so that it is ready to be reused. sl@0: * sl@0: * sl@0: * @return KErrNone if successful. KErrIncompleteInitialization if ConstructL sl@0: * is not called by the deriving class. sl@0: */ sl@0: IMPORT_C TInt Reset(); sl@0: sl@0: /** sl@0: * Applies settings cached locally and commits. sl@0: * sl@0: * This function can only be called when the DevSound instance is in Idle OR sl@0: * Stopped state. sl@0: * sl@0: * Output preference will take into effect when DevSound instance goes to sl@0: * Playing state. sl@0: * sl@0: * If the client commits an empty list, all other active audio output in sl@0: * the system will be muted. sl@0: * sl@0: * @return KErrNone if successful. KErrInUse if DevSound instance is not in sl@0: * idle/stopped state. sl@0: */ sl@0: virtual TInt Commit() = 0; sl@0: sl@0: protected: sl@0: sl@0: /** sl@0: * Constructor sl@0: * sl@0: */ sl@0: IMPORT_C CRestrictedAudioOutput(); sl@0: sl@0: /** sl@0: * Second phase constructor. The derived class should call this during sl@0: * construction. sl@0: * sl@0: */ sl@0: IMPORT_C void ConstructL(); sl@0: sl@0: sl@0: sl@0: private: sl@0: CRestrictedAudioOutputImpl* iImpl; sl@0: sl@0: }; sl@0: sl@0: #endif // RESTRICTEDAUDIOOUTPUT_H sl@0: sl@0: // End of file