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

Side by Side Diff: webrtc/modules/video_processing/video_processing.gypi

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, 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 | « webrtc/modules/video_processing/video_denoiser.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2011 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 { 9 {
10 'targets': [ 10 'targets': [
(...skipping 22 matching lines...) Expand all
33 'video_decimator.cc', 33 'video_decimator.cc',
34 'video_decimator.h', 34 'video_decimator.h',
35 'video_processing_impl.cc', 35 'video_processing_impl.cc',
36 'video_processing_impl.h', 36 'video_processing_impl.h',
37 'video_denoiser.cc', 37 'video_denoiser.cc',
38 'video_denoiser.h', 38 'video_denoiser.h',
39 'util/denoiser_filter.cc', 39 'util/denoiser_filter.cc',
40 'util/denoiser_filter.h', 40 'util/denoiser_filter.h',
41 'util/denoiser_filter_c.cc', 41 'util/denoiser_filter_c.cc',
42 'util/denoiser_filter_c.h', 42 'util/denoiser_filter_c.h',
43 'util/noise_estimation.cc',
44 'util/noise_estimation.h',
43 'util/skin_detection.cc', 45 'util/skin_detection.cc',
44 'util/skin_detection.h', 46 'util/skin_detection.h',
45 ], 47 ],
46 'conditions': [ 48 'conditions': [
47 ['target_arch=="ia32" or target_arch=="x64"', { 49 ['target_arch=="ia32" or target_arch=="x64"', {
48 'dependencies': [ 'video_processing_sse2', ], 50 'dependencies': [ 'video_processing_sse2', ],
49 }], 51 }],
50 ['target_arch=="arm" or target_arch == "arm64"', { 52 ['target_arch=="arm" or target_arch == "arm64"', {
51 'dependencies': [ 'video_processing_neon', ], 53 'dependencies': [ 'video_processing_neon', ],
52 }], 54 }],
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 'sources': [ 88 'sources': [
87 'util/denoiser_filter_neon.cc', 89 'util/denoiser_filter_neon.cc',
88 'util/denoiser_filter_neon.h', 90 'util/denoiser_filter_neon.h',
89 ], 91 ],
90 }, 92 },
91 ], 93 ],
92 }], 94 }],
93 ], 95 ],
94 } 96 }
95 97
OLDNEW
« no previous file with comments | « webrtc/modules/video_processing/video_denoiser.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698