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

Unified Diff: ppapi/proxy/video_encoder_resource.h

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/resource_creation_proxy.cc ('k') | ppapi/proxy/video_encoder_resource.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/video_encoder_resource.h
diff --git a/ppapi/proxy/video_encoder_resource.h b/ppapi/proxy/video_encoder_resource.h
new file mode 100644
index 0000000000000000000000000000000000000000..585d5c14576585f15e90ac012a461e7aca62d7e0
--- /dev/null
+++ b/ppapi/proxy/video_encoder_resource.h
@@ -0,0 +1,62 @@
+// 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.
+
+#ifndef PPAPI_PROXY_VIDEO_ENCODER_RESOURCE_H_
+#define PPAPI_PROXY_VIDEO_ENCODER_RESOURCE_H_
+
+#include "base/memory/ref_counted.h"
+#include "ppapi/proxy/connection.h"
+#include "ppapi/proxy/plugin_resource.h"
+#include "ppapi/shared_impl/resource.h"
+#include "ppapi/thunk/ppb_video_encoder_api.h"
+
+namespace ppapi {
+
+class TrackedCallback;
+
+namespace proxy {
+
+class PPAPI_PROXY_EXPORT VideoEncoderResource
+ : public PluginResource,
+ public thunk::PPB_VideoEncoder_API {
+ public:
+ VideoEncoderResource(Connection connection, PP_Instance instance);
+ ~VideoEncoderResource() override;
+
+ thunk::PPB_VideoEncoder_API* AsPPB_VideoEncoder_API() override;
+
+ private:
+ // PPB_VideoEncoder_API implementation.
+ int32_t GetSupportedProfiles(
+ const PP_ArrayOutput& output,
+ const scoped_refptr<TrackedCallback>& callback) override;
+ int32_t 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) override;
+ int32_t GetFramesRequired() override;
+ int32_t GetFrameCodedSize(PP_Size* size) override;
+ int32_t GetVideoFrame(
+ PP_Resource* video_frame,
+ const scoped_refptr<TrackedCallback>& callback) override;
+ int32_t Encode(PP_Resource video_frame,
+ PP_Bool force_keyframe,
+ const scoped_refptr<TrackedCallback>& callback) override;
+ int32_t GetBitstreamBuffer(
+ PP_BitstreamBuffer* picture,
+ const scoped_refptr<TrackedCallback>& callback) override;
+ void RecycleBitstreamBuffer(const PP_BitstreamBuffer* picture) override;
+ void RequestEncodingParametersChange(uint32_t bitrate,
+ uint32_t framerate) override;
+ void Close() override;
+
+ DISALLOW_COPY_AND_ASSIGN(VideoEncoderResource);
+};
+
+} // namespace proxy
+} // namespace ppapi
+
+#endif // PPAPI_PROXY_VIDEO_ENCODER_RESOURCE_H_
« no previous file with comments | « ppapi/proxy/resource_creation_proxy.cc ('k') | ppapi/proxy/video_encoder_resource.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698