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

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

Issue 1901393003: Delete unused methods of the VideoProcessing class. And fix a typo. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Added GUARDED_BY annotation. Created 4 years, 7 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) 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': [
11 { 11 {
12 'target_name': 'video_processing', 12 'target_name': 'video_processing',
13 'type': 'static_library', 13 'type': 'static_library',
14 'dependencies': [ 14 'dependencies': [
15 'webrtc_utility', 15 'webrtc_utility',
16 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', 16 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio',
17 '<(webrtc_root)/common_video/common_video.gyp:common_video', 17 '<(webrtc_root)/common_video/common_video.gyp:common_video',
18 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers', 18 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
19 ], 19 ],
20 'sources': [ 20 'sources': [
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',
24 'brightness_detection.h',
25 'content_analysis.cc', 23 'content_analysis.cc',
26 'content_analysis.h', 24 'content_analysis.h',
27 'deflickering.cc',
28 'deflickering.h',
29 'frame_preprocessor.cc', 25 'frame_preprocessor.cc',
30 'frame_preprocessor.h', 26 'frame_preprocessor.h',
31 'spatial_resampler.cc', 27 'spatial_resampler.cc',
32 'spatial_resampler.h', 28 'spatial_resampler.h',
33 'video_decimator.cc', 29 'video_decimator.cc',
34 'video_decimator.h', 30 'video_decimator.h',
35 'video_processing_impl.cc', 31 'video_processing_impl.cc',
36 'video_processing_impl.h', 32 'video_processing_impl.h',
37 'video_denoiser.cc', 33 'video_denoiser.cc',
38 'video_denoiser.h', 34 'video_denoiser.h',
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 'sources': [ 84 'sources': [
89 'util/denoiser_filter_neon.cc', 85 'util/denoiser_filter_neon.cc',
90 'util/denoiser_filter_neon.h', 86 'util/denoiser_filter_neon.h',
91 ], 87 ],
92 }, 88 },
93 ], 89 ],
94 }], 90 }],
95 ], 91 ],
96 } 92 }
97 93
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698