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

Unified Diff: media/audio/android/opensles_output.h

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/android/opensles_output.h
diff --git a/media/audio/android/opensles_output.h b/media/audio/android/opensles_output.h
index 0fef1bdb23129798fa966941f557c11dba4ac4fb..bc500f1ed4a1b2f38ab2792f3299c0ab44b724f6 100644
--- a/media/audio/android/opensles_output.h
+++ b/media/audio/android/opensles_output.h
@@ -98,7 +98,7 @@ class OpenSLESOutputStream : public AudioOutputStream {
// Audio buffers that are allocated in the constructor based on
// info from audio parameters.
- uint8* audio_data_[kMaxNumOfBuffersInQueue];
+ uint8_t* audio_data_[kMaxNumOfBuffersInQueue];
int active_buffer_index_;
size_t buffer_size_bytes_;

Powered by Google App Engine
This is Rietveld 408576698