Update contrib.
2 * Copyright (c) 2002-2006 Nokia Corporation and/or its subsidiary(-ies).
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".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
14 * Description: Used for interface to G711 encoder.
19 #ifndef CG711ENCODERINTFC_H
20 #define CG711ENCODERINTFC_H
26 const TUid KUidG711EncoderIntfc = {0x10207AFF};
32 // FUNCTION PROTOTYPES
34 // FORWARD DECLARATIONS
36 class CMdaAudioInputStream;
41 * Interface for G711 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.
46 * @lib G711EncoderIntfc.lib
49 class CG711EncoderIntfc : public CBase
59 public: // Constructors and destructor
62 * Creates the interface.
64 IMPORT_C static CG711EncoderIntfc* NewL(CMMFDevSound& aDevSound);
67 * Creates the interface.
69 IMPORT_C static CG711EncoderIntfc* NewL(CMdaAudioInputStream& aUtility);
71 public: // New functions
74 * Used to change the encoding mode.
76 * @param aEncodeMode requested encode mode.
79 IMPORT_C virtual TInt SetEncoderMode(TEncodeMode aEncodeMode) = 0;
82 * Enables and disables the voice activity (VAD) mode.
84 * @param aVadMode requested VAD mode.
87 IMPORT_C virtual TInt SetVadMode(TBool aVadMode) = 0;
90 * Retrieves the current state of VAD mode.
92 * @param aVadMode returns current VAD mode.
95 IMPORT_C virtual TInt GetVadMode(TBool& aVadMode) = 0;
98 public: // Functions from base classes
99 protected: // New functions
100 protected: // Functions from base classes
106 public: // Friend classes
107 protected: // Friend classes
108 private: // Friend classes
112 #endif // CG711ENCODERINTFC_H