We don't need jitter stats logging in production anyway

// FREEBIE
This commit is contained in:
Moxie Marlinspike
2015-11-05 12:52:31 -08:00
parent 8d4f3803df
commit 5b08be8d01
6 changed files with 8 additions and 5 deletions

View File

@@ -29,7 +29,7 @@ int WebRtcJitterBuffer::init() {
return -1;
}
pthread_create(&stats, NULL, &WebRtcJitterBuffer::collectStats, this);
// pthread_create(&stats, NULL, &WebRtcJitterBuffer::collectStats, this);
return 0;
}
@@ -67,12 +67,12 @@ int WebRtcJitterBuffer::getAudio(short *rawData, int maxRawData) {
}
void WebRtcJitterBuffer::stop() {
pthread_mutex_lock(&lock);
// pthread_mutex_lock(&lock);
running = 0;
pthread_cond_signal(&condition);
pthread_mutex_unlock(&lock);
// pthread_cond_signal(&condition);
// pthread_mutex_unlock(&lock);
pthread_join(stats, NULL);
// pthread_join(stats, NULL);
}
void WebRtcJitterBuffer::collectStats() {