| 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 36d9f7801f8f8d5b8253562deec80e165e00f0b0..c5d35f76e25efe852b049cc344accac518faf2da 100644
|
| --- a/content/common/gpu/media/omx_video_decode_accelerator.h
|
| +++ b/content/common/gpu/media/omx_video_decode_accelerator.h
|
| @@ -37,14 +37,14 @@ class OmxVideoDecodeAccelerator : public media::VideoDecodeAccelerator {
|
| bool GetConfigs(const std::vector<uint32>& requested_configs,
|
| std::vector<uint32>* matched_configs) OVERRIDE;
|
| bool Initialize(const std::vector<uint32>& config) OVERRIDE;
|
| - bool Decode(const media::BitstreamBuffer& bitstream_buffer) OVERRIDE;
|
| + void Decode(const media::BitstreamBuffer& bitstream_buffer) OVERRIDE;
|
| virtual void AssignGLESBuffers(
|
| const std::vector<media::GLESBuffer>& buffers) OVERRIDE;
|
| virtual void AssignSysmemBuffers(
|
| const std::vector<media::SysmemBuffer>& buffers) OVERRIDE;
|
| void ReusePictureBuffer(int32 picture_buffer_id) OVERRIDE;
|
| - bool Flush() OVERRIDE;
|
| - bool Abort() OVERRIDE;
|
| + void Flush() OVERRIDE;
|
| + void Abort() OVERRIDE;
|
|
|
| void SetEglState(EGLDisplay egl_display, EGLContext egl_context);
|
|
|
|
|