Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(399)

Side by Side Diff: ppapi/cpp/video_encoder.h

Issue 859313002: Pepper: Define PPB_VideoEncoder API + Implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ppapi/c/ppb_video_encoder.h ('k') | ppapi/cpp/video_encoder.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef PPAPI_CPP_VIDEO_ENCODER_H_
6 #define PPAPI_CPP_VIDEO_ENCODER_H_
7
8 #include "ppapi/c/pp_codecs.h"
9 #include "ppapi/c/pp_size.h"
10 #include "ppapi/cpp/completion_callback.h"
11 #include "ppapi/cpp/resource.h"
12 #include "ppapi/cpp/size.h"
13 #include "ppapi/cpp/video_frame.h"
14
15 /// @file
16 /// This file defines the API to create and use a VideoEncoder resource.
17
18 namespace pp {
19
20 class InstanceHandle;
21
22 /// Video encoder interface.
23 ///
24 /// Typical usage:
25 /// - Call Create() to create a new video encoder resource.
26 /// - Call GetSupportedFormats() to determine which codecs and profiles are
27 /// available.
28 /// - Call Initialize() to initialize the encoder for a supported profile.
29 /// - Call GetVideoFrame() to get a blank frame and fill it in, or get a video
30 /// frame from another resource, e.g. <code>PPB_MediaStreamVideoTrack</code>.
31 /// - Call Encode() to push the video frame to the encoder. If an external frame
32 /// is pushed, wait for completion to recycle the frame.
33 /// - Call GetBitstreamBuffer() continuously (waiting for each previous call to
34 /// complete) to pull encoded pictures from the encoder.
35 /// - Call RecycleBitstreamBuffer() after consuming the data in the bitstream
36 /// buffer.
37 /// - To destroy the encoder, the plugin should release all of its references to
38 /// it. Any pending callbacks will abort before the encoder is destroyed.
39 ///
40 /// Available video codecs vary by platform.
41 /// All: theora, vorbis, vp8.
42 /// Chrome and ChromeOS: h264.
43 /// ChromeOS: mpeg4.
44 class VideoEncoder : public Resource {
45 public:
46 /// Default constructor for creating an is_null() <code>VideoEncoder</code>
47 /// object.
48 VideoEncoder();
49
50 /// A constructor used to create a <code>VideoEncoder</code> and associate it
51 /// with the provided <code>Instance</code>.
52 /// @param[in] instance The instance with which this resource will be
53 /// associated.
54 explicit VideoEncoder(const InstanceHandle& instance);
55
56 /// The copy constructor for <code>VideoEncoder</code>.
57 /// @param[in] other A reference to a <code>VideoEncoder</code>.
58 VideoEncoder(const VideoEncoder& other);
59
60 /// Gets an array of supported video encoder profiles.
61 /// These can be used to choose a profile before calling Initialize().
62 ///
63 /// @param[in] callback A <code>CompletionCallbackWithOutput</code> to be
64 /// called upon completion with the PP_SupportedVideoProfile structs.
65 ///
66 /// @return If >= 0, the number of supported profiles returned, otherwise an
67 /// error code from <code>pp_errors.h</code>.
68 int32_t GetSupportedProfiles(const CompletionCallbackWithOutput<
69 std::vector<PP_SupportedVideoProfile>>& cc);
70
71 /// Initializes a video encoder resource. This should be called after
72 /// GetSupportedProfiles() and before any functions below.
73 ///
74 /// @param[in] input_format The <code>PP_VideoFrame_Format</code> of the
75 /// frames which will be encoded.
76 /// @param[in] input_visible_size A <code>Size</code> specifying the
77 /// dimensions of the visible part of the input frames.
78 /// @param[in] output_profile A <code>PP_VideoProfile</code> specifying the
79 /// codec profile of the encoded output stream.
80 /// @param[in] acceleration A <code>PP_HardwareAcceleration</code> specifying
81 /// whether to use a hardware accelerated or a software implementation.
82 /// @param[in] callback A <code>CompletionCallback</code> to be called upon
83 /// completion.
84 ///
85 /// @return An int32_t containing an error code from <code>pp_errors.h</code>.
86 /// Returns PP_ERROR_NOTSUPPORTED if video encoding is not available, or the
87 /// requested codec profile is not supported.
88 /// Returns PP_ERROR_NOMEMORY if frame and bitstream buffers can't be created.
89 int32_t Initialize(const PP_VideoFrame_Format& input_format,
90 const Size& input_visible_size,
91 const PP_VideoProfile& output_profile,
92 const uint32_t initial_bitrate,
93 PP_HardwareAcceleration acceleration,
94 const CompletionCallback& cc);
95
96 /// Gets the number of input video frames that the encoder may hold while
97 /// encoding. If the plugin is providing the video frames, it should have at
98 /// least this many available.
99 ///
100 /// @return An int32_t containing the number of frames required, or an error
101 /// code from <code>pp_errors.h</code>.
102 /// Returns PP_ERROR_FAILED if Initialize() has not successfully completed.
103 int32_t GetFramesRequired();
104
105 /// Gets the coded size of the video frames required by the encoder. Coded
106 /// size is the logical size of the input frames, in pixels. The encoder may
107 /// have hardware alignment requirements that make this different from
108 /// |input_visible_size|, as requested in the call to Initialize().
109 ///
110 /// @param[in] video_encoder A <code>PP_Resource</code> identifying the video
111 /// encoder.
112 /// @param[in] coded_size A <code>PP_Size</code> to hold the coded size.
113 ///
114 /// @return An int32_t containing a result code from <code>pp_errors.h</code>.
115 /// Returns PP_ERROR_FAILED if Initialize() has not successfully completed.
116 int32_t GetFrameCodedSize(Size* coded_size);
117
118 /// Gets a blank video frame which can be filled with video data and passed
119 /// to the encoder.
120 ///
121 /// @param[in] callback A <code>CompletionCallbackWithOutput</code> to be
122 /// called upon completion with the blank <code>VideoFrame</code> resource.
123 ///
124 /// @return An int32_t containing an error code from <code>pp_errors.h</code>.
125 int32_t GetVideoFrame(const CompletionCallbackWithOutput<VideoFrame>& cc);
126
127 /// Encodes a video frame.
128 ///
129 /// @param[in] video_frame The <code>VideoFrame</code> to be encoded.
130 /// @param[in] force_keyframe A <code>PP_Bool> specifying whether the encoder
131 /// should emit a key frame for this video frame.
132 /// @param[in] callback A <code>CompletionCallback</code> to be called upon
133 /// completion. Plugins that pass <code>VideoFrame</code> resources owned
134 /// by other resources should wait for completion before reusing them.
135 ///
136 /// @return An int32_t containing an error code from <code>pp_errors.h</code>.
137 /// Returns PP_ERROR_FAILED if Initialize() has not successfully completed.
138 int32_t Encode(const VideoFrame& video_frame,
139 bool force_keyframe,
140 const CompletionCallback& cc);
141
142 /// Gets the next encoded bitstream buffer from the encoder.
143 ///
144 /// @param[out] bitstream_buffer A <code>PP_BitstreamBuffer</code> containing
145 /// encoded video data.
146 /// @param[in] callback A <code>CompletionCallbackWithOutput</code> to be
147 /// called upon completion with the next bitstream buffer. The plugin can call
148 /// GetBitstreamBuffer from the callback in order to continuously "pull"
149 /// bitstream buffers from the encoder.
150 ///
151 /// @return An int32_t containing an error code from <code>pp_errors.h</code>.
152 /// Returns PP_ERROR_FAILED if Initialize() has not successfully completed.
153 /// Returns PP_ERROR_INPROGRESS if a prior call to GetBitstreamBuffer() has
154 /// not completed.
155 int32_t GetBitstreamBuffer(
156 const CompletionCallbackWithOutput<PP_BitstreamBuffer>& cc);
157
158 /// Recycles a bitstream buffer back to the encoder.
159 ///
160 /// @param[in] bitstream_buffer A <code>PP_BitstreamBuffer</code> that is no
161 /// longer needed by the plugin.
162 void RecycleBitstreamBuffer(const PP_BitstreamBuffer& bitstream_buffer);
163
164 /// Requests a change to encoding parameters. This is only a request,
165 /// fulfilled on a best-effort basis.
166 ///
167 /// @param[in] bitrate The requested new bitrate, in bits per second.
168 /// @param[in] framerate The requested new framerate, in frames per second.
169 void RequestEncodingParametersChange(uint32_t bitrate, uint32_t framerate);
170 };
171
172 } // namespace pp
173
174 #endif // PPAPI_CPP_VIDEO_ENCODER_H_
OLDNEW
« no previous file with comments | « ppapi/c/ppb_video_encoder.h ('k') | ppapi/cpp/video_encoder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698