OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #ifndef CONTENT_COMMON_GPU_MEDIA_ANDROID_VIDEO_ENCODE_ACCELERATOR_H_ | 5 #ifndef CONTENT_COMMON_GPU_MEDIA_ANDROID_VIDEO_ENCODE_ACCELERATOR_H_ |
6 #define CONTENT_COMMON_GPU_MEDIA_ANDROID_VIDEO_ENCODE_ACCELERATOR_H_ | 6 #define CONTENT_COMMON_GPU_MEDIA_ANDROID_VIDEO_ENCODE_ACCELERATOR_H_ |
7 | 7 |
8 #include <list> | 8 #include <list> |
9 #include <queue> | 9 #include <queue> |
10 #include <vector> | 10 #include <vector> |
(...skipping 17 matching lines...) Expand all Loading... |
28 // (http://developer.android.com/reference/android/media/MediaCodec.html). This | 28 // (http://developer.android.com/reference/android/media/MediaCodec.html). This |
29 // class expects to live and be called on a single thread (the GPU process' | 29 // class expects to live and be called on a single thread (the GPU process' |
30 // ChildThread). | 30 // ChildThread). |
31 class CONTENT_EXPORT AndroidVideoEncodeAccelerator | 31 class CONTENT_EXPORT AndroidVideoEncodeAccelerator |
32 : public media::VideoEncodeAccelerator { | 32 : public media::VideoEncodeAccelerator { |
33 public: | 33 public: |
34 AndroidVideoEncodeAccelerator(); | 34 AndroidVideoEncodeAccelerator(); |
35 ~AndroidVideoEncodeAccelerator() override; | 35 ~AndroidVideoEncodeAccelerator() override; |
36 | 36 |
37 // media::VideoEncodeAccelerator implementation. | 37 // media::VideoEncodeAccelerator implementation. |
38 std::vector<media::VideoEncodeAccelerator::SupportedProfile> | 38 media::VideoEncodeAccelerator::SupportedProfiles GetSupportedProfiles() |
39 GetSupportedProfiles() override; | 39 override; |
40 bool Initialize(media::VideoFrame::Format format, | 40 bool Initialize(media::VideoFrame::Format format, |
41 const gfx::Size& input_visible_size, | 41 const gfx::Size& input_visible_size, |
42 media::VideoCodecProfile output_profile, | 42 media::VideoCodecProfile output_profile, |
43 uint32 initial_bitrate, | 43 uint32 initial_bitrate, |
44 Client* client) override; | 44 Client* client) override; |
45 void Encode(const scoped_refptr<media::VideoFrame>& frame, | 45 void Encode(const scoped_refptr<media::VideoFrame>& frame, |
46 bool force_keyframe) override; | 46 bool force_keyframe) override; |
47 void UseOutputBitstreamBuffer(const media::BitstreamBuffer& buffer) override; | 47 void UseOutputBitstreamBuffer(const media::BitstreamBuffer& buffer) override; |
48 void RequestEncodingParametersChange(uint32 bitrate, | 48 void RequestEncodingParametersChange(uint32 bitrate, |
49 uint32 framerate) override; | 49 uint32 framerate) override; |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 size_t output_buffers_capacity_; // 0 until RequireBitstreamBuffers. | 104 size_t output_buffers_capacity_; // 0 until RequireBitstreamBuffers. |
105 | 105 |
106 uint32 last_set_bitrate_; // In bps. | 106 uint32 last_set_bitrate_; // In bps. |
107 | 107 |
108 DISALLOW_COPY_AND_ASSIGN(AndroidVideoEncodeAccelerator); | 108 DISALLOW_COPY_AND_ASSIGN(AndroidVideoEncodeAccelerator); |
109 }; | 109 }; |
110 | 110 |
111 } // namespace content | 111 } // namespace content |
112 | 112 |
113 #endif // CONTENT_COMMON_GPU_MEDIA_ANDROID_VIDEO_ENCODE_ACCELERATOR_H_ | 113 #endif // CONTENT_COMMON_GPU_MEDIA_ANDROID_VIDEO_ENCODE_ACCELERATOR_H_ |
OLD | NEW |