@@ -173,7 +173,8 @@ PVOID mediaSenderRoutine(PVOID customData)
173
173
}
174
174
175
175
CleanUp :
176
-
176
+ // clean the flag of the media thread.
177
+ ATOMIC_STORE_BOOL (& pSampleConfiguration -> mediaThreadStarted , FALSE);
177
178
CHK_LOG_ERR (retStatus );
178
179
return NULL ;
179
180
}
@@ -877,32 +878,32 @@ STATUS getIceCandidatePairStatsCallback(UINT32 timerId, UINT64 currentTime, UINT
877
878
pSampleConfiguration -> rtcIceCandidatePairMetrics .rtcStatsObject .iceCandidatePairStats .nominated ? "nominated"
878
879
: "not nominated" );
879
880
averageNumberOfPacketsSentPerSecond =
880
- (DOUBLE ) (pSampleConfiguration -> rtcIceCandidatePairMetrics .rtcStatsObject .iceCandidatePairStats .packetsSent -
881
- pSampleConfiguration -> sampleStreamingSessionList [i ]-> rtcMetricsHistory .prevNumberOfPacketsSent ) /
881
+ (DOUBLE )(pSampleConfiguration -> rtcIceCandidatePairMetrics .rtcStatsObject .iceCandidatePairStats .packetsSent -
882
+ pSampleConfiguration -> sampleStreamingSessionList [i ]-> rtcMetricsHistory .prevNumberOfPacketsSent ) /
882
883
(DOUBLE ) currentMeasureDuration ;
883
884
DLOGD ("Packet send rate: %lf pkts/sec" , averageNumberOfPacketsSentPerSecond );
884
885
885
886
averageNumberOfPacketsReceivedPerSecond =
886
- (DOUBLE ) (pSampleConfiguration -> rtcIceCandidatePairMetrics .rtcStatsObject .iceCandidatePairStats .packetsReceived -
887
- pSampleConfiguration -> sampleStreamingSessionList [i ]-> rtcMetricsHistory .prevNumberOfPacketsReceived ) /
887
+ (DOUBLE )(pSampleConfiguration -> rtcIceCandidatePairMetrics .rtcStatsObject .iceCandidatePairStats .packetsReceived -
888
+ pSampleConfiguration -> sampleStreamingSessionList [i ]-> rtcMetricsHistory .prevNumberOfPacketsReceived ) /
888
889
(DOUBLE ) currentMeasureDuration ;
889
890
DLOGD ("Packet receive rate: %lf pkts/sec" , averageNumberOfPacketsReceivedPerSecond );
890
891
891
- outgoingBitrate = (DOUBLE ) ((pSampleConfiguration -> rtcIceCandidatePairMetrics .rtcStatsObject .iceCandidatePairStats .bytesSent -
892
- pSampleConfiguration -> sampleStreamingSessionList [i ]-> rtcMetricsHistory .prevNumberOfBytesSent ) *
893
- 8.0 ) /
892
+ outgoingBitrate = (DOUBLE )((pSampleConfiguration -> rtcIceCandidatePairMetrics .rtcStatsObject .iceCandidatePairStats .bytesSent -
893
+ pSampleConfiguration -> sampleStreamingSessionList [i ]-> rtcMetricsHistory .prevNumberOfBytesSent ) *
894
+ 8.0 ) /
894
895
currentMeasureDuration ;
895
896
DLOGD ("Outgoing bit rate: %lf bps" , outgoingBitrate );
896
897
897
- incomingBitrate = (DOUBLE ) ((pSampleConfiguration -> rtcIceCandidatePairMetrics .rtcStatsObject .iceCandidatePairStats .bytesReceived -
898
- pSampleConfiguration -> sampleStreamingSessionList [i ]-> rtcMetricsHistory .prevNumberOfBytesReceived ) *
899
- 8.0 ) /
898
+ incomingBitrate = (DOUBLE )((pSampleConfiguration -> rtcIceCandidatePairMetrics .rtcStatsObject .iceCandidatePairStats .bytesReceived -
899
+ pSampleConfiguration -> sampleStreamingSessionList [i ]-> rtcMetricsHistory .prevNumberOfBytesReceived ) *
900
+ 8.0 ) /
900
901
currentMeasureDuration ;
901
902
DLOGD ("Incoming bit rate: %lf bps" , incomingBitrate );
902
903
903
904
averagePacketsDiscardedOnSend =
904
- (DOUBLE ) (pSampleConfiguration -> rtcIceCandidatePairMetrics .rtcStatsObject .iceCandidatePairStats .packetsDiscardedOnSend -
905
- pSampleConfiguration -> sampleStreamingSessionList [i ]-> rtcMetricsHistory .prevPacketsDiscardedOnSend ) /
905
+ (DOUBLE )(pSampleConfiguration -> rtcIceCandidatePairMetrics .rtcStatsObject .iceCandidatePairStats .packetsDiscardedOnSend -
906
+ pSampleConfiguration -> sampleStreamingSessionList [i ]-> rtcMetricsHistory .prevPacketsDiscardedOnSend ) /
906
907
(DOUBLE ) currentMeasureDuration ;
907
908
DLOGD ("Packet discard rate: %lf pkts/sec" , averagePacketsDiscardedOnSend );
908
909
0 commit comments