diff -r 4ce423f34688 -r e267340986c9 mmserv/voipaudioservices/VoIPIntfc/src/VoIPG711DecoderIntfcImpl.cpp --- a/mmserv/voipaudioservices/VoIPIntfc/src/VoIPG711DecoderIntfcImpl.cpp Fri Sep 17 08:33:15 2010 +0300 +++ b/mmserv/voipaudioservices/VoIPIntfc/src/VoIPG711DecoderIntfcImpl.cpp Mon Oct 04 00:51:56 2010 +0300 @@ -1,32 +1,30 @@ /* -* Copyright (c) 2007-2008 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: VOIP Audio Service -* -*/ - + * Copyright (c) 2007-2008 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: VOIP Audio Service + * + */ #include "VoIPAudioSession.h" #include "VoIPDownlinkStreamImpl.h" #include "VoIPG711DecoderIntfcImpl.h" - // --------------------------------------------------------------------------- // CVoIPG711DecoderIntfcImpl::NewL // --------------------------------------------------------------------------- // CVoIPG711DecoderIntfcImpl* CVoIPG711DecoderIntfcImpl::NewL( - CVoIPAudioDownlinkStreamImpl* aDnLinkStreamImpl) + CVoIPAudioDownlinkStreamImpl* aDnLinkStreamImpl) { CVoIPG711DecoderIntfcImpl* self = new (ELeave) CVoIPG711DecoderIntfcImpl(); CleanupStack::PushL(self); @@ -56,7 +54,7 @@ // --------------------------------------------------------------------------- // void CVoIPG711DecoderIntfcImpl::ConstructL( - CVoIPAudioDownlinkStreamImpl* aDnLinkStreamImpl) + CVoIPAudioDownlinkStreamImpl* aDnLinkStreamImpl) { iVoIPAudioSession = aDnLinkStreamImpl->GetSession(); CVoIPFormatIntfcImpl::ConstructL(iVoIPAudioSession); @@ -68,7 +66,7 @@ // --------------------------------------------------------------------------- // TInt CVoIPG711DecoderIntfcImpl::SetMode( - CVoIPFormatIntfc::TG711CodecMode aMode) + CVoIPFormatIntfc::TG711CodecMode aMode) { TInt err = iVoIPAudioSession->SetMode(aMode); return err; @@ -79,7 +77,7 @@ // --------------------------------------------------------------------------- // TInt CVoIPG711DecoderIntfcImpl::GetMode( - CVoIPFormatIntfc::TG711CodecMode& aMode) + CVoIPFormatIntfc::TG711CodecMode& aMode) { TInt err = iVoIPAudioSession->GetMode(aMode); return err; @@ -125,5 +123,4 @@ return err; } - // End of file