mmserv/voipaudioservices/VoIPIntfc/inc/VoIPILBCDecoderIntfcImpl.h
changeset 0 71ca22bcf22a
child 53 eabc8c503852
equal deleted inserted replaced
-1:000000000000 0:71ca22bcf22a
       
     1 /*
       
     2 * Copyright (c) 2007-2008 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:  VOIP Audio Services
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef __VOIPILBCDECFORMATINTFCIMPL_H
       
    20 #define __VOIPILBCDECFORMATINTFCIMPL_H
       
    21 
       
    22 #include <voipilbcdecoderintfc.h>
       
    23 #include "VoIPFormatIntfcImpl.h"
       
    24 
       
    25 // FORWARD DECLARATION
       
    26 class CVoIPAudioDownlinkStreamImpl;
       
    27 
       
    28 // -----------------------------------------------------------------------------
       
    29 // CVoIPILBCDecoderIntfcImpl class
       
    30 // -----------------------------------------------------------------------------
       
    31 NONSHARABLE_CLASS(CVoIPILBCDecoderIntfcImpl) : public CBase,
       
    32                                                public CVoIPILBCDecoderIntfc,
       
    33                                                public CVoIPFormatIntfcImpl
       
    34     {
       
    35 public:
       
    36     static CVoIPILBCDecoderIntfcImpl*
       
    37            NewL(CVoIPAudioDownlinkStreamImpl* aDnLinkStreamImpl);
       
    38 
       
    39     virtual ~CVoIPILBCDecoderIntfcImpl();
       
    40 
       
    41     TInt SetMode(CVoIPFormatIntfc::TILBCCodecMode aMode);
       
    42     TInt GetMode(CVoIPFormatIntfc::TILBCCodecMode& aMode); //n/a through CIs
       
    43     TInt SetCNG(TBool aCng);
       
    44     TInt GetCNG(TBool& aCng);
       
    45 
       
    46 private:
       
    47     CVoIPILBCDecoderIntfcImpl();
       
    48     void ConstructL(CVoIPAudioDownlinkStreamImpl* aDnLinkStreamImpl);
       
    49 
       
    50     };
       
    51 
       
    52 
       
    53 #endif //__VOIPILBCDECFORMATINTFCIMPL_H
       
    54 
       
    55 // End of file