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

Unified Diff: ppapi/proxy/resource_creation_proxy.cc

Issue 10408003: Plumb extra_data() to VideoDecodeAccelerator (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rev interface versino Created 8 years, 7 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.h ('k') | ppapi/thunk/interfaces_ppb_public_dev.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/resource_creation_proxy.cc
diff --git a/ppapi/proxy/resource_creation_proxy.cc b/ppapi/proxy/resource_creation_proxy.cc
index de5373548ef34f78e19163cc8cc2d034a43ebd7e..368a6b866e4e967a1784cba92660412c0d4c425d 100644
--- a/ppapi/proxy/resource_creation_proxy.cc
+++ b/ppapi/proxy/resource_creation_proxy.cc
@@ -338,9 +338,12 @@ PP_Resource ResourceCreationProxy::CreateVideoCapture(PP_Instance instance) {
PP_Resource ResourceCreationProxy::CreateVideoDecoder(
PP_Instance instance,
PP_Resource context3d_id,
- PP_VideoDecoder_Profile profile) {
- return PPB_VideoDecoder_Proxy::CreateProxyResource(
- instance, context3d_id, profile);
+ PP_VideoDecoder_Profile profile,
+ const PP_Size& frame_size,
+ const uint8_t* extra_data,
+ uint32_t extra_data_size) {
+ return PPB_VideoDecoder_Proxy::CreateProxyResource(instance, context3d_id,
+ profile, frame_size, extra_data, extra_data_size);
}
PP_Resource ResourceCreationProxy::CreateVideoLayer(
« no previous file with comments | « ppapi/proxy/resource_creation_proxy.h ('k') | ppapi/thunk/interfaces_ppb_public_dev.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698