| 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/base/optional.h" |
| 19 #include "webrtc/config.h" | 20 #include "webrtc/config.h" |
| 20 #include "webrtc/base/optional.h" | |
| 21 | 21 |
| 22 namespace webrtc { | 22 namespace webrtc { |
| 23 | 23 |
| 24 // These structures are intended to mirror those defined by: | 24 // These structures are intended to mirror those defined by: |
| 25 // http://draft.ortc.org/#rtcrtpdictionaries* | 25 // http://draft.ortc.org/#rtcrtpdictionaries* |
| 26 // Contains everything specified as of 2017 Jan 24. | 26 // Contains everything specified as of 2017 Jan 24. |
| 27 // | 27 // |
| 28 // They are used when retrieving or modifying the parameters of an | 28 // They are used when retrieving or modifying the parameters of an |
| 29 // RtpSender/RtpReceiver, or retrieving capabilities. | 29 // RtpSender/RtpReceiver, or retrieving capabilities. |
| 30 // | 30 // |
| (...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 449 header_extensions == o.header_extensions && | 449 header_extensions == o.header_extensions && |
| 450 encodings == o.encodings && | 450 encodings == o.encodings && |
| 451 degradation_preference == o.degradation_preference; | 451 degradation_preference == o.degradation_preference; |
| 452 } | 452 } |
| 453 bool operator!=(const RtpParameters& o) const { return !(*this == o); } | 453 bool operator!=(const RtpParameters& o) const { return !(*this == o); } |
| 454 }; | 454 }; |
| 455 | 455 |
| 456 } // namespace webrtc | 456 } // namespace webrtc |
| 457 | 457 |
| 458 #endif // WEBRTC_API_RTPPARAMETERS_H_ | 458 #endif // WEBRTC_API_RTPPARAMETERS_H_ |
| OLD | NEW |