radioengine/utils/src/cradioroutableaudio.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Fri, 11 Jun 2010 13:38:32 +0300
changeset 28 075425b8d9a4
parent 24 6df133bd92e1
child 37 451b2e1545b2
child 57 21be958eb3ce
permissions -rw-r--r--
Revision: 201021 Kit: 2010123

/*
* 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 <AudioOutput.h>

// 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
    }