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

Unified Diff: media/audio/mac/audio_auhal_mac.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/mac/audio_auhal_mac.cc
diff --git a/media/audio/mac/audio_auhal_mac.cc b/media/audio/mac/audio_auhal_mac.cc
index ab0d26e5ba41c07565eefff1d7fe3908e222ec23..9ddc6f9c42e588ade5aae8b931b920742edea294 100644
--- a/media/audio/mac/audio_auhal_mac.cc
+++ b/media/audio/mac/audio_auhal_mac.cc
@@ -6,7 +6,6 @@
#include <CoreServices/CoreServices.h>
-#include "base/basictypes.h"
#include "base/bind.h"
#include "base/bind_helpers.h"
#include "base/logging.h"
@@ -240,7 +239,7 @@ OSStatus AUHALStream::Render(
// Update the playout latency.
const double playout_latency_frames = GetPlayoutLatency(output_time_stamp);
- current_hardware_pending_bytes_ = static_cast<uint32>(
+ current_hardware_pending_bytes_ = static_cast<uint32_t>(
(playout_latency_frames + 0.5) * params_.GetBytesPerFrame());
if (audio_fifo_)

Powered by Google App Engine
This is Rietveld 408576698