diff -r a493a607b5bf -r eabc8c503852 mmserv/voipaudioservices/VoIPIntfc/src/VoIPBaseCodecIntfcImpl.cpp --- a/mmserv/voipaudioservices/VoIPIntfc/src/VoIPBaseCodecIntfcImpl.cpp Fri Sep 03 19:34:12 2010 -0500 +++ b/mmserv/voipaudioservices/VoIPIntfc/src/VoIPBaseCodecIntfcImpl.cpp Tue Sep 21 11:38:43 2010 -0500 @@ -1,33 +1,31 @@ /* -* 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 "VoIPDownlinkStreamImpl.h" #include "VoIPUplinkStreamImpl.h" #include "VoIPBaseCodecIntfcImpl.h" - // --------------------------------------------------------------------------- // CVoIPBaseCodecIntfcImpl::NewL // --------------------------------------------------------------------------- // CVoIPBaseCodecIntfcImpl* CVoIPBaseCodecIntfcImpl::NewL( - CVoIPAudioDownlinkStreamImpl* aDnLinkStreamImpl) + CVoIPAudioDownlinkStreamImpl* aDnLinkStreamImpl) { CVoIPBaseCodecIntfcImpl* self = new (ELeave) CVoIPBaseCodecIntfcImpl(); CleanupStack::PushL(self); @@ -41,7 +39,7 @@ // --------------------------------------------------------------------------- // CVoIPBaseCodecIntfcImpl* CVoIPBaseCodecIntfcImpl::NewL( - CVoIPAudioUplinkStreamImpl* aUpLinkStreamImpl) + CVoIPAudioUplinkStreamImpl* aUpLinkStreamImpl) { CVoIPBaseCodecIntfcImpl* self = new (ELeave) CVoIPBaseCodecIntfcImpl(); CleanupStack::PushL(self); @@ -71,7 +69,7 @@ // --------------------------------------------------------------------------- // void CVoIPBaseCodecIntfcImpl::ConstructL( - CVoIPAudioDownlinkStreamImpl* aDnLinkStreamImpl) + CVoIPAudioDownlinkStreamImpl* aDnLinkStreamImpl) { iVoIPAudioSession = aDnLinkStreamImpl->GetSession(); CVoIPFormatIntfcImpl::ConstructL(iVoIPAudioSession); @@ -83,12 +81,11 @@ // --------------------------------------------------------------------------- // void CVoIPBaseCodecIntfcImpl::ConstructL( - CVoIPAudioUplinkStreamImpl* aUpLinkStreamImpl) + CVoIPAudioUplinkStreamImpl* aUpLinkStreamImpl) { iVoIPAudioSession = aUpLinkStreamImpl->GetSession(); CVoIPFormatIntfcImpl::ConstructL(iVoIPAudioSession); CVoIPFormatIntfc::ConstructL(this); } - // End of file