< Previous by Date Date Index Next by Date >
  Thread Index Next in Thread >

[reSIProcate-users] Media being initialised early in Recon


Hi, 

We have built the latest recon code and have noticed that Media gets initialised as soon as the 
ConversationManager constructor is called which calls the CpTopologyGraphFactoryImpl 
constructor within the SipX library. Here there are calls to enable the MpInputDeviceManager
and the MpOutputDeviceManager. I would have thought this should only be done when making
an outbound call or receiving a call.  

ie   ConversationHandle convHandle = createConversation();
    addParticipant(convHandle, createLocalParticipant());
    ParticipantHandle part = createRemoteParticipant(callId,convHandle,destination,ForkSelectAutomatic );

Is there a way of ensuring media is only enabled when making or receiving calls and not on just initialising the 
Conversation Manager.

Thanks