| 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;
|
|
|