Exemplo n.º 1
0
 private void InitializePerformanceCounters()
 {
     lock (pcLock)
     {
         pc = new RtcpSenderPC(rtpSession.CName + " - " + rtpSession.RtcpEndPoint);
     }
 }
Exemplo n.º 2
0
 private void DisposePerformanceCounters()
 {
     lock (pcLock)
     {
         if (pc != null)
         {
             pc.Dispose();
             pc = null;
         }
     }
 }
Exemplo n.º 3
0
 private void DisposePerformanceCounters()
 {
     lock(pcLock)
     {
         if(pc != null)
         {
             pc.Dispose();
             pc = null;
         }
     }
 }
Exemplo n.º 4
0
 private void InitializePerformanceCounters()
 {
     lock(pcLock)
     {
         pc = new RtcpSenderPC(rtpSession.CName + " - " + rtpSession.RtcpEndPoint);
     }
 }