Skip to content

Commit 07deb17

Browse files
authored
fix the bug of media thread. (#1215)
1 parent d0e1733 commit 07deb17

File tree

1 file changed

+14
-13
lines changed

1 file changed

+14
-13
lines changed

samples/Common.c

+14-13
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,8 @@ PVOID mediaSenderRoutine(PVOID customData)
173173
}
174174

175175
CleanUp:
176-
176+
// clean the flag of the media thread.
177+
ATOMIC_STORE_BOOL(&pSampleConfiguration->mediaThreadStarted, FALSE);
177178
CHK_LOG_ERR(retStatus);
178179
return NULL;
179180
}
@@ -877,32 +878,32 @@ STATUS getIceCandidatePairStatsCallback(UINT32 timerId, UINT64 currentTime, UINT
877878
pSampleConfiguration->rtcIceCandidatePairMetrics.rtcStatsObject.iceCandidatePairStats.nominated ? "nominated"
878879
: "not nominated");
879880
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) /
882883
(DOUBLE) currentMeasureDuration;
883884
DLOGD("Packet send rate: %lf pkts/sec", averageNumberOfPacketsSentPerSecond);
884885

885886
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) /
888889
(DOUBLE) currentMeasureDuration;
889890
DLOGD("Packet receive rate: %lf pkts/sec", averageNumberOfPacketsReceivedPerSecond);
890891

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) /
894895
currentMeasureDuration;
895896
DLOGD("Outgoing bit rate: %lf bps", outgoingBitrate);
896897

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) /
900901
currentMeasureDuration;
901902
DLOGD("Incoming bit rate: %lf bps", incomingBitrate);
902903

903904
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) /
906907
(DOUBLE) currentMeasureDuration;
907908
DLOGD("Packet discard rate: %lf pkts/sec", averagePacketsDiscardedOnSend);
908909

0 commit comments

Comments
 (0)