os/mm/mm_plat/ra8_decoder_interface_api/inc/Ra8CustomInterface.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2002-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:  Used for error concealment.
    15 *
    16 */
    17 
    18 
    19 #ifndef RA8CUSTOMINTERFACE_H
    20 #define RA8CUSTOMINTERFACE_H
    21 
    22 // INCLUDES
    23 #include <e32base.h>
    24 
    25 // CONSTANTS
    26 const TUid KUidRa8DecHwDeviceCI = {0x101FAF42};
    27 
    28 // MACROS
    29 
    30 // DATA TYPES
    31 enum TRa8DecHwDeviceCommand
    32 	{
    33 	ERa8DecHwdFrameNumber
    34 	};
    35 
    36 // FUNCTION PROTOTYPES
    37 
    38 // FORWARD DECLARATIONS
    39 class CMMFDevSound;
    40 
    41 // CLASS DECLARATION
    42 
    43 /**
    44 *  Interface for ra8 and sipro.
    45 *  Used for providing initialization information for dsp decoder and getting.
    46 *  information about played frames.
    47 *  This abstract class just provides the static NewL function for the creation
    48 *  of the proxy, and also defines the custom interface to be implemented by the
    49 *  proxy and the real custom interface implementation.
    50 *
    51 */
    52 class CRa8CustomInterface : public CBase
    53 	{
    54     public:  // Constructors and destructor
    55 
    56         /**
    57         * Creates the interface.
    58         */
    59 		IMPORT_C static CRa8CustomInterface* NewL(CMMFDevSound& aDevSound);
    60 
    61     public: // New functions
    62 		/**
    63 		* CRa8CustomInterface::FrameNumber
    64 		* is used get the current number of audio frames played.
    65 		* @return status
    66 		*/
    67 		virtual TInt FrameNumber() = 0;
    68 		/**
    69 		* CRa8CustomInterface::SetInitString
    70 		* is used to configure the initialization parameters for task creation.
    71 		* @param aInitString contains the initialization information for the task.
    72 		* @return status
    73 		*/
    74 		virtual TInt SetInitString(TDesC8& aInitString) = 0;
    75 
    76     public: // Functions from base classes
    77     protected:  // New functions
    78     protected:  // Functions from base classes
    79     private:
    80 
    81     public:     // Data
    82     protected:  // Data
    83     private:    // Data
    84     public:     // Friend classes
    85     protected:  // Friend classes
    86     private:    // Friend classes
    87 
    88 	};
    89 
    90 #endif      // RA8CUSTOMINTERFACE_H
    91 
    92 // End of File