os/mm/mm_plat/ilbc_encoder_interface_api/inc/IlbcEncoderIntfc.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/mm/mm_plat/ilbc_encoder_interface_api/inc/IlbcEncoderIntfc.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,107 @@
     1.4 +/*
     1.5 +* Copyright (c) 2002-2006 Nokia Corporation and/or its subsidiary(-ies). 
     1.6 +* All rights reserved.
     1.7 +* This component and the accompanying materials are made available
     1.8 +* under the terms of "Eclipse Public License v1.0"
     1.9 +* which accompanies this distribution, and is available
    1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.11 +*
    1.12 +* Initial Contributors:
    1.13 +* Nokia Corporation - initial contribution.
    1.14 +*
    1.15 +* Contributors:
    1.16 +*
    1.17 +* Description:  Used for interface to Ilbc encoder.
    1.18 +*
    1.19 +*/
    1.20 +
    1.21 +
    1.22 +#ifndef CILBCENCODERINTFC_H
    1.23 +#define CILBCENCODERINTFC_H
    1.24 +
    1.25 +// INCLUDES
    1.26 +#include <e32base.h>
    1.27 +
    1.28 +// CONSTANTS
    1.29 +const TUid KUidIlbcEncoderIntfc = {0x10207B01};
    1.30 +
    1.31 +// MACROS
    1.32 +
    1.33 +// DATA TYPES
    1.34 +
    1.35 +// FUNCTION PROTOTYPES
    1.36 +
    1.37 +// FORWARD DECLARATIONS
    1.38 +class CMMFDevSound;
    1.39 +class CMdaAudioInputStream;
    1.40 +
    1.41 +// CLASS DECLARATION
    1.42 +
    1.43 +/**
    1.44 +*  Interface for Ilbc encoder.
    1.45 +*  This abstract class just provides the static NewL function for the creation
    1.46 +*  of the proxy, and also defines the custom interface to be implemented by the
    1.47 +*  proxy and the real custom interface implementation.
    1.48 +*
    1.49 +*  @lib IlbcEncoderIntfc.lib
    1.50 +*  @since S60 3.0
    1.51 +*/
    1.52 +class CIlbcEncoderIntfc : public CBase
    1.53 +	{
    1.54 +    // DATA TYPES
    1.55 +    public:
    1.56 +        enum TEncodeMode
    1.57 +            {
    1.58 +            E20msFrame,
    1.59 +            E30msFrame
    1.60 +            };
    1.61 +
    1.62 +    public:  // Constructors and destructor
    1.63 +        
    1.64 +        /**
    1.65 +        * Creates the interface.
    1.66 +        */
    1.67 +		IMPORT_C static CIlbcEncoderIntfc* NewL(CMMFDevSound& aDevSound);
    1.68 +
    1.69 +        /**
    1.70 +        * Creates the interface.
    1.71 +        */
    1.72 +		IMPORT_C static CIlbcEncoderIntfc* NewL(CMdaAudioInputStream& aUtility);
    1.73 +        
    1.74 +    public: // New functions
    1.75 +		IMPORT_C virtual TInt SetEncoderMode(TEncodeMode aEncodeMode) = 0;
    1.76 +		
    1.77 +        /**
    1.78 +        * Enables and disables the voice activity (VAD) mode.
    1.79 +        * @since S60 3.0
    1.80 +        * @param aVadMode requested VAD mode.
    1.81 +        * @return status
    1.82 +        */
    1.83 +		IMPORT_C virtual TInt SetVadMode(TBool aVadMode) = 0;
    1.84 +
    1.85 +        /**
    1.86 +        * Retrieves the current state of VAD mode.
    1.87 +        * @since S60 3.0
    1.88 +        * @param aVadMode returns current VAD mode.
    1.89 +        * @return status
    1.90 +        */
    1.91 +		IMPORT_C virtual TInt GetVadMode(TBool& aVadMode) = 0;
    1.92 +
    1.93 +
    1.94 +    public: // Functions from base classes
    1.95 +    protected:  // New functions
    1.96 +    protected:  // Functions from base classes
    1.97 +    private:
    1.98 +
    1.99 +    public:     // Data
   1.100 +    protected:  // Data
   1.101 +    private:    // Data
   1.102 +    public:     // Friend classes
   1.103 +    protected:  // Friend classes
   1.104 +    private:    // Friend classes
   1.105 +
   1.106 +	};
   1.107 +
   1.108 +#endif      // CILBCENCODERINTFC_H
   1.109 +            
   1.110 +// End of File