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

Side by Side Diff: webrtc/modules/video_processing/BUILD.gn

Issue 1822333003: External denoiser based on noise estimation and moving object detection. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 9 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 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 import("//build/config/arm.gni") 9 import("//build/config/arm.gni")
10 import("../../build/webrtc.gni") 10 import("../../build/webrtc.gni")
11 11
12 build_video_processing_sse2 = current_cpu == "x86" || current_cpu == "x64" 12 build_video_processing_sse2 = current_cpu == "x86" || current_cpu == "x64"
13 13
14 source_set("video_processing") { 14 source_set("video_processing") {
15 sources = [ 15 sources = [
16 "brightness_detection.cc", 16 "brightness_detection.cc",
17 "brightness_detection.h", 17 "brightness_detection.h",
18 "content_analysis.cc", 18 "content_analysis.cc",
19 "content_analysis.h", 19 "content_analysis.h",
20 "deflickering.cc", 20 "deflickering.cc",
21 "deflickering.h", 21 "deflickering.h",
22 "frame_preprocessor.cc", 22 "frame_preprocessor.cc",
23 "frame_preprocessor.h", 23 "frame_preprocessor.h",
24 "include/video_processing.h", 24 "include/video_processing.h",
25 "include/video_processing_defines.h", 25 "include/video_processing_defines.h",
26 "noise_estimation.cc",
marpan 2016/03/24 20:56:16 put these under /util
jackychen_ 2016/03/25 18:45:44 Done.
27 "noise_estimation.h",
26 "spatial_resampler.cc", 28 "spatial_resampler.cc",
27 "spatial_resampler.h", 29 "spatial_resampler.h",
28 "util/denoiser_filter.cc", 30 "util/denoiser_filter.cc",
29 "util/denoiser_filter.h", 31 "util/denoiser_filter.h",
30 "util/denoiser_filter_c.cc", 32 "util/denoiser_filter_c.cc",
31 "util/denoiser_filter_c.h", 33 "util/denoiser_filter_c.h",
32 "util/skin_detection.cc", 34 "util/skin_detection.cc",
33 "util/skin_detection.h", 35 "util/skin_detection.h",
34 "video_decimator.cc", 36 "video_decimator.cc",
35 "video_decimator.h", 37 "video_decimator.h",
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 "util/denoiser_filter_neon.h", 94 "util/denoiser_filter_neon.h",
93 ] 95 ]
94 if (current_cpu != "arm64") { 96 if (current_cpu != "arm64") {
95 configs -= [ "//build/config/compiler:compiler_arm_fpu" ] 97 configs -= [ "//build/config/compiler:compiler_arm_fpu" ]
96 cflags = [ "-mfpu=neon" ] 98 cflags = [ "-mfpu=neon" ]
97 } 99 }
98 configs += [ "../..:common_config" ] 100 configs += [ "../..:common_config" ]
99 public_configs = [ "../..:common_inherited_config" ] 101 public_configs = [ "../..:common_inherited_config" ]
100 } 102 }
101 } 103 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698