| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 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 |
| (...skipping 619 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 630 unsigned char plType; | 630 unsigned char plType; |
| 631 | 631 |
| 632 unsigned short width; | 632 unsigned short width; |
| 633 unsigned short height; | 633 unsigned short height; |
| 634 | 634 |
| 635 unsigned int startBitrate; // kilobits/sec. | 635 unsigned int startBitrate; // kilobits/sec. |
| 636 unsigned int maxBitrate; // kilobits/sec. | 636 unsigned int maxBitrate; // kilobits/sec. |
| 637 unsigned int minBitrate; // kilobits/sec. | 637 unsigned int minBitrate; // kilobits/sec. |
| 638 unsigned int targetBitrate; // kilobits/sec. | 638 unsigned int targetBitrate; // kilobits/sec. |
| 639 | 639 |
| 640 unsigned char maxFramerate; | 640 uint32_t maxFramerate; |
| 641 | 641 |
| 642 unsigned int qpMax; | 642 unsigned int qpMax; |
| 643 unsigned char numberOfSimulcastStreams; | 643 unsigned char numberOfSimulcastStreams; |
| 644 SimulcastStream simulcastStream[kMaxSimulcastStreams]; | 644 SimulcastStream simulcastStream[kMaxSimulcastStreams]; |
| 645 SpatialLayer spatialLayers[kMaxSpatialLayers]; | 645 SpatialLayer spatialLayers[kMaxSpatialLayers]; |
| 646 | 646 |
| 647 VideoCodecMode mode; | 647 VideoCodecMode mode; |
| 648 bool expect_encode_from_texture; | 648 bool expect_encode_from_texture; |
| 649 | 649 |
| 650 bool operator==(const VideoCodec& other) const = delete; | 650 bool operator==(const VideoCodec& other) const = delete; |
| (...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 898 enum class RtcpMode { kOff, kCompound, kReducedSize }; | 898 enum class RtcpMode { kOff, kCompound, kReducedSize }; |
| 899 | 899 |
| 900 enum NetworkState { | 900 enum NetworkState { |
| 901 kNetworkUp, | 901 kNetworkUp, |
| 902 kNetworkDown, | 902 kNetworkDown, |
| 903 }; | 903 }; |
| 904 | 904 |
| 905 } // namespace webrtc | 905 } // namespace webrtc |
| 906 | 906 |
| 907 #endif // WEBRTC_COMMON_TYPES_H_ | 907 #endif // WEBRTC_COMMON_TYPES_H_ |
| OLD | NEW |