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

Side by Side Diff: webrtc/common_audio/common_audio.gyp

Issue 1398473004: Changed queue implementation to the proposed vector-based solution. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@lock_unittest_CL
Patch Set: Comment changes and modified the order of parameters for one of the constructors 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 unified diff | Download patch
« no previous file with comments | « webrtc/common_audio/BUILD.gn ('k') | webrtc/common_audio/swap_queue.h » ('j') | 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 'includes': [ 10 'includes': [
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 'signal_processing/resample_by_2_internal.h', 94 'signal_processing/resample_by_2_internal.h',
95 'signal_processing/resample_fractional.c', 95 'signal_processing/resample_fractional.c',
96 'signal_processing/spl_init.c', 96 'signal_processing/spl_init.c',
97 'signal_processing/spl_sqrt.c', 97 'signal_processing/spl_sqrt.c',
98 'signal_processing/spl_sqrt_floor.c', 98 'signal_processing/spl_sqrt_floor.c',
99 'signal_processing/splitting_filter.c', 99 'signal_processing/splitting_filter.c',
100 'signal_processing/sqrt_of_one_minus_x_squared.c', 100 'signal_processing/sqrt_of_one_minus_x_squared.c',
101 'signal_processing/vector_scaling_operations.c', 101 'signal_processing/vector_scaling_operations.c',
102 'sparse_fir_filter.cc', 102 'sparse_fir_filter.cc',
103 'sparse_fir_filter.h', 103 'sparse_fir_filter.h',
104 'swap_queue.h',
104 'vad/include/vad.h', 105 'vad/include/vad.h',
105 'vad/include/webrtc_vad.h', 106 'vad/include/webrtc_vad.h',
106 'vad/vad.cc', 107 'vad/vad.cc',
107 'vad/webrtc_vad.c', 108 'vad/webrtc_vad.c',
108 'vad/vad_core.c', 109 'vad/vad_core.c',
109 'vad/vad_core.h', 110 'vad/vad_core.h',
110 'vad/vad_filterbank.c', 111 'vad/vad_filterbank.c',
111 'vad/vad_filterbank.h', 112 'vad/vad_filterbank.h',
112 'vad/vad_gmm.c', 113 'vad/vad_gmm.c',
113 'vad/vad_gmm.h', 114 'vad/vad_gmm.h',
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
249 'resampler/resampler_unittest.cc', 250 'resampler/resampler_unittest.cc',
250 'resampler/push_resampler_unittest.cc', 251 'resampler/push_resampler_unittest.cc',
251 'resampler/push_sinc_resampler_unittest.cc', 252 'resampler/push_sinc_resampler_unittest.cc',
252 'resampler/sinc_resampler_unittest.cc', 253 'resampler/sinc_resampler_unittest.cc',
253 'resampler/sinusoidal_linear_chirp_source.cc', 254 'resampler/sinusoidal_linear_chirp_source.cc',
254 'resampler/sinusoidal_linear_chirp_source.h', 255 'resampler/sinusoidal_linear_chirp_source.h',
255 'ring_buffer_unittest.cc', 256 'ring_buffer_unittest.cc',
256 'signal_processing/real_fft_unittest.cc', 257 'signal_processing/real_fft_unittest.cc',
257 'signal_processing/signal_processing_unittest.cc', 258 'signal_processing/signal_processing_unittest.cc',
258 'sparse_fir_filter_unittest.cc', 259 'sparse_fir_filter_unittest.cc',
260 'swap_queue_unittest.cc',
259 'vad/vad_core_unittest.cc', 261 'vad/vad_core_unittest.cc',
260 'vad/vad_filterbank_unittest.cc', 262 'vad/vad_filterbank_unittest.cc',
261 'vad/vad_gmm_unittest.cc', 263 'vad/vad_gmm_unittest.cc',
262 'vad/vad_sp_unittest.cc', 264 'vad/vad_sp_unittest.cc',
263 'vad/vad_unittest.cc', 265 'vad/vad_unittest.cc',
264 'vad/vad_unittest.h', 266 'vad/vad_unittest.h',
265 'wav_header_unittest.cc', 267 'wav_header_unittest.cc',
266 'wav_file_unittest.cc', 268 'wav_file_unittest.cc',
267 'window_generator_unittest.cc', 269 'window_generator_unittest.cc',
268 ], 270 ],
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
304 'sources': [ 306 'sources': [
305 'common_audio_unittests.isolate', 307 'common_audio_unittests.isolate',
306 ], 308 ],
307 }, 309 },
308 ], 310 ],
309 }], 311 }],
310 ], 312 ],
311 }], 313 }],
312 ], # conditions 314 ], # conditions
313 } 315 }
OLDNEW
« no previous file with comments | « webrtc/common_audio/BUILD.gn ('k') | webrtc/common_audio/swap_queue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698