| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 // | 4 // |
| 5 // This file contains an implementation of VideoDecodeAccelerator | 5 // This file contains an implementation of VideoDecodeAccelerator |
| 6 // that utilizes hardware video decoders, which expose Video4Linux 2 API | 6 // that utilizes hardware video decoders, which expose Video4Linux 2 API |
| 7 // (http://linuxtv.org/downloads/v4l-dvb-apis/). | 7 // (http://linuxtv.org/downloads/v4l-dvb-apis/). |
| 8 | 8 |
| 9 #ifndef CONTENT_COMMON_GPU_MEDIA_V4L2_VIDEO_DECODE_ACCELERATOR_H_ | 9 #ifndef CONTENT_COMMON_GPU_MEDIA_V4L2_VIDEO_DECODE_ACCELERATOR_H_ |
| 10 #define CONTENT_COMMON_GPU_MEDIA_V4L2_VIDEO_DECODE_ACCELERATOR_H_ | 10 #define CONTENT_COMMON_GPU_MEDIA_V4L2_VIDEO_DECODE_ACCELERATOR_H_ |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 EGLDisplay egl_display, | 76 EGLDisplay egl_display, |
| 77 EGLContext egl_context, | 77 EGLContext egl_context, |
| 78 const base::WeakPtr<Client>& io_client_, | 78 const base::WeakPtr<Client>& io_client_, |
| 79 const base::Callback<bool(void)>& make_context_current, | 79 const base::Callback<bool(void)>& make_context_current, |
| 80 const scoped_refptr<V4L2Device>& device, | 80 const scoped_refptr<V4L2Device>& device, |
| 81 const scoped_refptr<base::SingleThreadTaskRunner>& io_task_runner); | 81 const scoped_refptr<base::SingleThreadTaskRunner>& io_task_runner); |
| 82 ~V4L2VideoDecodeAccelerator() override; | 82 ~V4L2VideoDecodeAccelerator() override; |
| 83 | 83 |
| 84 // media::VideoDecodeAccelerator implementation. | 84 // media::VideoDecodeAccelerator implementation. |
| 85 // Note: Initialize() and Destroy() are synchronous. | 85 // Note: Initialize() and Destroy() are synchronous. |
| 86 bool Initialize(media::VideoCodecProfile profile, | 86 bool Initialize(const media::VideoDecodeAccelerator::InitParams& params, |
| 87 Client* client) override; | 87 Client* client) override; |
| 88 void Decode(const media::BitstreamBuffer& bitstream_buffer) override; | 88 void Decode(const media::BitstreamBuffer& bitstream_buffer) override; |
| 89 void AssignPictureBuffers( | 89 void AssignPictureBuffers( |
| 90 const std::vector<media::PictureBuffer>& buffers) override; | 90 const std::vector<media::PictureBuffer>& buffers) override; |
| 91 void ReusePictureBuffer(int32 picture_buffer_id) override; | 91 void ReusePictureBuffer(int32 picture_buffer_id) override; |
| 92 void Flush() override; | 92 void Flush() override; |
| 93 void Reset() override; | 93 void Reset() override; |
| 94 void Destroy() override; | 94 void Destroy() override; |
| 95 bool CanDecodeOnIOThread() override; | 95 bool CanDecodeOnIOThread() override; |
| 96 | 96 |
| (...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 449 | 449 |
| 450 // The WeakPtrFactory for |weak_this_|. | 450 // The WeakPtrFactory for |weak_this_|. |
| 451 base::WeakPtrFactory<V4L2VideoDecodeAccelerator> weak_this_factory_; | 451 base::WeakPtrFactory<V4L2VideoDecodeAccelerator> weak_this_factory_; |
| 452 | 452 |
| 453 DISALLOW_COPY_AND_ASSIGN(V4L2VideoDecodeAccelerator); | 453 DISALLOW_COPY_AND_ASSIGN(V4L2VideoDecodeAccelerator); |
| 454 }; | 454 }; |
| 455 | 455 |
| 456 } // namespace content | 456 } // namespace content |
| 457 | 457 |
| 458 #endif // CONTENT_COMMON_GPU_MEDIA_V4L2_VIDEO_DECODE_ACCELERATOR_H_ | 458 #endif // CONTENT_COMMON_GPU_MEDIA_V4L2_VIDEO_DECODE_ACCELERATOR_H_ |
| OLD | NEW |