| Index: content/common/gpu/media/omx_video_decode_accelerator.h
|
| diff --git a/content/common/gpu/media/omx_video_decode_accelerator.h b/content/common/gpu/media/omx_video_decode_accelerator.h
|
| index 39a2e9443642361668423f47479a159de9370d06..e028cc5715ea18b7427e4ca4b4454d42d3911252 100644
|
| --- a/content/common/gpu/media/omx_video_decode_accelerator.h
|
| +++ b/content/common/gpu/media/omx_video_decode_accelerator.h
|
| @@ -42,7 +42,7 @@ class OmxVideoDecodeAccelerator : public media::VideoDecodeAccelerator {
|
| OmxVideoDecodeAccelerator(media::VideoDecodeAccelerator::Client* client);
|
|
|
| // media::VideoDecodeAccelerator implementation.
|
| - bool Initialize(const std::vector<uint32>& config) OVERRIDE;
|
| + bool Initialize(const std::vector<int32>& config) OVERRIDE;
|
| void Decode(const media::BitstreamBuffer& bitstream_buffer) OVERRIDE;
|
| virtual void AssignPictureBuffers(
|
| const std::vector<media::PictureBuffer>& buffers) OVERRIDE;
|
| @@ -82,7 +82,7 @@ class OmxVideoDecodeAccelerator : public media::VideoDecodeAccelerator {
|
| typedef std::map<int32, OutputPicture> OutputPictureById;
|
|
|
| // Verify that |config| is compatible with this class and hardware.
|
| - bool VerifyConfigs(const std::vector<uint32>& configs);
|
| + bool VerifyConfigs(const std::vector<int32>& configs);
|
|
|
| MessageLoop* message_loop_;
|
| OMX_HANDLETYPE component_handle_;
|
|
|