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

Side by Side Diff: webrtc/common_audio/BUILD.gn

Issue 2717123004: Avoid overflow in WebRtcSpl_DotProductWithScale (Closed)
Patch Set: Convert to C++ and use saturated_cast Created 3 years, 9 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 | « no previous file | webrtc/common_audio/signal_processing/dot_product_with_scale.c » ('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) 2014 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2014 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 import("//build/config/arm.gni") 9 import("//build/config/arm.gni")
10 import("../webrtc.gni") 10 import("../webrtc.gni")
(...skipping 29 matching lines...) Expand all
40 "real_fourier_ooura.cc", 40 "real_fourier_ooura.cc",
41 "real_fourier_ooura.h", 41 "real_fourier_ooura.h",
42 "resampler/include/push_resampler.h", 42 "resampler/include/push_resampler.h",
43 "resampler/include/resampler.h", 43 "resampler/include/resampler.h",
44 "resampler/push_resampler.cc", 44 "resampler/push_resampler.cc",
45 "resampler/push_sinc_resampler.cc", 45 "resampler/push_sinc_resampler.cc",
46 "resampler/push_sinc_resampler.h", 46 "resampler/push_sinc_resampler.h",
47 "resampler/resampler.cc", 47 "resampler/resampler.cc",
48 "resampler/sinc_resampler.cc", 48 "resampler/sinc_resampler.cc",
49 "resampler/sinc_resampler.h", 49 "resampler/sinc_resampler.h",
50 "signal_processing/dot_product_with_scale.cc",
kwiberg-webrtc 2017/02/28 12:11:21 The header file is still in common_audio_c, and th
hlundin-webrtc 2017/02/28 12:35:17 Done.
50 "smoothing_filter.cc", 51 "smoothing_filter.cc",
51 "smoothing_filter.h", 52 "smoothing_filter.h",
52 "sparse_fir_filter.cc", 53 "sparse_fir_filter.cc",
53 "sparse_fir_filter.h", 54 "sparse_fir_filter.h",
54 "vad/include/vad.h", 55 "vad/include/vad.h",
55 "vad/vad.cc", 56 "vad/vad.cc",
56 "wav_file.cc", 57 "wav_file.cc",
57 "wav_file.h", 58 "wav_file.h",
58 "wav_header.cc", 59 "wav_header.cc",
59 "wav_header.h", 60 "wav_header.h",
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 "fft4g.c", 107 "fft4g.c",
107 "fft4g.h", 108 "fft4g.h",
108 "ring_buffer.c", 109 "ring_buffer.c",
109 "ring_buffer.h", 110 "ring_buffer.h",
110 "signal_processing/auto_corr_to_refl_coef.c", 111 "signal_processing/auto_corr_to_refl_coef.c",
111 "signal_processing/auto_correlation.c", 112 "signal_processing/auto_correlation.c",
112 "signal_processing/complex_fft_tables.h", 113 "signal_processing/complex_fft_tables.h",
113 "signal_processing/copy_set_operations.c", 114 "signal_processing/copy_set_operations.c",
114 "signal_processing/cross_correlation.c", 115 "signal_processing/cross_correlation.c",
115 "signal_processing/division_operations.c", 116 "signal_processing/division_operations.c",
116 "signal_processing/dot_product_with_scale.c",
117 "signal_processing/downsample_fast.c", 117 "signal_processing/downsample_fast.c",
118 "signal_processing/energy.c", 118 "signal_processing/energy.c",
119 "signal_processing/filter_ar.c", 119 "signal_processing/filter_ar.c",
120 "signal_processing/filter_ma_fast_q12.c", 120 "signal_processing/filter_ma_fast_q12.c",
121 "signal_processing/get_hanning_window.c", 121 "signal_processing/get_hanning_window.c",
122 "signal_processing/get_scaling_square.c", 122 "signal_processing/get_scaling_square.c",
123 "signal_processing/ilbc_specific_functions.c", 123 "signal_processing/ilbc_specific_functions.c",
124 "signal_processing/include/real_fft.h", 124 "signal_processing/include/real_fft.h",
125 "signal_processing/include/signal_processing_library.h", 125 "signal_processing/include/signal_processing_library.h",
126 "signal_processing/include/spl_inl.h", 126 "signal_processing/include/spl_inl.h",
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
340 "//testing/gtest", 340 "//testing/gtest",
341 ] 341 ]
342 342
343 if (is_android) { 343 if (is_android) {
344 deps += [ "//testing/android/native_test:native_test_support" ] 344 deps += [ "//testing/android/native_test:native_test_support" ]
345 345
346 shard_timeout = 900 346 shard_timeout = 900
347 } 347 }
348 } 348 }
349 } 349 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/common_audio/signal_processing/dot_product_with_scale.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698