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

Unified Diff: webrtc/modules/video_processing/video_processing.gypi

Issue 1466763002: Standalone denoiser (off by default). (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 side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/video_processing/video_processing.gypi
diff --git a/webrtc/modules/video_processing/video_processing.gypi b/webrtc/modules/video_processing/video_processing.gypi
index 25e2097007f5f01bb9e3c23ec23047fa3a16f00f..e054f895befc96665b332ebec96f6e998c80b79c 100644
--- a/webrtc/modules/video_processing/video_processing.gypi
+++ b/webrtc/modules/video_processing/video_processing.gypi
@@ -36,11 +36,22 @@
'video_decimator.h',
'video_processing_impl.cc',
'video_processing_impl.h',
+ 'video_denoiser.cc',
+ 'video_denoiser.h',
+ 'util/denoiser_filter.cc',
+ 'util/denoiser_filter.h',
+ 'util/denoiser_filter_c.cc',
+ 'util/denoiser_filter_c.h',
+ 'util/skin_detection.cc',
+ 'util/skin_detection.h',
],
'conditions': [
['target_arch=="ia32" or target_arch=="x64"', {
'dependencies': [ 'video_processing_sse2', ],
}],
+ ['target_arch=="arm" or target_arch == "arm64"', {
+ 'dependencies': [ 'video_processing_neon', ],
+ }],
],
},
],
@@ -52,6 +63,8 @@
'type': 'static_library',
'sources': [
'content_analysis_sse2.cc',
+ 'util/denoiser_filter_sse2.cc',
+ 'util/denoiser_filter_sse2.h',
],
'conditions': [
['os_posix==1 and OS!="mac"', {
@@ -66,6 +79,19 @@
},
],
}],
+ ['target_arch=="arm" or target_arch == "arm64"', {
+ 'targets': [
+ {
+ 'target_name': 'video_processing_neon',
+ 'type': 'static_library',
+ 'includes': [ '../../build/arm_neon.gypi', ],
+ 'sources': [
+ 'util/denoiser_filter_neon.cc',
+ 'util/denoiser_filter_neon.h',
+ ],
+ },
+ ],
+ }],
],
}

Powered by Google App Engine
This is Rietveld 408576698