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 609 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
620 | 620 |
621 // VP9 specific. | 621 // VP9 specific. |
622 struct VideoCodecVP9 { | 622 struct VideoCodecVP9 { |
623 VideoCodecComplexity complexity; | 623 VideoCodecComplexity complexity; |
624 int resilience; | 624 int resilience; |
625 unsigned char numberOfTemporalLayers; | 625 unsigned char numberOfTemporalLayers; |
626 bool denoisingOn; | 626 bool denoisingOn; |
627 bool frameDroppingOn; | 627 bool frameDroppingOn; |
628 int keyFrameInterval; | 628 int keyFrameInterval; |
629 bool adaptiveQpMode; | 629 bool adaptiveQpMode; |
| 630 bool automaticResizeOn; |
630 unsigned char numberOfSpatialLayers; | 631 unsigned char numberOfSpatialLayers; |
631 bool flexibleMode; | 632 bool flexibleMode; |
632 }; | 633 }; |
633 | 634 |
634 // H264 specific. | 635 // H264 specific. |
635 struct VideoCodecH264 { | 636 struct VideoCodecH264 { |
636 VideoCodecProfile profile; | 637 VideoCodecProfile profile; |
637 bool frameDroppingOn; | 638 bool frameDroppingOn; |
638 int keyFrameInterval; | 639 int keyFrameInterval; |
639 // These are NULL/0 if not externally negotiated. | 640 // These are NULL/0 if not externally negotiated. |
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
900 class StreamDataCountersCallback { | 901 class StreamDataCountersCallback { |
901 public: | 902 public: |
902 virtual ~StreamDataCountersCallback() {} | 903 virtual ~StreamDataCountersCallback() {} |
903 | 904 |
904 virtual void DataCountersUpdated(const StreamDataCounters& counters, | 905 virtual void DataCountersUpdated(const StreamDataCounters& counters, |
905 uint32_t ssrc) = 0; | 906 uint32_t ssrc) = 0; |
906 }; | 907 }; |
907 } // namespace webrtc | 908 } // namespace webrtc |
908 | 909 |
909 #endif // WEBRTC_COMMON_TYPES_H_ | 910 #endif // WEBRTC_COMMON_TYPES_H_ |
OLD | NEW |