--- a/mmserv/voipaudioservices/VoIPIntfc/src/VoIPDtmfTonePlayerImpl.cpp Fri Sep 03 19:34:12 2010 -0500
+++ b/mmserv/voipaudioservices/VoIPIntfc/src/VoIPDtmfTonePlayerImpl.cpp Tue Sep 21 11:38:43 2010 -0500
@@ -1,20 +1,19 @@
/*
-* 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 <e32base.h>
#include <voipuplinkstream.h>
@@ -22,7 +21,6 @@
#include "VoIPAudioSession.h"
#include "VoIPDtmfTonePlayerImpl.h"
-
// ---------------------------------------------------------------------------
// CDTMFTonePlayerImpl::NewL
// ---------------------------------------------------------------------------
@@ -141,8 +139,7 @@
// ---------------------------------------------------------------------------
//
TInt CDTMFTonePlayerImpl::AddVoIPAudioUplinkStream(
- CVoIPAudioUplinkStream& /*aStream*/,
- RVoIPAudioSession* aSession)
+ CVoIPAudioUplinkStream& /*aStream*/, RVoIPAudioSession* aSession)
{
TInt err = KErrNone;
iVoIPAudioSession = aSession;
@@ -164,7 +161,7 @@
// ---------------------------------------------------------------------------
//
TInt CDTMFTonePlayerImpl::RemoveVoIPAudioUplinkStream(
- CVoIPAudioUplinkStream& /*aStream*/)
+ CVoIPAudioUplinkStream& /*aStream*/)
{
iVoIPAudioSession = NULL;
return KErrNone;
@@ -175,8 +172,7 @@
// ---------------------------------------------------------------------------
//
TInt CDTMFTonePlayerImpl::AddVoIPAudioDownlinkStream(
- CVoIPAudioDownlinkStream& /*aStream*/,
- RVoIPAudioSession* aSession)
+ CVoIPAudioDownlinkStream& /*aStream*/, RVoIPAudioSession* aSession)
{
TInt err = KErrNone;
iVoIPAudioSession = aSession;
@@ -198,7 +194,7 @@
// ---------------------------------------------------------------------------
//
TInt CDTMFTonePlayerImpl::RemoveVoIPAudioDownlinkStream(
- CVoIPAudioDownlinkStream& /*aStream*/)
+ CVoIPAudioDownlinkStream& /*aStream*/)
{
iVoIPAudioSession = NULL;
return KErrNone;
@@ -218,12 +214,12 @@
if (iStreamType == EDownlink)
{
err = iMsgComQueue.CreateGlobal(KDTMFToneComQueueDNL,
- KVoIPMsgComQSlots);
+ KVoIPMsgComQSlots);
}
else
{
err = iMsgComQueue.CreateGlobal(KDTMFToneComQueueUPL,
- KVoIPMsgComQSlots);
+ KVoIPMsgComQSlots);
}
User::LeaveIfError(err);
@@ -251,7 +247,6 @@
iMsgQComHandler->Start();
}
-
// ======== CALLBACK FUNCTIONS ========
@@ -266,5 +261,4 @@
iObserver->Event(*this, aEventType, aError);
}
-
// End of file