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 506 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
517 // packet losses, but packets within a frame subsequent | 517 // packet losses, but packets within a frame subsequent |
518 // to a loss can't be decoded. | 518 // to a loss can't be decoded. |
519 kResilientFrames // Same as kResilientStream but with added resilience | 519 kResilientFrames // Same as kResilientStream but with added resilience |
520 // within a frame. | 520 // within a frame. |
521 }; | 521 }; |
522 | 522 |
523 class TemporalLayersFactory; | 523 class TemporalLayersFactory; |
524 // VP8 specific | 524 // VP8 specific |
525 struct VideoCodecVP8 { | 525 struct VideoCodecVP8 { |
526 bool pictureLossIndicationOn; | 526 bool pictureLossIndicationOn; |
527 bool feedbackModeOn; | |
brandtr
2017/03/17 08:26:13
Need to update in Chromium too:
https://cs.chromiu
nisse-webrtc
2017/03/17 08:54:48
My plan was to first delete all use of this variab
pbos-webrtc
2017/03/17 17:48:55
Thanks, removing in https://codereview.chromium.or
pbos-webrtc
2017/03/17 17:48:55
Ack, can do that separately though.
| |
528 VideoCodecComplexity complexity; | 527 VideoCodecComplexity complexity; |
529 VP8ResilienceMode resilience; | 528 VP8ResilienceMode resilience; |
530 unsigned char numberOfTemporalLayers; | 529 unsigned char numberOfTemporalLayers; |
531 bool denoisingOn; | 530 bool denoisingOn; |
532 bool errorConcealmentOn; | 531 bool errorConcealmentOn; |
533 bool automaticResizeOn; | 532 bool automaticResizeOn; |
534 bool frameDroppingOn; | 533 bool frameDroppingOn; |
535 int keyFrameInterval; | 534 int keyFrameInterval; |
536 TemporalLayersFactory* tl_factory; | 535 TemporalLayersFactory* tl_factory; |
537 }; | 536 }; |
(...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
898 enum class RtcpMode { kOff, kCompound, kReducedSize }; | 897 enum class RtcpMode { kOff, kCompound, kReducedSize }; |
899 | 898 |
900 enum NetworkState { | 899 enum NetworkState { |
901 kNetworkUp, | 900 kNetworkUp, |
902 kNetworkDown, | 901 kNetworkDown, |
903 }; | 902 }; |
904 | 903 |
905 } // namespace webrtc | 904 } // namespace webrtc |
906 | 905 |
907 #endif // WEBRTC_COMMON_TYPES_H_ | 906 #endif // WEBRTC_COMMON_TYPES_H_ |
OLD | NEW |