os/mm/mm_plat/g729_encoder_interface_api/inc/G729EncoderIntfc.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-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 G729 encoder.
    15 *
    16 */
    17 
    18 
    19 #ifndef CG729ENCODERINTFC_H
    20 #define CG729ENCODERINTFC_H
    21 
    22 // INCLUDES
    23 #include <e32base.h>
    24 
    25 // CONSTANTS
    26 const TUid KUidG729EncoderIntfc = {0x10207B00};
    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 G729 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 G729EncoderIntfc.lib
    47 *  @since S60 3.0
    48 */
    49 class CG729EncoderIntfc : public CBase
    50 	{
    51     public:  // Constructors and destructor
    52         
    53         /**
    54         * Creates the interface.
    55         */
    56 		IMPORT_C static CG729EncoderIntfc* NewL(CMMFDevSound& aDevSound);
    57 
    58         /**
    59         * Creates the interface.
    60         */
    61 		IMPORT_C static CG729EncoderIntfc* NewL(CMdaAudioInputStream& aUtility);
    62         
    63     public: // New functions
    64     
    65         /**
    66         * Enables and disables the voice activity (VAD) mode.
    67         * @since S60 3.0
    68         * @param aVadMode requested VAD mode.
    69         * @return status
    70         */
    71 		IMPORT_C virtual TInt SetVadMode(TBool aVadMode) = 0;
    72 
    73         /**
    74         * Retrieves the current state of VAD mode.
    75         * @since S60 3.0
    76         * @param aVadMode returns current VAD mode.
    77         * @return status
    78         */
    79 		IMPORT_C virtual TInt GetVadMode(TBool& aVadMode) = 0;
    80 
    81     public: // Functions from base classes
    82     protected:  // New functions
    83     protected:  // Functions from base classes
    84     private:
    85 
    86     public:     // Data
    87     protected:  // Data
    88     private:    // Data
    89     public:     // Friend classes
    90     protected:  // Friend classes
    91     private:    // Friend classes
    92 
    93 	};
    94 
    95 #endif      // CG729ENCODERINTFC_H
    96             
    97 // End of File