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

Unified Diff: webrtc/modules/audio_device/ios/audio_device_ios.mm

Issue 1244383003: [NOT FOR REVIEW] Various changes requested by Andrew (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@size_t
Patch Set: Android work Created 5 years, 5 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
« no previous file with comments | « webrtc/modules/audio_device/include/audio_device_defines.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/audio_device/ios/audio_device_ios.mm
diff --git a/webrtc/modules/audio_device/ios/audio_device_ios.mm b/webrtc/modules/audio_device/ios/audio_device_ios.mm
index 1d3c8e31d0e7b24d857c5f052c03a9954e93195a..29f85c2eac9a21320d6a6ba94b81a43308507b37 100644
--- a/webrtc/modules/audio_device/ios/audio_device_ios.mm
+++ b/webrtc/modules/audio_device/ios/audio_device_ios.mm
@@ -86,8 +86,8 @@ static void GetHardwareAudioParameters(AudioParameters* playout_parameters,
double io_buffer_duration = (double)session.IOBufferDuration;
int output_channels = (int)session.outputNumberOfChannels;
int input_channels = (int)session.inputNumberOfChannels;
- int frames_per_buffer =
- static_cast<int>(sample_rate * io_buffer_duration + 0.5);
+ size_t frames_per_buffer =
+ static_cast<size_t>(sample_rate * io_buffer_duration + 0.5);
// Copy hardware parameters to output parameters.
playout_parameters->reset(sample_rate, output_channels, frames_per_buffer);
record_parameters->reset(sample_rate, input_channels, frames_per_buffer);
« no previous file with comments | « webrtc/modules/audio_device/include/audio_device_defines.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698