Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(40)

Unified Diff: webrtc/modules/audio_coding/neteq/rtcp.h

Issue 2460393002: NetEq jitter calculation now done in int64_t. (Closed)
Patch Set: Turned jitter to int64_t. Using std::abs over SPL. Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | webrtc/modules/audio_coding/neteq/rtcp.cc » ('j') | webrtc/modules/audio_coding/neteq/rtcp.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/audio_coding/neteq/rtcp.h
diff --git a/webrtc/modules/audio_coding/neteq/rtcp.h b/webrtc/modules/audio_coding/neteq/rtcp.h
index eacb32832856ec1dcf882dd392f7a36f3b73779f..d222cea7bc885fec73604844b68d3b670ce830f3 100644
--- a/webrtc/modules/audio_coding/neteq/rtcp.h
+++ b/webrtc/modules/audio_coding/neteq/rtcp.h
@@ -48,7 +48,7 @@ class Rtcp {
// report was generated.
uint32_t expected_prior_; // Expected number of packets, at the time of the
// last report.
- uint32_t jitter_; // Current jitter value.
+ int64_t jitter_; // Current jitter value in Q4.
int32_t transit_; // Clock difference for previous packet.
RTC_DISALLOW_COPY_AND_ASSIGN(Rtcp);
« no previous file with comments | « no previous file | webrtc/modules/audio_coding/neteq/rtcp.cc » ('j') | webrtc/modules/audio_coding/neteq/rtcp.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698