multimediacommscontroller/tsrc/mmfstub/src/G711DecoderIntfcProxy_STUB.cpp
changeset 0 1bce908db942
equal deleted inserted replaced
-1:000000000000 0:1bce908db942
       
     1 /*
       
     2 * Copyright (c) 2002-2004 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     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".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description: 
       
    15 *
       
    16 */
       
    17 
       
    18 // INCLUDES
       
    19 #include <G711DecoderIntfc.h>
       
    20 #include <G711DecoderIntfcproxy.h>
       
    21 
       
    22 
       
    23 
       
    24 EXPORT_C CG711DecoderIntfcProxy* CG711DecoderIntfcProxy::NewL(
       
    25 		                    TMMFMessageDestinationPckg aMessageHandler,
       
    26                             MCustomCommand& aCustomCommand,
       
    27                             CCustomInterfaceUtility* aCustomInterfaceUtility)
       
    28 	{
       
    29   	return new CG711DecoderIntfcProxy(aMessageHandler, aCustomCommand, aCustomInterfaceUtility);
       
    30 	}
       
    31 
       
    32 EXPORT_C CG711DecoderIntfcProxy::~CG711DecoderIntfcProxy()
       
    33 	{
       
    34 	}
       
    35 
       
    36 CG711DecoderIntfcProxy::CG711DecoderIntfcProxy(
       
    37 		                    TMMFMessageDestinationPckg aMessageHandler, 
       
    38                             MCustomCommand& aCustomCommand,
       
    39                             CCustomInterfaceUtility* aCustomInterfaceUtility):iCustomCommand(aCustomCommand)
       
    40 	{
       
    41 	}
       
    42 
       
    43 EXPORT_C TInt CG711DecoderIntfcProxy::SetDecoderMode(TDecodeMode aDecodeMode)
       
    44 	{
       
    45 	return KErrNone;
       
    46 	}
       
    47 
       
    48 EXPORT_C TInt CG711DecoderIntfcProxy::SetCng(TBool aCng)
       
    49 	{
       
    50 	return KErrNone;
       
    51 	}
       
    52 
       
    53 EXPORT_C TInt CG711DecoderIntfcProxy::GetCng(TBool& aCng)
       
    54 	{
       
    55 	return KErrNone;
       
    56 	}
       
    57 
       
    58 EXPORT_C TInt CG711DecoderIntfcProxy::SetPlc(TBool aPlc)
       
    59 	{
       
    60 	return KErrNone;
       
    61 	}
       
    62 
       
    63