Пример #1
0
 /** Stops the RTCP Sender thread */
 public synchronized void stopRTCPSenderThread() {
   m_RTCPHandler.stopRTCPSenderThread();
 }
Пример #2
0
 /** Stops the RTCP Sender thread */
 public synchronized void stopRTCPReceiverThread() {
   m_RTCPHandler.stopRTCPReceiverThread();
 }
Пример #3
0
 /**
  * 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);
 }
Пример #4
0
 /**
  * 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);
 }