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 decoder.
19 #ifndef CG711DECODERINTFC_H
20 #define CG711DECODERINTFC_H
26 const TUid KUidG711DecoderIntfc = {0x10207ABD};
32 // FUNCTION PROTOTYPES
34 // FORWARD DECLARATIONS
36 class CMdaAudioOutputStream;
41 * Interface for G711 decoder.
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 G711DecoderIntfc.lib
49 class CG711DecoderIntfc : public CBase
59 public: // Constructors and destructor
62 * Creates the interface.
64 IMPORT_C static CG711DecoderIntfc*
65 NewL(CMMFDevSound& aDevSound);
68 * Creates the interface.
70 IMPORT_C static CG711DecoderIntfc*
71 NewL(CMdaAudioOutputStream& aUtility);
73 public: // New functions
74 IMPORT_C virtual TInt SetDecoderMode(TDecodeMode aDecodeMode) = 0;
75 IMPORT_C virtual TInt SetCng(TBool aCng) = 0;
76 IMPORT_C virtual TInt GetCng(TBool& aCng) = 0;
77 IMPORT_C virtual TInt SetPlc(TBool aPlc) = 0;
79 public: // Functions from base classes
80 protected: // New functions
81 protected: // Functions from base classes
87 public: // Friend classes
88 protected: // Friend classes
89 private: // Friend classes
93 #endif // CG711DECODERINTFC_H