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

Unified Diff: media/audio/pulse/pulse_output.cc

Issue 1534273002: Switch to standard integer types in media/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more 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: media/audio/pulse/pulse_output.cc
diff --git a/media/audio/pulse/pulse_output.cc b/media/audio/pulse/pulse_output.cc
index 1077e2503bb0c19db02feba5e0613f7b33d67763..9cd2da47c3601f0cf5861e8db43319cbc06aef8b 100644
--- a/media/audio/pulse/pulse_output.cc
+++ b/media/audio/pulse/pulse_output.cc
@@ -130,7 +130,7 @@ void PulseAudioOutputStream::FulfillWriteRequest(size_t requested_bytes) {
int frames_filled = 0;
if (source_callback_) {
- const uint32 hardware_delay = pulse::GetHardwareLatencyInBytes(
+ const uint32_t hardware_delay = pulse::GetHardwareLatencyInBytes(
pa_stream_, params_.sample_rate(), params_.GetBytesPerFrame());
frames_filled =
source_callback_->OnMoreData(audio_bus_.get(), hardware_delay, 0);

Powered by Google App Engine
This is Rietveld 408576698