diff -r 1a6714c53019 -r cce62ebc198e radioengine/utils/src/cradioroutableaudio.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/radioengine/utils/src/cradioroutableaudio.cpp Tue Aug 31 15:15:02 2010 +0300 @@ -0,0 +1,98 @@ +/* +* Copyright (c) 2009 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: +* +*/ + +// System includes +#include + +// User includes +#include "cradioroutableaudio.h" +#include "cradioaudiorouter.h" +#include "cradioenginelogger.h" + + +// --------------------------------------------------------------------------- +// +// --------------------------------------------------------------------------- +// +EXPORT_C CRadioRoutableAudio::CRadioRoutableAudio( CRadioAudioRouter* aAudioRouter ) + : iAudioRouter( aAudioRouter ) + { + LEVEL3( LOG_METHOD_AUTO ); + iAudioRouter->RegisterRoutableAudio( this ); + } + +// --------------------------------------------------------------------------- +// +// --------------------------------------------------------------------------- +// +EXPORT_C CRadioRoutableAudio::~CRadioRoutableAudio() + { + iAudioRouter->UnRegisterRoutableAudio( this ); + delete iAudioOutput; + delete iAudioRouter; + } + + +// --------------------------------------------------------------------------- +// +// --------------------------------------------------------------------------- +// +EXPORT_C void CRadioRoutableAudio::SetAudioOutput( CAudioOutput* aAudioOutput ) + { + LEVEL3( LOG_METHOD_AUTO ); + delete iAudioOutput; + iAudioOutput = aAudioOutput; + } + +// --------------------------------------------------------------------------- +// +// --------------------------------------------------------------------------- +// +EXPORT_C void CRadioRoutableAudio::DeleteAudioOutput() + { + LEVEL3( LOG_METHOD_AUTO ); + delete iAudioOutput; + iAudioOutput = NULL; + } + +// --------------------------------------------------------------------------- +// +// --------------------------------------------------------------------------- +// +EXPORT_C void CRadioRoutableAudio::SetAudioRouteL( RadioEngine::TRadioAudioRoute aRoute ) + { + LEVEL3( LOG_METHOD_AUTO ); + if ( iAudioOutput ) + { + iAudioOutput->SetAudioOutputL( aRoute == RadioEngine::ERadioSpeaker ? CAudioOutput::EPublic + : CAudioOutput::EPrivate ); + } + } + +// --------------------------------------------------------------------------- +// +// --------------------------------------------------------------------------- +// +EXPORT_C TBool CRadioRoutableAudio::AudioRoutingSupported() const + { + LEVEL3( LOG_METHOD_AUTO ); +#ifdef __WINS__ + return ETrue; +#else + return iAudioOutput ? ETrue : EFalse; +#endif + }