diff -r 000000000000 -r bde4ae8d615e os/mm/mm_plat/g711_decoder_interface_api/inc/G711DecoderIntfc.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/os/mm/mm_plat/g711_decoder_interface_api/inc/G711DecoderIntfc.h Fri Jun 15 03:10:57 2012 +0200 @@ -0,0 +1,95 @@ +/* +* Copyright (c) 2002-2006 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: Used for interface to G711 decoder. +* +*/ + + +#ifndef CG711DECODERINTFC_H +#define CG711DECODERINTFC_H + +// INCLUDES +#include + +// CONSTANTS +const TUid KUidG711DecoderIntfc = {0x10207ABD}; + +// MACROS + +// DATA TYPES + +// FUNCTION PROTOTYPES + +// FORWARD DECLARATIONS +class CMMFDevSound; +class CMdaAudioOutputStream; + +// CLASS DECLARATION + +/** +* Interface for G711 decoder. +* This abstract class just provides the static NewL function for the creation +* of the proxy, and also defines the custom interface to be implemented by the +* proxy and the real custom interface implementation. +* +* @lib G711DecoderIntfc.lib +* @since S60 3.0 +*/ +class CG711DecoderIntfc : public CBase + { + // DATA TYPES + public: + enum TDecodeMode + { + EDecALaw, + EDecULaw + }; + + public: // Constructors and destructor + + /** + * Creates the interface. + */ + IMPORT_C static CG711DecoderIntfc* + NewL(CMMFDevSound& aDevSound); + + /** + * Creates the interface. + */ + IMPORT_C static CG711DecoderIntfc* + NewL(CMdaAudioOutputStream& aUtility); + + public: // New functions + IMPORT_C virtual TInt SetDecoderMode(TDecodeMode aDecodeMode) = 0; + IMPORT_C virtual TInt SetCng(TBool aCng) = 0; + IMPORT_C virtual TInt GetCng(TBool& aCng) = 0; + IMPORT_C virtual TInt SetPlc(TBool aPlc) = 0; + + public: // Functions from base classes + protected: // New functions + protected: // Functions from base classes + private: + + public: // Data + protected: // Data + private: // Data + public: // Friend classes + protected: // Friend classes + private: // Friend classes + + }; + +#endif // CG711DECODERINTFC_H + +// End of File