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

Unified Diff: webrtc/common_audio/signal_processing/downsample_fast_neon.c

Issue 1230503003: Update a ton of audio code to use size_t more correctly and in general reduce (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Resync Created 5 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: webrtc/common_audio/signal_processing/downsample_fast_neon.c
diff --git a/webrtc/common_audio/signal_processing/downsample_fast_neon.c b/webrtc/common_audio/signal_processing/downsample_fast_neon.c
index f775e6936a4a9cddd56c87666a7abd6ed9e02a5c..58732dab1ca499146993a434e1a3a2ef2595cadd 100644
--- a/webrtc/common_audio/signal_processing/downsample_fast_neon.c
+++ b/webrtc/common_audio/signal_processing/downsample_fast_neon.c
@@ -15,22 +15,22 @@
// NEON intrinsics version of WebRtcSpl_DownsampleFast()
// for ARM 32-bit/64-bit platforms.
int WebRtcSpl_DownsampleFastNeon(const int16_t* data_in,
- int data_in_length,
+ size_t data_in_length,
int16_t* data_out,
- int data_out_length,
+ size_t data_out_length,
const int16_t* __restrict coefficients,
- int coefficients_length,
+ size_t coefficients_length,
int factor,
- int delay) {
- int i = 0;
- int j = 0;
+ size_t delay) {
+ size_t i = 0;
+ size_t j = 0;
int32_t out_s32 = 0;
- int endpos = delay + factor * (data_out_length - 1) + 1;
- int res = data_out_length & 0x7;
- int endpos1 = endpos - factor * res;
+ size_t endpos = delay + factor * (data_out_length - 1) + 1;
+ size_t res = data_out_length & 0x7;
+ size_t endpos1 = endpos - factor * res;
// Return error if any of the running conditions doesn't meet.
- if (data_out_length <= 0 || coefficients_length <= 0
+ if (data_out_length == 0 || coefficients_length == 0
|| data_in_length < endpos) {
return -1;
}
« no previous file with comments | « webrtc/common_audio/signal_processing/downsample_fast_mips.c ('k') | webrtc/common_audio/signal_processing/energy.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698