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

Side by Side Diff: webrtc/modules/video_processing/test/brightness_detection_test.cc

Issue 1915973002: Revert of Enable video processing unittest to take video clips as param. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 8 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
« no previous file with comments | « no previous file | webrtc/modules/video_processing/test/content_metrics_test.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) 2011 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2011 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
11 #include <memory> 11 #include <memory>
12 12
13 #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" 13 #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h"
14 #include "webrtc/modules/video_processing/include/video_processing.h" 14 #include "webrtc/modules/video_processing/include/video_processing.h"
15 #include "webrtc/modules/video_processing/test/video_processing_unittest.h" 15 #include "webrtc/modules/video_processing/test/video_processing_unittest.h"
16 16
17 namespace webrtc { 17 namespace webrtc {
18 18
19 #if defined(WEBRTC_IOS) 19 #if defined(WEBRTC_IOS)
20 #define MAYBE_BrightnessDetection DISABLED_BrightnessDetection 20 #define MAYBE_BrightnessDetection DISABLED_BrightnessDetection
21 #else 21 #else
22 #define MAYBE_BrightnessDetection BrightnessDetection 22 #define MAYBE_BrightnessDetection BrightnessDetection
23 #endif 23 #endif
24 TEST_P(VideoProcessingTest, MAYBE_BrightnessDetection) { 24 TEST_F(VideoProcessingTest, MAYBE_BrightnessDetection) {
25 uint32_t frameNum = 0; 25 uint32_t frameNum = 0;
26 int32_t brightnessWarning = 0; 26 int32_t brightnessWarning = 0;
27 uint32_t warningCount = 0; 27 uint32_t warningCount = 0;
28 std::unique_ptr<uint8_t[]> video_buffer(new uint8_t[frame_length_]); 28 std::unique_ptr<uint8_t[]> video_buffer(new uint8_t[frame_length_]);
29 while (fread(video_buffer.get(), 1, frame_length_, source_file_) == 29 while (fread(video_buffer.get(), 1, frame_length_, source_file_) ==
30 frame_length_) { 30 frame_length_) {
31 EXPECT_EQ(0, ConvertToI420(kI420, video_buffer.get(), 0, 0, width_, height_, 31 EXPECT_EQ(0, ConvertToI420(kI420, video_buffer.get(), 0, 0, width_, height_,
32 0, kVideoRotation_0, &video_frame_)); 32 0, kVideoRotation_0, &video_frame_));
33 frameNum++; 33 frameNum++;
34 VideoProcessing::FrameStats stats; 34 VideoProcessing::FrameStats stats;
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 } 113 }
114 } 114 }
115 ASSERT_NE(0, feof(source_file_)) << "Error reading source file"; 115 ASSERT_NE(0, feof(source_file_)) << "Error reading source file";
116 116
117 // Expect many darkness warnings 117 // Expect many darkness warnings
118 warningProportion = static_cast<float>(warningCount) / frameNum * 100; 118 warningProportion = static_cast<float>(warningCount) / frameNum * 100;
119 printf("Dark foreman: %.1f %%\n\n", warningProportion); 119 printf("Dark foreman: %.1f %%\n\n", warningProportion);
120 EXPECT_GT(warningProportion, 90); 120 EXPECT_GT(warningProportion, 90);
121 } 121 }
122 } // namespace webrtc 122 } // namespace webrtc
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/video_processing/test/content_metrics_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698