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/video/full_stack.cc

Issue 1438543002: Revert of Work on flexible mode and screen sharing. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 years, 1 month 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) 2013 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2013 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 #include <stdio.h> 10 #include <stdio.h>
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 138
139 TEST_F(FullStackTest, ScreenshareSlidesVP8_2TL_Scroll) { 139 TEST_F(FullStackTest, ScreenshareSlidesVP8_2TL_Scroll) {
140 VideoQualityTest::Params config = { 140 VideoQualityTest::Params config = {
141 {1850, 1110 / 2, 5, 50000, 200000, 2000000, "VP8", 2, 1, 400000}, 141 {1850, 1110 / 2, 5, 50000, 200000, 2000000, "VP8", 2, 1, 400000},
142 {}, 142 {},
143 {true, 10, 2}, 143 {true, 10, 2},
144 {"screenshare_slides_scrolling", 0.0, 0.0, kFullStackTestDurationSecs}}; 144 {"screenshare_slides_scrolling", 0.0, 0.0, kFullStackTestDurationSecs}};
145 RunTest(config); 145 RunTest(config);
146 } 146 }
147 147
148 TEST_F(FullStackTest, ScreenshareSlidesVP9_2SL) { 148 TEST_F(FullStackTest, ScreenshareSlidesVP9_2TL) {
149 VideoQualityTest::Params screenshare = { 149 VideoQualityTest::Params screenshare = {
150 {1850, 1110, 5, 50000, 200000, 2000000, "VP9", 1, 0, 400000}, 150 {1850, 1110, 5, 50000, 200000, 2000000, "VP9", 2, 1, 400000},
151 {}, 151 {},
152 {true, 10}, 152 {true, 10},
153 {"screenshare_slides_vp9_2tl", 0.0, 0.0, kFullStackTestDurationSecs}, 153 {"screenshare_slides_vp9_2tl", 0.0, 0.0, kFullStackTestDurationSecs}};
154 {},
155 false,
156 {std::vector<VideoStream>(), 0, 2, 1}};
157 RunTest(screenshare); 154 RunTest(screenshare);
158 } 155 }
159 } // namespace webrtc 156 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/modules/video_coding/main/source/jitter_buffer.cc ('k') | webrtc/video/video_send_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698