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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 Client* client) override; | 91 Client* client) override; |
92 void Decode(const media::BitstreamBuffer& bitstream_buffer) override; | 92 void Decode(const media::BitstreamBuffer& bitstream_buffer) override; |
93 void AssignPictureBuffers( | 93 void AssignPictureBuffers( |
94 const std::vector<media::PictureBuffer>& buffers) override; | 94 const std::vector<media::PictureBuffer>& buffers) override; |
95 void ReusePictureBuffer(int32 picture_buffer_id) override; | 95 void ReusePictureBuffer(int32 picture_buffer_id) override; |
96 void Flush() override; | 96 void Flush() override; |
97 void Reset() override; | 97 void Reset() override; |
98 void Destroy() override; | 98 void Destroy() override; |
99 bool CanDecodeOnIOThread() override; | 99 bool CanDecodeOnIOThread() override; |
100 | 100 |
| 101 static std::vector<media::VideoDecodeAccelerator::SupportedProfile> |
| 102 GetSupportedProfiles(); |
| 103 |
101 private: | 104 private: |
102 // These are rather subjectively tuned. | 105 // These are rather subjectively tuned. |
103 enum { | 106 enum { |
104 kInputBufferCount = 8, | 107 kInputBufferCount = 8, |
105 // TODO(posciak): determine input buffer size based on level limits. | 108 // TODO(posciak): determine input buffer size based on level limits. |
106 // See http://crbug.com/255116. | 109 // See http://crbug.com/255116. |
107 // Input bitstream buffer size for up to 1080p streams. | 110 // Input bitstream buffer size for up to 1080p streams. |
108 kInputBufferMaxSizeFor1080p = 1024 * 1024, | 111 kInputBufferMaxSizeFor1080p = 1024 * 1024, |
109 // Input bitstream buffer size for up to 4k streams. | 112 // Input bitstream buffer size for up to 4k streams. |
110 kInputBufferMaxSizeFor4k = 4 * kInputBufferMaxSizeFor1080p, | 113 kInputBufferMaxSizeFor4k = 4 * kInputBufferMaxSizeFor1080p, |
(...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
454 | 457 |
455 // The WeakPtrFactory for |weak_this_|. | 458 // The WeakPtrFactory for |weak_this_|. |
456 base::WeakPtrFactory<V4L2VideoDecodeAccelerator> weak_this_factory_; | 459 base::WeakPtrFactory<V4L2VideoDecodeAccelerator> weak_this_factory_; |
457 | 460 |
458 DISALLOW_COPY_AND_ASSIGN(V4L2VideoDecodeAccelerator); | 461 DISALLOW_COPY_AND_ASSIGN(V4L2VideoDecodeAccelerator); |
459 }; | 462 }; |
460 | 463 |
461 } // namespace content | 464 } // namespace content |
462 | 465 |
463 #endif // CONTENT_COMMON_GPU_MEDIA_V4L2_VIDEO_DECODE_ACCELERATOR_H_ | 466 #endif // CONTENT_COMMON_GPU_MEDIA_V4L2_VIDEO_DECODE_ACCELERATOR_H_ |
OLD | NEW |