| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2015 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 2015 The WebRTC project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| 11 #ifndef WEBRTC_API_RTPPARAMETERS_H_ | 11 #ifndef WEBRTC_API_RTPPARAMETERS_H_ |
| 12 #define WEBRTC_API_RTPPARAMETERS_H_ | 12 #define WEBRTC_API_RTPPARAMETERS_H_ |
| 13 | 13 |
| 14 #include <string> | 14 #include <string> |
| 15 #include <unordered_map> | 15 #include <unordered_map> |
| 16 #include <vector> | 16 #include <vector> |
| 17 | 17 |
| 18 #include "webrtc/api/mediatypes.h" | 18 #include "webrtc/api/mediatypes.h" |
| 19 #include "webrtc/rtc_base/optional.h" | 19 #include "webrtc/api/optional.h" |
| 20 | 20 |
| 21 namespace webrtc { | 21 namespace webrtc { |
| 22 | 22 |
| 23 // These structures are intended to mirror those defined by: | 23 // These structures are intended to mirror those defined by: |
| 24 // http://draft.ortc.org/#rtcrtpdictionaries* | 24 // http://draft.ortc.org/#rtcrtpdictionaries* |
| 25 // Contains everything specified as of 2017 Jan 24. | 25 // Contains everything specified as of 2017 Jan 24. |
| 26 // | 26 // |
| 27 // They are used when retrieving or modifying the parameters of an | 27 // They are used when retrieving or modifying the parameters of an |
| 28 // RtpSender/RtpReceiver, or retrieving capabilities. | 28 // RtpSender/RtpReceiver, or retrieving capabilities. |
| 29 // | 29 // |
| (...skipping 511 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 541 header_extensions == o.header_extensions && | 541 header_extensions == o.header_extensions && |
| 542 encodings == o.encodings && | 542 encodings == o.encodings && |
| 543 degradation_preference == o.degradation_preference; | 543 degradation_preference == o.degradation_preference; |
| 544 } | 544 } |
| 545 bool operator!=(const RtpParameters& o) const { return !(*this == o); } | 545 bool operator!=(const RtpParameters& o) const { return !(*this == o); } |
| 546 }; | 546 }; |
| 547 | 547 |
| 548 } // namespace webrtc | 548 } // namespace webrtc |
| 549 | 549 |
| 550 #endif // WEBRTC_API_RTPPARAMETERS_H_ | 550 #endif // WEBRTC_API_RTPPARAMETERS_H_ |
| OLD | NEW |