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

Unified Diff: content/renderer/media/webrtc_audio_device_impl.cc

Issue 1547073003: Switch to standard integer types in content/renderer/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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: content/renderer/media/webrtc_audio_device_impl.cc
diff --git a/content/renderer/media/webrtc_audio_device_impl.cc b/content/renderer/media/webrtc_audio_device_impl.cc
index 8931f75e40aa51a73d4b5078e8b26e3083873fd4..9ee3da787e2e700d6b6995c9d38b327636319a66 100644
--- a/content/renderer/media/webrtc_audio_device_impl.cc
+++ b/content/renderer/media/webrtc_audio_device_impl.cc
@@ -90,7 +90,7 @@ void WebRtcAudioDeviceImpl::RenderData(media::AudioBus* audio_bus,
// webrtc::AudioTransport source. Keep reading until our internal buffer
// is full.
int accumulated_audio_frames = 0;
- int16* audio_data = &render_buffer_[0];
+ int16_t* audio_data = &render_buffer_[0];
while (accumulated_audio_frames < audio_bus->frames()) {
// Get 10ms and append output to temporary byte buffer.
int64_t elapsed_time_ms = -1;
« no previous file with comments | « content/renderer/media/webrtc_audio_device_impl.h ('k') | content/renderer/media/webrtc_audio_device_not_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698