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

Side by Side Diff: webrtc/common_types.h

Issue 1323943007: VP9: Add automaticeResize to codec setting. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 years, 3 months 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
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 609 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698