os/mm/mm_plat/restricted_audio_output_api/inc/RestrictedAudioOutput.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2007 Nokia Corporation and/or its subsidiary(-ies). 
     3 * All rights reserved.
     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".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description:  Class handling restricted audio output
    15 *
    16 */
    17 
    18 
    19 
    20 #ifndef RESTRICTEDAUDIOOUTPUT_H
    21 #define RESTRICTEDAUDIOOUTPUT_H
    22 
    23 #include <e32base.h>
    24 
    25 class CRestrictedAudioOutputImpl;
    26 
    27 /**
    28  * CRestrictedAudioOutput class documentation.
    29  *
    30  * Use this class to control audio routing to enforce DRM restrictions.
    31  *
    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.
    36  *
    37  * The output restrictions specified via Commit() will be applied to audio devices
    38  * when DevSound instance enters playing state.
    39  *
    40  * @lib RestrictedAudioOutput.lib
    41  *
    42  * @since S60 5.0 
    43  */
    44 class CRestrictedAudioOutput : public CBase
    45 	{
    46 public:
    47     enum TAllowedOutputPreference
    48         {
    49         EAllowAllAudio,
    50         EAllowAudioAnalog,
    51         EAllowAudioFMTransmitter,
    52         EAllowAudioBtHFPHSP,
    53         EAllowAudioBtA2DP,
    54         EAllowAudioUplink,
    55         EAllowAudioUsb,
    56         EAllowAudioRecording,
    57         EAllowVisualization,
    58         /**
    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
    62 		*/
    63         EAllowAudioHDMI,
    64         EAllowAudioHdmiHdcpRequired
    65         };
    66         
    67 
    68     /**
    69      * Destructor
    70      *
    71      */
    72     IMPORT_C virtual ~CRestrictedAudioOutput();
    73 
    74     /**
    75      * Appends an allowed output to the existing list.
    76      *
    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.
    81      */
    82     IMPORT_C TInt AppendAllowedOutput( TAllowedOutputPreference aOutput );
    83 
    84     /**
    85      * Removes an allowed output from the existing list.
    86      *
    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.
    90      *
    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.
    94      */
    95     IMPORT_C TInt RemoveAllowedOutput( TAllowedOutputPreference aOutput );
    96 
    97     /**
    98      * Gets a reference to an allowed output located at a specified position
    99      * within the list.
   100      *
   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.
   104      *
   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.
   108      *
   109      * @param A const reference to the object at position anIndex within the
   110      * list.
   111      *
   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.
   115      */
   116     IMPORT_C TInt GetAllowedOutput( TInt aIndex, TAllowedOutputPreference& aOutput  );
   117 
   118     /**
   119      * Gets the number of objects in the array.
   120      *
   121      * @param On successful return will contain the number of objects in
   122      * the list.
   123      *
   124      * @return KErrIncompleteInitialization if ConstructL is not called
   125      *  by the deriving class. Otherwise a system wide error code.
   126      */
   127     IMPORT_C TInt GetAllowedOutputCount( TInt& aSize );
   128 
   129     /**
   130      * Empties the list, so that it is ready to be reused.
   131      *
   132      *
   133      * @return KErrNone if successful. KErrIncompleteInitialization if ConstructL
   134      *  is not called by the deriving class.
   135      */
   136     IMPORT_C TInt Reset();
   137 
   138     /**
   139      * Applies settings cached locally and commits.
   140      *
   141      * This function can only be called when the DevSound instance is in Idle OR
   142      * Stopped state.
   143      *
   144      * Output preference will take into effect when DevSound instance goes to
   145      * Playing state.
   146      *
   147      * If the client commits an empty list, all other active audio output in 
   148      * the system will be muted.
   149      *
   150      * @return KErrNone if successful. KErrInUse if DevSound instance is not in 
   151      * idle/stopped state.
   152      */
   153     virtual TInt Commit() = 0;
   154 
   155 protected:
   156 
   157     /**
   158      * Constructor
   159      *
   160      */
   161     IMPORT_C CRestrictedAudioOutput();
   162     
   163   	/**
   164      * Second phase constructor. The derived class should call this during
   165      * construction.
   166      *
   167      */
   168     IMPORT_C void ConstructL();  
   169   
   170             
   171     
   172 private:
   173     	CRestrictedAudioOutputImpl* iImpl;
   174   
   175 	};
   176 
   177 #endif // RESTRICTEDAUDIOOUTPUT_H
   178 
   179 // End of file