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 G729 decoder.
19 #ifndef CG729DECODERINTFC_H
20 #define CG729DECODERINTFC_H
26 const TUid KUidG729DecoderIntfc = {0x10207ABE};
32 // FUNCTION PROTOTYPES
34 // FORWARD DECLARATIONS
36 class CMdaAudioOutputStream;
41 * Interface for G729 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 G729DecoderIntfc.lib
49 class CG729DecoderIntfc : public CBase
51 public: // Constructors and destructor
54 * Creates the interface.
56 IMPORT_C static CG729DecoderIntfc*
57 NewL(CMMFDevSound& aDevSound);
60 * Creates the interface.
62 IMPORT_C static CG729DecoderIntfc*
63 NewL(CMdaAudioOutputStream& aUtility);
65 public: // New functions
66 IMPORT_C virtual TInt BadLsfNextBuffer() = 0;
68 public: // Functions from base classes
69 protected: // New functions
70 protected: // Functions from base classes
76 public: // Friend classes
77 protected: // Friend classes
78 private: // Friend classes
82 #endif // CG729DECODERINTFC_H