Update contrib.
2 * Copyright (c) 2007 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
14 * Description: Class handling restricted audio output
20 #ifndef RESTRICTEDAUDIOOUTPUT_H
21 #define RESTRICTEDAUDIOOUTPUT_H
25 class CRestrictedAudioOutputImpl;
28 * CRestrictedAudioOutput class documentation.
30 * Use this class to control audio routing to enforce DRM restrictions.
32 * Instance of this class should be associated with an audio stream.
33 * (Currently supported for DevSound API instance). Once associated, it is
34 * valid and should be used only until the DevSound instance exist. Instance of
35 * this class should be deleted before deleting the DevSound instance.
37 * The output restrictions specified via Commit() will be applied to audio devices
38 * when DevSound instance enters playing state.
40 * @lib RestrictedAudioOutput.lib
44 class CRestrictedAudioOutput : public CBase
47 enum TAllowedOutputPreference
51 EAllowAudioFMTransmitter,
59 * RIM CR 417-7642: HDMI with HDCP to Resctricted Audio Output API
60 * Adding new ENUMs to CRestrictedAudioOutput::TAllowedOutputPreference for HDMI and HDCP
61 * EAllowAudioHDMI and EAllowAudioHdmiHdcpRequired
64 EAllowAudioHdmiHdcpRequired
72 IMPORT_C virtual ~CRestrictedAudioOutput();
75 * Appends an allowed output to the existing list.
77 * @param aOutput to be appended.
78 * @return KErrNone if successful. KErrAlreadyExists if aOutput is already
79 * appended before. KErrIncompleteInitialization if ConstructL is not called
80 * by the deriving class. Otherwise any systemwide error code.
82 IMPORT_C TInt AppendAllowedOutput( TAllowedOutputPreference aOutput );
85 * Removes an allowed output from the existing list.
87 * @param The position within the array from where the object is to be
88 * removed. The position is relative to zero, i.e. zero implies that an
89 * object at the beginning of the array is to be removed.
91 * @return KErrNone if successful. KErrNotFound if aOutput is not in the
92 * the list. KErrIncompleteInitialization if ConstructL is not called
93 * by the deriving class. Otherwise any systemwide error code.
95 IMPORT_C TInt RemoveAllowedOutput( TAllowedOutputPreference aOutput );
98 * Gets a reference to an allowed output located at a specified position
101 * @param The position within the array from where the object is to be
102 * removed. The position is relative to zero, i.e. zero implies that an
103 * object at the beginning of the array is to be removed.
105 * @param The position within the array from where the object is to be
106 * removed. The position is relative to zero, i.e. zero implies that an
107 * object at the beginning of the array is to be removed.
109 * @param A const reference to the object at position anIndex within the
112 * @return KErrNone if successful. KErrNotFound if index is not in the
113 * the list. KErrIncompleteInitialization if ConstructL is not called
114 * by the deriving class. Otherwise any systemwide error code.
116 IMPORT_C TInt GetAllowedOutput( TInt aIndex, TAllowedOutputPreference& aOutput );
119 * Gets the number of objects in the array.
121 * @param On successful return will contain the number of objects in
124 * @return KErrIncompleteInitialization if ConstructL is not called
125 * by the deriving class. Otherwise a system wide error code.
127 IMPORT_C TInt GetAllowedOutputCount( TInt& aSize );
130 * Empties the list, so that it is ready to be reused.
133 * @return KErrNone if successful. KErrIncompleteInitialization if ConstructL
134 * is not called by the deriving class.
136 IMPORT_C TInt Reset();
139 * Applies settings cached locally and commits.
141 * This function can only be called when the DevSound instance is in Idle OR
144 * Output preference will take into effect when DevSound instance goes to
147 * If the client commits an empty list, all other active audio output in
148 * the system will be muted.
150 * @return KErrNone if successful. KErrInUse if DevSound instance is not in
151 * idle/stopped state.
153 virtual TInt Commit() = 0;
161 IMPORT_C CRestrictedAudioOutput();
164 * Second phase constructor. The derived class should call this during
168 IMPORT_C void ConstructL();
173 CRestrictedAudioOutputImpl* iImpl;
177 #endif // RESTRICTEDAUDIOOUTPUT_H