| 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 519 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 530 bool errorConcealmentOn; | 530 bool errorConcealmentOn; |
| 531 bool automaticResizeOn; | 531 bool automaticResizeOn; |
| 532 bool frameDroppingOn; | 532 bool frameDroppingOn; |
| 533 int keyFrameInterval; | 533 int keyFrameInterval; |
| 534 TemporalLayersFactory* tl_factory; | 534 TemporalLayersFactory* tl_factory; |
| 535 }; | 535 }; |
| 536 | 536 |
| 537 // VP9 specific. | 537 // VP9 specific. |
| 538 struct VideoCodecVP9 { | 538 struct VideoCodecVP9 { |
| 539 VideoCodecComplexity complexity; | 539 VideoCodecComplexity complexity; |
| 540 int resilience; | 540 bool resilienceOn; |
| 541 unsigned char numberOfTemporalLayers; | 541 unsigned char numberOfTemporalLayers; |
| 542 bool denoisingOn; | 542 bool denoisingOn; |
| 543 bool frameDroppingOn; | 543 bool frameDroppingOn; |
| 544 int keyFrameInterval; | 544 int keyFrameInterval; |
| 545 bool adaptiveQpMode; | 545 bool adaptiveQpMode; |
| 546 bool automaticResizeOn; | 546 bool automaticResizeOn; |
| 547 unsigned char numberOfSpatialLayers; | 547 unsigned char numberOfSpatialLayers; |
| 548 bool flexibleMode; | 548 bool flexibleMode; |
| 549 }; | 549 }; |
| 550 | 550 |
| (...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 893 enum class RtcpMode { kOff, kCompound, kReducedSize }; | 893 enum class RtcpMode { kOff, kCompound, kReducedSize }; |
| 894 | 894 |
| 895 enum NetworkState { | 895 enum NetworkState { |
| 896 kNetworkUp, | 896 kNetworkUp, |
| 897 kNetworkDown, | 897 kNetworkDown, |
| 898 }; | 898 }; |
| 899 | 899 |
| 900 } // namespace webrtc | 900 } // namespace webrtc |
| 901 | 901 |
| 902 #endif // WEBRTC_COMMON_TYPES_H_ | 902 #endif // WEBRTC_COMMON_TYPES_H_ |
| OLD | NEW |