OLD | NEW |
---|---|
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 10 matching lines...) Expand all Loading... | |
21 'include/video_processing.h', | 21 'include/video_processing.h', |
22 'include/video_processing_defines.h', | 22 'include/video_processing_defines.h', |
23 'brightness_detection.cc', | 23 'brightness_detection.cc', |
24 'brightness_detection.h', | 24 'brightness_detection.h', |
25 'content_analysis.cc', | 25 'content_analysis.cc', |
26 'content_analysis.h', | 26 'content_analysis.h', |
27 'deflickering.cc', | 27 'deflickering.cc', |
28 'deflickering.h', | 28 'deflickering.h', |
29 'frame_preprocessor.cc', | 29 'frame_preprocessor.cc', |
30 'frame_preprocessor.h', | 30 'frame_preprocessor.h', |
31 'noise_estimation.cc', | |
marpan
2016/03/24 20:56:17
should these be put in /util/noise_estimation
jackychen_
2016/03/25 18:45:45
Done.
| |
32 'noise_estimation.h', | |
31 'spatial_resampler.cc', | 33 'spatial_resampler.cc', |
32 'spatial_resampler.h', | 34 'spatial_resampler.h', |
33 'video_decimator.cc', | 35 'video_decimator.cc', |
34 'video_decimator.h', | 36 'video_decimator.h', |
35 'video_processing_impl.cc', | 37 'video_processing_impl.cc', |
36 'video_processing_impl.h', | 38 'video_processing_impl.h', |
37 'video_denoiser.cc', | 39 'video_denoiser.cc', |
38 'video_denoiser.h', | 40 'video_denoiser.h', |
39 'util/denoiser_filter.cc', | 41 'util/denoiser_filter.cc', |
40 'util/denoiser_filter.h', | 42 'util/denoiser_filter.h', |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
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 |
OLD | NEW |