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

Unified Diff: media/audio/mac/audio_low_latency_input_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_low_latency_input_mac.cc
diff --git a/media/audio/mac/audio_low_latency_input_mac.cc b/media/audio/mac/audio_low_latency_input_mac.cc
index 3beb2c08d321efc0327daea15f826a1ef583455c..4a6a39baafedb17ba214e38cd020891f238d0be1 100644
--- a/media/audio/mac/audio_low_latency_input_mac.cc
+++ b/media/audio/mac/audio_low_latency_input_mac.cc
@@ -6,7 +6,6 @@
#include <CoreServices/CoreServices.h>
-#include "base/basictypes.h"
#include "base/logging.h"
#include "base/mac/mac_logging.h"
#include "base/metrics/histogram_macros.h"
@@ -89,7 +88,7 @@ AUAudioInputStream::AUAudioInputStream(AudioManagerMac* manager,
// Allocate AudioBuffers to be used as storage for the received audio.
// The AudioBufferList structure works as a placeholder for the
// AudioBuffer structure, which holds a pointer to the actual data buffer.
- audio_data_buffer_.reset(new uint8[data_byte_size]);
+ audio_data_buffer_.reset(new uint8_t[data_byte_size]);
audio_buffer_list_.mNumberBuffers = 1;
AudioBuffer* audio_buffer = audio_buffer_list_.mBuffers;
@@ -521,7 +520,7 @@ OSStatus AUAudioInputStream::InputProc(void* user_data,
// handles it.
// See See http://www.crbug.com/434681 for one example when we can enter
// this scope.
- audio_input->audio_data_buffer_.reset(new uint8[new_size]);
+ audio_input->audio_data_buffer_.reset(new uint8_t[new_size]);
audio_buffer->mData = audio_input->audio_data_buffer_.get();
}
@@ -582,9 +581,9 @@ OSStatus AUAudioInputStream::Provide(UInt32 number_of_frames,
GetAgcVolume(&normalized_volume);
AudioBuffer& buffer = io_data->mBuffers[0];
- uint8* audio_data = reinterpret_cast<uint8*>(buffer.mData);
- uint32 capture_delay_bytes = static_cast<uint32>
- ((capture_latency_frames + 0.5) * format_.mBytesPerFrame);
+ uint8_t* audio_data = reinterpret_cast<uint8_t*>(buffer.mData);
+ uint32_t capture_delay_bytes = static_cast<uint32_t>(
+ (capture_latency_frames + 0.5) * format_.mBytesPerFrame);
DCHECK(audio_data);
if (!audio_data)
return kAudioUnitErr_InvalidElement;

Powered by Google App Engine
This is Rietveld 408576698