| Index: content/common/gpu/media/android_video_encode_accelerator.cc
|
| diff --git a/content/common/gpu/media/android_video_encode_accelerator.cc b/content/common/gpu/media/android_video_encode_accelerator.cc
|
| index 1cb6e54998d2bf831516a87f86b971b59de1417c..06931bfda4618bb93b059e431cc0c6982f4469d1 100644
|
| --- a/content/common/gpu/media/android_video_encode_accelerator.cc
|
| +++ b/content/common/gpu/media/android_video_encode_accelerator.cc
|
| @@ -146,7 +146,7 @@ bool AndroidVideoEncodeAccelerator::Initialize(
|
| media::VideoPixelFormat format,
|
| const gfx::Size& input_visible_size,
|
| media::VideoCodecProfile output_profile,
|
| - uint32 initial_bitrate,
|
| + uint32_t initial_bitrate,
|
| Client* client) {
|
| DVLOG(3) << __PRETTY_FUNCTION__ << " format: " << format
|
| << ", input_visible_size: " << input_visible_size.ToString()
|
| @@ -269,8 +269,8 @@ void AndroidVideoEncodeAccelerator::UseOutputBitstreamBuffer(
|
| }
|
|
|
| void AndroidVideoEncodeAccelerator::RequestEncodingParametersChange(
|
| - uint32 bitrate,
|
| - uint32 framerate) {
|
| + uint32_t bitrate,
|
| + uint32_t framerate) {
|
| DVLOG(3) << __PRETTY_FUNCTION__ << ": bitrate: " << bitrate
|
| << ", framerate: " << framerate;
|
| DCHECK(thread_checker_.CalledOnValidThread());
|
| @@ -394,7 +394,7 @@ void AndroidVideoEncodeAccelerator::DequeueOutput() {
|
| return;
|
| }
|
|
|
| - int32 buf_index = 0;
|
| + int32_t buf_index = 0;
|
| size_t offset = 0;
|
| size_t size = 0;
|
| bool key_frame = false;
|
|
|