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

Unified Diff: webrtc/config.h

Issue 1479023002: Prepare the AudioSendStream to be hooked up to send-side BWE. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Remove anonymous namespace due to compile warning. Created 5 years 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
Index: webrtc/config.h
diff --git a/webrtc/config.h b/webrtc/config.h
index 114303e6169a55510adfa1d1884a260aef99f092..45a2ece416b113b66a8fecea84ef0e31ae9a1193 100644
--- a/webrtc/config.h
+++ b/webrtc/config.h
@@ -138,6 +138,12 @@ struct NetEqFastAccelerate {
bool enabled;
};
+struct VoicePacing {
+ VoicePacing() : enabled(false) {}
+ explicit VoicePacing(bool value) : enabled(value) {}
+ bool enabled;
+};
+
} // namespace webrtc
#endif // WEBRTC_CONFIG_H_

Powered by Google App Engine
This is Rietveld 408576698