Index: webrtc/api/rtpparameters.h |
diff --git a/webrtc/api/rtpparameters.h b/webrtc/api/rtpparameters.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..3bb4fda426f9d40aca3e0e336116c476e682a02d |
--- /dev/null |
+++ b/webrtc/api/rtpparameters.h |
@@ -0,0 +1,38 @@ |
+/* |
+ * Copyright 2015 The WebRTC project authors. All Rights Reserved. |
+ * |
+ * Use of this source code is governed by a BSD-style license |
+ * that can be found in the LICENSE file in the root of the source |
+ * tree. An additional intellectual property rights grant can be found |
+ * in the file PATENTS. All contributing project authors may |
+ * be found in the AUTHORS file in the root of the source tree. |
+ */ |
+ |
+// This file contains definitions of structures part of the RtpSender interface |
+// http://w3c.github.io/webrtc-pc/#rtcrtpsender-interface |
+ |
+#ifndef WEBRTC_API_RTPPARAMETERS_H_ |
+#define WEBRTC_API_RTPPARAMETERS_H_ |
+ |
+#include <vector> |
+ |
+namespace webrtc { |
pthatcher1
2016/03/12 01:21:03
FYI, you'll need to make sure you don't break the
|
+ |
+struct RTCRtpEncodingParameters { |
pthatcher1
2016/03/12 01:21:03
Can we please remove the RTC prefix and just call
skvlad
2016/03/15 21:18:17
Done.
|
+ int max_bitrate_bps; |
+ RTCRtpEncodingParameters() : max_bitrate_bps(-1) {} |
pthatcher1
2016/03/12 01:21:03
You can just do this and not have to define the co
skvlad
2016/03/15 21:18:17
Done.
|
+}; |
+ |
+struct RTCRtpParameters { |
pthatcher1
2016/03/12 01:21:03
Can you give a comment pointing the standards doc
Taylor Brandstetter
2016/03/12 01:57:06
It's at the top of the file.
pthatcher1
2016/03/14 16:26:50
Ah, could you (Vlad) move it closer to the classes
skvlad
2016/03/15 21:18:17
Done.
|
+ std::vector<RTCRtpEncodingParameters> encodings; |
+ |
+ static RTCRtpParameters CreateDefault() { |
pthatcher1
2016/03/12 01:21:03
Do we really need this in the API?
skvlad
2016/03/15 21:18:17
Removed.
|
+ RTCRtpParameters parameters; |
+ parameters.encodings.push_back(RTCRtpEncodingParameters()); |
+ return parameters; |
+ } |
+}; |
+ |
+} // namespace webrtc |
+ |
+#endif // WEBRTC_API_RTPPARAMETERS_H_ |