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

Unified Diff: media/base/android/demuxer_stream_player_params.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/demuxer_stream_player_params.h
diff --git a/media/base/android/demuxer_stream_player_params.h b/media/base/android/demuxer_stream_player_params.h
index 33d8976a2caf752ab53c96fae471f85e96da112f..db89c1847c3350a8e15d658f11e009006a335893 100644
--- a/media/base/android/demuxer_stream_player_params.h
+++ b/media/base/android/demuxer_stream_player_params.h
@@ -24,14 +24,14 @@ struct MEDIA_EXPORT DemuxerConfigs {
int audio_channels;
int audio_sampling_rate;
bool is_audio_encrypted;
- 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;
VideoCodec video_codec;
gfx::Size video_size;
bool is_video_encrypted;
- std::vector<uint8> video_extra_data;
+ std::vector<uint8_t> video_extra_data;
base::TimeDelta duration;
};
@@ -43,7 +43,7 @@ struct MEDIA_EXPORT AccessUnit {
DemuxerStream::Status status;
bool is_end_of_stream;
// TODO(ycheo): Use the shared memory to transfer the block data.
- std::vector<uint8> data;
+ std::vector<uint8_t> data;
base::TimeDelta timestamp;
std::vector<char> key_id;
std::vector<char> iv;

Powered by Google App Engine
This is Rietveld 408576698