Index: webrtc/common_types.h |
diff --git a/webrtc/common_types.h b/webrtc/common_types.h |
index 9b730a13cbbea99b163a86681345339b62e56bac..d76e6d1ea541f4f9dc8d95838f60781836067a11 100644 |
--- a/webrtc/common_types.h |
+++ b/webrtc/common_types.h |
@@ -893,6 +893,11 @@ class StreamDataCountersCallback { |
virtual void DataCountersUpdated(const StreamDataCounters& counters, |
uint32_t ssrc) = 0; |
}; |
+ |
+// RTCP mode to use. Compound mode is described by RFC 4585 and reduced-size |
+// RTCP mode is described by RFC 5506. |
+enum RtcpMode { kRtcpOff, kRtcpCompound, kRtcpReducedSize }; |
the sun
2015/09/30 08:17:05
While messing with this, can we please also make i
pbos-webrtc
2015/09/30 09:50:04
Done.
|
+ |
} // namespace webrtc |
#endif // WEBRTC_COMMON_TYPES_H_ |