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

Unified Diff: ppapi/proxy/video_encoder_resource.cc

Issue 887223009: ppapi: VideoEncoder: Add proxy boilerplate (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update after bbudge's review 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/proxy/video_encoder_resource.h ('k') | ppapi/shared_impl/resource.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/video_encoder_resource.cc
diff --git a/ppapi/proxy/video_encoder_resource.cc b/ppapi/proxy/video_encoder_resource.cc
new file mode 100644
index 0000000000000000000000000000000000000000..5d7913d71c985b6204d1e32af23f9792e7585116
--- /dev/null
+++ b/ppapi/proxy/video_encoder_resource.cc
@@ -0,0 +1,79 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "ppapi/proxy/video_encoder_resource.h"
+
+using ppapi::thunk::PPB_VideoEncoder_API;
+
+namespace ppapi {
+namespace proxy {
+
+VideoEncoderResource::VideoEncoderResource(Connection connection,
+ PP_Instance instance)
+ : PluginResource(connection, instance) {
+}
+
+VideoEncoderResource::~VideoEncoderResource() {
+}
+
+PPB_VideoEncoder_API* VideoEncoderResource::AsPPB_VideoEncoder_API() {
+ return this;
+}
+
+int32_t VideoEncoderResource::GetSupportedProfiles(
+ const PP_ArrayOutput& output,
+ const scoped_refptr<TrackedCallback>& callback) {
+ return PP_ERROR_FAILED;
+}
+
+int32_t VideoEncoderResource::Initialize(
+ PP_VideoFrame_Format input_format,
+ const PP_Size* input_visible_size,
+ PP_VideoProfile output_profile,
+ uint32_t initial_bitrate,
+ PP_HardwareAcceleration acceleration,
+ const scoped_refptr<TrackedCallback>& callback) {
+ return PP_ERROR_FAILED;
+}
+
+int32_t VideoEncoderResource::GetFramesRequired() {
+ return PP_ERROR_FAILED;
+}
+
+int32_t VideoEncoderResource::GetFrameCodedSize(PP_Size* size) {
+ return PP_ERROR_FAILED;
+}
+
+int32_t VideoEncoderResource::GetVideoFrame(
+ PP_Resource* video_frame,
+ const scoped_refptr<TrackedCallback>& callback) {
+ return PP_ERROR_FAILED;
+}
+
+int32_t VideoEncoderResource::Encode(
+ PP_Resource video_frame,
+ PP_Bool force_keyframe,
+ const scoped_refptr<TrackedCallback>& callback) {
+ return PP_ERROR_FAILED;
+}
+
+int32_t VideoEncoderResource::GetBitstreamBuffer(
+ PP_BitstreamBuffer* picture,
+ const scoped_refptr<TrackedCallback>& callback) {
+ return PP_ERROR_FAILED;
+}
+
+void VideoEncoderResource::RecycleBitstreamBuffer(
+ const PP_BitstreamBuffer* picture) {
+}
+
+void VideoEncoderResource::RequestEncodingParametersChange(uint32_t bitrate,
+ uint32_t framerate) {
+}
+
+void VideoEncoderResource::Close() {
+}
+
+} // namespace proxy
+} // namespace ppapi
« no previous file with comments | « ppapi/proxy/video_encoder_resource.h ('k') | ppapi/shared_impl/resource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698