OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2015 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 <string.h> | 11 #include <string.h> |
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 #include "webrtc/modules/video_processing/video_denoiser.h" | 16 #include "webrtc/modules/video_processing/video_denoiser.h" |
17 #include "webrtc/test/frame_utils.h" | |
18 | 17 |
19 namespace webrtc { | 18 namespace webrtc { |
20 | 19 |
21 TEST_F(VideoProcessingTest, CopyMem) { | 20 TEST_F(VideoProcessingTest, CopyMem) { |
22 rtc::scoped_ptr<DenoiserFilter> df_c(DenoiserFilter::Create(false)); | 21 rtc::scoped_ptr<DenoiserFilter> df_c(DenoiserFilter::Create(false)); |
23 rtc::scoped_ptr<DenoiserFilter> df_sse_neon(DenoiserFilter::Create(true)); | 22 rtc::scoped_ptr<DenoiserFilter> df_sse_neon(DenoiserFilter::Create(true)); |
24 uint8_t src[16 * 16], dst[16 * 16]; | 23 uint8_t src[16 * 16], dst[16 * 16]; |
25 for (int i = 0; i < 16; ++i) { | 24 for (int i = 0; i < 16; ++i) { |
26 for (int j = 0; j < 16; ++j) { | 25 for (int j = 0; j < 16; ++j) { |
27 src[i * 16 + j] = i * 16 + j; | 26 src[i * 16 + j] = i * 16 + j; |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
142 while (fread(video_buffer.get(), 1, frame_length_, source_file_) == | 141 while (fread(video_buffer.get(), 1, frame_length_, source_file_) == |
143 frame_length_) { | 142 frame_length_) { |
144 // Using ConvertToI420 to add stride to the image. | 143 // Using ConvertToI420 to add stride to the image. |
145 EXPECT_EQ(0, ConvertToI420(kI420, video_buffer.get(), 0, 0, width_, height_, | 144 EXPECT_EQ(0, ConvertToI420(kI420, video_buffer.get(), 0, 0, width_, height_, |
146 0, kVideoRotation_0, &video_frame_)); | 145 0, kVideoRotation_0, &video_frame_)); |
147 | 146 |
148 denoiser_c.DenoiseFrame(video_frame_, &denoised_frame_c); | 147 denoiser_c.DenoiseFrame(video_frame_, &denoised_frame_c); |
149 denoiser_sse_neon.DenoiseFrame(video_frame_, &denoised_frame_sse_neon); | 148 denoiser_sse_neon.DenoiseFrame(video_frame_, &denoised_frame_sse_neon); |
150 | 149 |
151 // Denoising results should be the same for C and SSE/NEON denoiser. | 150 // Denoising results should be the same for C and SSE/NEON denoiser. |
152 ASSERT_TRUE(test::FramesEqual(denoised_frame_c, denoised_frame_sse_neon)); | 151 ASSERT_EQ(true, denoised_frame_c.EqualsFrame(denoised_frame_sse_neon)); |
153 } | 152 } |
154 ASSERT_NE(0, feof(source_file_)) << "Error reading source file"; | 153 ASSERT_NE(0, feof(source_file_)) << "Error reading source file"; |
155 } | 154 } |
156 | 155 |
157 } // namespace webrtc | 156 } // namespace webrtc |
OLD | NEW |