diff -r 4ce423f34688 -r e267340986c9 mmserv/voipaudioservices/VoIPIntfc/src/VoIPG711EncoderIntfcImpl.cpp --- a/mmserv/voipaudioservices/VoIPIntfc/src/VoIPG711EncoderIntfcImpl.cpp Fri Sep 17 08:33:15 2010 +0300 +++ b/mmserv/voipaudioservices/VoIPIntfc/src/VoIPG711EncoderIntfcImpl.cpp Mon Oct 04 00:51:56 2010 +0300 @@ -1,34 +1,33 @@ /* -* 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 Services -* -*/ - + * 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 Services + * + */ #include "VoIPAudioSession.h" #include "VoIPUplinkStreamImpl.h" #include "VoIPG711EncoderIntfcImpl.h" - // --------------------------------------------------------------------------- // CVoIPG711EncoderIntfcImpl::NewL // --------------------------------------------------------------------------- // CVoIPG711EncoderIntfcImpl* CVoIPG711EncoderIntfcImpl::NewL( - CVoIPAudioUplinkStreamImpl* aUpLinkStreamImpl) + CVoIPAudioUplinkStreamImpl* aUpLinkStreamImpl) { - CVoIPG711EncoderIntfcImpl* self = new (ELeave) CVoIPG711EncoderIntfcImpl(); + CVoIPG711EncoderIntfcImpl* self = + new (ELeave) CVoIPG711EncoderIntfcImpl(); CleanupStack::PushL(self); self->ConstructL(aUpLinkStreamImpl); CleanupStack::Pop(self); @@ -56,7 +55,7 @@ // --------------------------------------------------------------------------- // void CVoIPG711EncoderIntfcImpl::ConstructL( - CVoIPAudioUplinkStreamImpl* aUpLinkStreamImpl) + CVoIPAudioUplinkStreamImpl* aUpLinkStreamImpl) { iVoIPAudioSession = aUpLinkStreamImpl->GetSession(); CVoIPFormatIntfcImpl::ConstructL(iVoIPAudioSession); @@ -68,7 +67,7 @@ // --------------------------------------------------------------------------- // TInt CVoIPG711EncoderIntfcImpl::SetMode( - CVoIPFormatIntfc::TG711CodecMode aMode) + CVoIPFormatIntfc::TG711CodecMode aMode) { TInt err = iVoIPAudioSession->SetMode(aMode); return err; @@ -79,11 +78,10 @@ // --------------------------------------------------------------------------- // TInt CVoIPG711EncoderIntfcImpl::GetMode( - CVoIPFormatIntfc::TG711CodecMode& aMode) + CVoIPFormatIntfc::TG711CodecMode& aMode) { TInt err = iVoIPAudioSession->GetMode(aMode); return err; } - // End of file