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

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

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