diff -r 4ce423f34688 -r e267340986c9 mmserv/voipaudioservices/VoIPIntfc/src/VoIPJitterBufferIntfcImpl.cpp --- a/mmserv/voipaudioservices/VoIPIntfc/src/VoIPJitterBufferIntfcImpl.cpp Fri Sep 17 08:33:15 2010 +0300 +++ b/mmserv/voipaudioservices/VoIPIntfc/src/VoIPJitterBufferIntfcImpl.cpp Mon Oct 04 00:51:56 2010 +0300 @@ -1,35 +1,33 @@ /* -* Copyright (c) 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) 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 #include "VoIPAudioSession.h" #include "VoIPJitterBufferIntfcImpl.h" - // --------------------------------------------------------------------------- // CVoIPJitterBufferIntfcImpl::NewL // --------------------------------------------------------------------------- // CVoIPJitterBufferIntfcImpl* CVoIPJitterBufferIntfcImpl::NewL( - RVoIPAudioSession* aVoIPAudioSession) + RVoIPAudioSession* aVoIPAudioSession) { CVoIPJitterBufferIntfcImpl* self = - new (ELeave) CVoIPJitterBufferIntfcImpl(); + new (ELeave) CVoIPJitterBufferIntfcImpl(); CleanupStack::PushL(self); self->ConstructL(aVoIPAudioSession); CleanupStack::Pop(self); @@ -57,7 +55,7 @@ // --------------------------------------------------------------------------- // void CVoIPJitterBufferIntfcImpl::ConstructL( - RVoIPAudioSession* aVoIPAudioSession) + RVoIPAudioSession* aVoIPAudioSession) { CVoIPJitterBufferIntfc::ConstructL(this); iVoIPAudioSession = aVoIPAudioSession; @@ -68,7 +66,7 @@ // --------------------------------------------------------------------------- // TInt CVoIPJitterBufferIntfcImpl::SetObserver( - MVoIPJitterBufferObserver& aObserver) + MVoIPJitterBufferObserver& aObserver) { iObserver = &aObserver; return KErrNone; @@ -79,7 +77,7 @@ // --------------------------------------------------------------------------- // TInt CVoIPJitterBufferIntfcImpl::ConfigureJitterBuffer( - const TVoIPJBConfig& aJbConfig) + const TVoIPJBConfig& aJbConfig) { TInt err = iVoIPAudioSession->ConfigureJitterBuffer(aJbConfig); return err; @@ -115,6 +113,7 @@ return err; } +#ifdef __FEATURE_NOT_SUPPORTED__ // --------------------------------------------------------------------------- // CVoIPJitterBufferIntfcImpl::SendEventToObserver // --------------------------------------------------------------------------- @@ -123,5 +122,7 @@ { iObserver->Event(*this, aEvent); } +#endif //__FEATURE_NOT_SUPPORTED__ + // End of file