OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include <stddef.h> | 5 #include <stddef.h> |
6 | 6 |
7 #include "base/base64.h" | 7 #include "base/base64.h" |
8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
9 #include "base/environment.h" | 9 #include "base/environment.h" |
10 #include "base/files/file.h" | 10 #include "base/files/file.h" |
(...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
335 std::unique_ptr<base::Environment> environment_; | 335 std::unique_ptr<base::Environment> environment_; |
336 base::FilePath webrtc_reference_video_y4m_; | 336 base::FilePath webrtc_reference_video_y4m_; |
337 base::ScopedTempDir temp_working_dir_; | 337 base::ScopedTempDir temp_working_dir_; |
338 }; | 338 }; |
339 | 339 |
340 INSTANTIATE_TEST_CASE_P( | 340 INSTANTIATE_TEST_CASE_P( |
341 WebRtcVideoQualityBrowserTests, | 341 WebRtcVideoQualityBrowserTests, |
342 WebRtcVideoQualityBrowserTest, | 342 WebRtcVideoQualityBrowserTest, |
343 testing::ValuesIn(kVideoConfigurations)); | 343 testing::ValuesIn(kVideoConfigurations)); |
344 | 344 |
| 345 // Video quality tests are flaky on Windows. See http://crbug.com/webrtc/6484. |
| 346 #if defined(OS_WIN) |
| 347 #define MAYBE_TestVideoQualityVp8 DISABLED_TestVideoQualityVp8 |
| 348 #define MAYBE_TestVideoQualityVp9 DISABLED_TestVideoQualityVp9 |
| 349 #define MAYBE_TestVideoQualityH264 DISABLED_TestVideoQualityH264 |
| 350 #else |
| 351 #define MAYBE_TestVideoQualityVp8 MANUAL_TestVideoQualityVp8 |
| 352 #define MAYBE_TestVideoQualityVp9 MANUAL_TestVideoQualityVp9 |
| 353 #define MAYBE_TestVideoQualityH264 MANUAL_TestVideoQualityH264 |
| 354 #endif |
| 355 |
345 IN_PROC_BROWSER_TEST_P(WebRtcVideoQualityBrowserTest, | 356 IN_PROC_BROWSER_TEST_P(WebRtcVideoQualityBrowserTest, |
346 MANUAL_TestVideoQualityVp8) { | 357 MAYBE_TestVideoQualityVp8) { |
347 TestVideoQuality("VP8"); | 358 TestVideoQuality("VP8"); |
348 } | 359 } |
349 | 360 |
350 IN_PROC_BROWSER_TEST_P(WebRtcVideoQualityBrowserTest, | 361 IN_PROC_BROWSER_TEST_P(WebRtcVideoQualityBrowserTest, |
351 MANUAL_TestVideoQualityVp9) { | 362 MAYBE_TestVideoQualityVp9) { |
352 TestVideoQuality("VP9"); | 363 TestVideoQuality("VP9"); |
353 } | 364 } |
354 | 365 |
355 #if BUILDFLAG(RTC_USE_H264) | 366 #if BUILDFLAG(RTC_USE_H264) |
356 | 367 |
357 IN_PROC_BROWSER_TEST_P(WebRtcVideoQualityBrowserTest, | 368 IN_PROC_BROWSER_TEST_P(WebRtcVideoQualityBrowserTest, |
358 MANUAL_TestVideoQualityH264) { | 369 MAYBE_TestVideoQualityH264) { |
359 // Only run test if run-time feature corresponding to |rtc_use_h264| is on. | 370 // Only run test if run-time feature corresponding to |rtc_use_h264| is on. |
360 if (!base::FeatureList::IsEnabled(content::kWebRtcH264WithOpenH264FFmpeg)) { | 371 if (!base::FeatureList::IsEnabled(content::kWebRtcH264WithOpenH264FFmpeg)) { |
361 LOG(WARNING) << "Run-time feature WebRTC-H264WithOpenH264FFmpeg disabled. " | 372 LOG(WARNING) << "Run-time feature WebRTC-H264WithOpenH264FFmpeg disabled. " |
362 "Skipping WebRtcVideoQualityBrowserTest.MANUAL_TestVideoQualityH264 " | 373 "Skipping WebRtcVideoQualityBrowserTest.MANUAL_TestVideoQualityH264 " |
363 "(test \"OK\")"; | 374 "(test \"OK\")"; |
364 return; | 375 return; |
365 } | 376 } |
366 TestVideoQuality("H264"); | 377 TestVideoQuality("H264"); |
367 } | 378 } |
368 | 379 |
369 #endif // BUILDFLAG(RTC_USE_H264) | 380 #endif // BUILDFLAG(RTC_USE_H264) |
OLD | NEW |