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

Unified Diff: media/base/android/audio_decoder_job.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/base/android/audio_decoder_job.h
diff --git a/media/base/android/audio_decoder_job.h b/media/base/android/audio_decoder_job.h
index f302a59942dd5bf38f5400ad855c4dbd236fc235..5d13b1c062f477901abd8ddce8bd633d8b571312 100644
--- a/media/base/android/audio_decoder_job.h
+++ b/media/base/android/audio_decoder_job.h
@@ -62,9 +62,9 @@ class AudioDecoderJob : public MediaDecoderJob {
AudioCodec audio_codec_;
int num_channels_;
int config_sampling_rate_;
- std::vector<uint8> audio_extra_data_;
- int64 audio_codec_delay_ns_;
- int64 audio_seek_preroll_ns_;
+ std::vector<uint8_t> audio_extra_data_;
+ int64_t audio_codec_delay_ns_;
+ int64_t audio_seek_preroll_ns_;
double volume_;
int bytes_per_frame_;
@@ -72,7 +72,7 @@ class AudioDecoderJob : public MediaDecoderJob {
int output_sampling_rate_;
// Frame count to sync with audio codec output
- int64 frame_count_;
+ int64_t frame_count_;
// Base timestamp for the |audio_timestamp_helper_|.
base::TimeDelta base_timestamp_;

Powered by Google App Engine
This is Rietveld 408576698