Index: webrtc/modules/rtp_rtcp/source/rtp_receiver_audio.h |
diff --git a/webrtc/modules/rtp_rtcp/source/rtp_receiver_audio.h b/webrtc/modules/rtp_rtcp/source/rtp_receiver_audio.h |
index 1dd07d1cc923127f141046183b0ee5069e62c014..ab3bbad25867af93660e6beac3609562e3beb0f1 100644 |
--- a/webrtc/modules/rtp_rtcp/source/rtp_receiver_audio.h |
+++ b/webrtc/modules/rtp_rtcp/source/rtp_receiver_audio.h |
@@ -13,6 +13,7 @@ |
#include <set> |
+#include "webrtc/base/onetimeevent.h" |
#include "webrtc/base/scoped_ptr.h" |
#include "webrtc/modules/rtp_rtcp/include/rtp_receiver.h" |
#include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" |
@@ -121,6 +122,7 @@ class RTPReceiverAudio : public RTPReceiverStrategy, |
uint8_t current_remote_energy_[kRtpCsrcSize]; |
RtpAudioFeedback* cb_audio_feedback_; |
+ OneTimeEvent first_packet_received_; |
pthatcher1
2016/03/25 22:35:23
This one could be thread-unsafe, right?
skvlad
2016/03/26 02:00:08
Looks like it cannot be - from the looks of it, th
|
}; |
} // namespace webrtc |