os/mm/mm_plat/added_devsound_control_api/inc/AddedDevSoundControlCI.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2006 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:  Project specification for AddedDevSoundControl Custom Interface
    15 *
    16 */
    17 
    18 
    19 #ifndef __ADDEDDEVSOUNDCONTROLCI_H__
    20 #define __ADDEDDEVSOUNDCONTROLCI_H__
    21 
    22 // INCLUDES
    23 #include <e32base.h>
    24 
    25 // CONSTANTS
    26 // Interface UID associated to the Custom Interface class.
    27 const static TUid KUidAddedDevSoundControlInterface = {0x101FAF92};
    28 
    29 // MACROS
    30 
    31 // DATA TYPES
    32 
    33 // FUNCTION PROTOTYPES
    34 
    35 // FORWARD DECLARATIONS
    36 
    37 // CLASS DECLARATION
    38 
    39 /**
    40  *  Interface class for altering pause and resume behavior.
    41  *
    42  *  Clients of DevSound API can use this interface alter the default pause
    43  *  and resume behavior. By default when CMMFDevSound::Pause() is called data
    44  *  already sent to it is flushed/discarded and audio resources are released.
    45  *  Upon next PlayInitL() audio resources are re-allocated.
    46  *
    47  *  DevSound clients can obtain a handle to this interface by calling
    48  *  CMMFDevSound::CustomInterface() function with UID
    49  *  KUidAddedDevSoundControlInterface. Along with the handle, the ownership of
    50  *  the object is also transferred to the client.
    51  *
    52  *  This interface is valid until the DevSound is re-initialized or deleted.
    53  *  Client shuold make sure that they delete the interface before DevSound is
    54  *  re-initialized or deleted.
    55  *
    56  *  @lib n/a
    57  *  @since S60 3.2
    58  */
    59 class MAddedDevSoundControl
    60 	{
    61 public:
    62 
    63     /**
    64      *
    65      * Alters DevSound's behavior for handling Pause and Resume.
    66      *
    67      * Can be called after DevSound creation. Must be called prior to calling
    68      * CMMFDevSound::Pause() to take effect.
    69      *
    70      * When value is ETrue, Calling CMMFDevSound::Pause() will halt the decoding
    71      * and/or rendering temporarily. Data buffers sent to the DevSound instance 
    72      * are buffered up. Resources associated with the DevSound instance is kept
    73      * intact. Upon resuming via CMMFDevSound::PlayInitL(), all buffered data
    74      * will be decoded and/or rendered.
    75      * When value is EFalse, CMMFDevSound::Pause() will stop decoding and/or
    76      * rendering immediately. Data buffers sent to the DevSound instance that
    77      * were not decoded/rendered are flushed. Resources associated with
    78      * DevSound instance are also released.
    79      *
    80      * Not necessarily supported by all platforms.
    81      *
    82      * Will return a KErrNotSupported if the DevSound behavior cannot be altered.
    83      *
    84      * @since S60 3.2
    85      * @param TBool - Toggles HW awarness
    86      * @return TInt - Function call status
    87      *
    88      */
    89      virtual TInt SetHwAwareness(TBool aHwAware) = 0;
    90 
    91      /**
    92       *
    93       * Flushes audio data that are not decoded/rendered yet.
    94       *
    95       * Not necessarily available in all platforms.
    96       *
    97       * DevSound instance must be in the playing PAUSED state.
    98       *
    99       * @since S60 3.2
   100       * @param none
   101       * @return TInt - Function call status.
   102       *         KErrNone if audio data is flushed successfully.
   103       *         KErrInUse if DevSound is not in paused state.
   104       *         KErrNotSupported if the feature is not available and/or
   105       *         hardware awareness flag is not set.
   106       *
   107       */
   108      virtual TInt PauseAndFlush() = 0;
   109 
   110     /*
   111      *
   112      * Provide virtual destructor to allow DevSound clients to delete
   113      * instance through the pointer recieved via call to CustomInterface().
   114      *
   115      */
   116     virtual ~MAddedDevSoundControl() {};
   117 
   118 	};
   119 
   120 #endif // __ADDEDDEVSOUNDCONTROLCI_H__
   121 
   122 // End of File