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

Unified Diff: ppapi/cpp/dev/video_capture_client_dev.cc

Issue 7528006: C++ wrappers for PPB_VideoCapture_Dev (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 4 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/cpp/dev/video_capture_client_dev.h ('k') | ppapi/cpp/dev/video_capture_dev.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/cpp/dev/video_capture_client_dev.cc
diff --git a/ppapi/cpp/dev/video_capture_client_dev.cc b/ppapi/cpp/dev/video_capture_client_dev.cc
new file mode 100644
index 0000000000000000000000000000000000000000..780c6ec9be8030cdbdf64d9f924e20290b22f5bd
--- /dev/null
+++ b/ppapi/cpp/dev/video_capture_client_dev.cc
@@ -0,0 +1,77 @@
+// Copyright (c) 2011 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/cpp/dev/video_capture_client_dev.h"
+
+#include "ppapi/c/dev/ppp_video_capture_dev.h"
+#include "ppapi/cpp/instance.h"
+#include "ppapi/cpp/module.h"
+
+namespace pp {
+
+namespace {
+
+const char kPPPVideoCaptureInterface[] = PPP_VIDEO_CAPTURE_DEV_INTERFACE;
+
+void OnDeviceInfo(PP_Instance instance,
+ PP_Resource resource,
+ const struct PP_VideoCaptureDeviceInfo_Dev* info,
+ uint32_t buffer_count,
+ const PP_Resource* buffers) {
+ VideoCaptureClient_Dev* client = static_cast<VideoCaptureClient_Dev*>(
+ Instance::GetPerInstanceObject(instance, kPPPVideoCaptureInterface));
brettw 2011/08/08 22:46:31 I'd normally expect client to be checked right aft
piman 2011/08/09 02:44:36 Done.
+
+ std::vector<Buffer_Dev> buffer_list;
+ buffer_list.reserve(buffer_count);
+ for (uint32_t i = 0; i<buffer_count; ++i)
brettw 2011/08/08 22:46:31 Style nit: spaces around <
piman 2011/08/09 02:44:36 Done.
+ buffer_list.push_back(Buffer_Dev(buffers[i]));
+
+ if (client)
+ client->OnDeviceInfo(resource, *info, buffer_list);
+}
+
+void OnStatus(PP_Instance instance, PP_Resource resource, uint32_t status) {
+ VideoCaptureClient_Dev* client = static_cast<VideoCaptureClient_Dev*>(
+ Instance::GetPerInstanceObject(instance, kPPPVideoCaptureInterface));
+ if (client)
+ client->OnStatus(resource, status);
+}
+
+void OnError(PP_Instance instance, PP_Resource resource, uint32_t error_code) {
+ VideoCaptureClient_Dev* client = static_cast<VideoCaptureClient_Dev*>(
+ Instance::GetPerInstanceObject(instance, kPPPVideoCaptureInterface));
+ if (client)
+ client->OnError(resource, error_code);
+}
+
+void OnBufferReady(PP_Instance instance,
+ PP_Resource resource,
+ uint32_t buffer) {
+ VideoCaptureClient_Dev* client = static_cast<VideoCaptureClient_Dev*>(
+ Instance::GetPerInstanceObject(instance, kPPPVideoCaptureInterface));
+ if (client)
+ client->OnBufferReady(resource, buffer);
+}
+
+PPP_VideoCapture_Dev ppp_video_capture = {
+ OnDeviceInfo,
+ OnStatus,
+ OnError,
+ OnBufferReady
+};
+
+} // namespace
+
+VideoCaptureClient_Dev::VideoCaptureClient_Dev(Instance* instance)
+ : instance_(instance) {
+ pp::Module::Get()->AddPluginInterface(kPPPVideoCaptureInterface,
+ &ppp_video_capture);
+ instance_->AddPerInstanceObject(kPPPVideoCaptureInterface, this);
+}
+
+VideoCaptureClient_Dev::~VideoCaptureClient_Dev() {
+ instance_->RemovePerInstanceObject(kPPPVideoCaptureInterface, this);
+}
+
+} // namespace pp
« no previous file with comments | « ppapi/cpp/dev/video_capture_client_dev.h ('k') | ppapi/cpp/dev/video_capture_dev.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698