os/mm/mm_plat/ilbc_encoder_interface_api/inc/IlbcEncoderIntfc.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     1 /*
     2 * Copyright (c) 2002-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:  Used for interface to Ilbc encoder.
    15 *
    16 */
    17 
    18 
    19 #ifndef CILBCENCODERINTFC_H
    20 #define CILBCENCODERINTFC_H
    21 
    22 // INCLUDES
    23 #include <e32base.h>
    24 
    25 // CONSTANTS
    26 const TUid KUidIlbcEncoderIntfc = {0x10207B01};
    27 
    28 // MACROS
    29 
    30 // DATA TYPES
    31 
    32 // FUNCTION PROTOTYPES
    33 
    34 // FORWARD DECLARATIONS
    35 class CMMFDevSound;
    36 class CMdaAudioInputStream;
    37 
    38 // CLASS DECLARATION
    39 
    40 /**
    41 *  Interface for Ilbc encoder.
    42 *  This abstract class just provides the static NewL function for the creation
    43 *  of the proxy, and also defines the custom interface to be implemented by the
    44 *  proxy and the real custom interface implementation.
    45 *
    46 *  @lib IlbcEncoderIntfc.lib
    47 *  @since S60 3.0
    48 */
    49 class CIlbcEncoderIntfc : public CBase
    50 	{
    51     // DATA TYPES
    52     public:
    53         enum TEncodeMode
    54             {
    55             E20msFrame,
    56             E30msFrame
    57             };
    58 
    59     public:  // Constructors and destructor
    60         
    61         /**
    62         * Creates the interface.
    63         */
    64 		IMPORT_C static CIlbcEncoderIntfc* NewL(CMMFDevSound& aDevSound);
    65 
    66         /**
    67         * Creates the interface.
    68         */
    69 		IMPORT_C static CIlbcEncoderIntfc* NewL(CMdaAudioInputStream& aUtility);
    70         
    71     public: // New functions
    72 		IMPORT_C virtual TInt SetEncoderMode(TEncodeMode aEncodeMode) = 0;
    73 		
    74         /**
    75         * Enables and disables the voice activity (VAD) mode.
    76         * @since S60 3.0
    77         * @param aVadMode requested VAD mode.
    78         * @return status
    79         */
    80 		IMPORT_C virtual TInt SetVadMode(TBool aVadMode) = 0;
    81 
    82         /**
    83         * Retrieves the current state of VAD mode.
    84         * @since S60 3.0
    85         * @param aVadMode returns current VAD mode.
    86         * @return status
    87         */
    88 		IMPORT_C virtual TInt GetVadMode(TBool& aVadMode) = 0;
    89 
    90 
    91     public: // Functions from base classes
    92     protected:  // New functions
    93     protected:  // Functions from base classes
    94     private:
    95 
    96     public:     // Data
    97     protected:  // Data
    98     private:    // Data
    99     public:     // Friend classes
   100     protected:  // Friend classes
   101     private:    // Friend classes
   102 
   103 	};
   104 
   105 #endif      // CILBCENCODERINTFC_H
   106             
   107 // End of File