Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: webrtc/common_types.h

Issue 2532053002: Turn off error resilience for VP9 if no spatial or temporal layers are configured and NACK is enabl… (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | webrtc/modules/video_coding/codec_database.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/video_coding/codec_database.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698