multimediacommsengine/mmcesrv/mmcemediamanager/src/mcesrvsource.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Mon, 15 Mar 2010 12:42:08 +0200
branchRCL_3
changeset 8 f9c1f5f9ce0b
parent 0 1bce908db942
permissions -rw-r--r--
Revision: 201009 Kit: 201010

/*
* Copyright (c) 2005 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:    
*
*/




#include "mcesrvsource.h"
#include "mcesrvstream.h"
#include "mcecommediasource.h"
#include "mceevent.h"
#include "mcesrvstreamiterator.h"
#include "mcesdpsession.h"
#include "mcemediamanager.h"

#define _MEDIA_SOURCE static_cast<CMceComMediaSource*>( &Data() )

// ============================ MEMBER FUNCTIONS ===============================


    
// -----------------------------------------------------------------------------
// CMceSrvSource::CMceSrvSource
// -----------------------------------------------------------------------------
//
CMceSrvSource::CMceSrvSource( CMceMediaManager& aManager,
                              CMceComMediaSource& aData )
    : CMceSrvEndpoint( aManager, aData )
    {
    }       
    
// -----------------------------------------------------------------------------
// CMceSrvSource::~CMceSrvSource
// -----------------------------------------------------------------------------
//
CMceSrvSource::~CMceSrvSource()
    {
    //NOP
    }

// -----------------------------------------------------------------------------
// CMceSrvSource::Endpoint
// -----------------------------------------------------------------------------
//
CMceSrvEndpoint& CMceSrvSource::Endpoint( CMceSrvStream& aStream )
    {
    return aStream.Source();
    }
 
// -----------------------------------------------------------------------------
// CMceSrvSink::HandleSecureEventReceivedL
// -----------------------------------------------------------------------------
//
void CMceSrvSource::HandleSecureEventReceivedL( )
    {
	TMceSrvStreamIterator streams( Data().MediaStream()->Session()->MccStreams(), 
                                   Data() );
    CMceSrvStream* stream = NULL;
    while ( streams.Next( stream )  )
        {
        if ( stream->Codec().iIsEnabled &&
             Endpoint( *stream ).State() > CMceSrvStream::EPrepared &&
             Endpoint( *stream ).State() != CMceSrvStream::EPaused )
            {
            Data().MediaStream()->Session()->SdpSession().Manager().PauseL(  *(_MEDIA_SOURCE) );
            }
        }
    
    }
    
// End of file