/** Stops the RTCP Sender thread */ public synchronized void stopRTCPSenderThread() { m_RTCPHandler.stopRTCPSenderThread(); }
/** Stops the RTCP Sender thread */ public synchronized void stopRTCPReceiverThread() { m_RTCPHandler.stopRTCPReceiverThread(); }
/** * Starts the RTCP Sender thread * * @param localPort The local port to send RTCP data from * @param remotePort The remote port to sent RTCP data to */ public synchronized void createAndStartRTCPSenderThread(int localPort, int remotePort) { m_RTCPHandler.createAndStartRTCPSenderThread(localPort, remotePort); }
/** * Starts the RTCP Receiver thread. * * @param localPort The local port to use when sending RTCP data */ public synchronized void createAndStartRTCPReceiverThread(int localPort) { m_RTCPHandler.createAndStartRTCPReceiverThread(localPort); }