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

Unified Diff: examples/unityplugin/unity_plugin_apis.h

Issue 3013733002: WebRTC Unity Plugin Rebase
Patch Set: Minor Change Created 3 years, 3 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
Index: examples/unityplugin/unity_plugin_apis.h
diff --git a/examples/unityplugin/unity_plugin_apis.h b/examples/unityplugin/unity_plugin_apis.h
index 814b9675fb2e3fa75694a1aba026252312dd23e8..da16ac8c3beec4a5be63723c28a16eee5f98f432 100644
--- a/examples/unityplugin/unity_plugin_apis.h
+++ b/examples/unityplugin/unity_plugin_apis.h
@@ -19,9 +19,11 @@
typedef void (*I420FRAMEREADY_CALLBACK)(const uint8_t* data_y,
const uint8_t* data_u,
const uint8_t* data_v,
+ const uint8_t* data_a,
GeorgeZ 2017/09/19 08:21:20 I am not sure whether it makes sense to commit thi
qiangchen 2017/09/19 17:57:45 I just want to make the plugin work well with our
int stride_y,
int stride_u,
int stride_v,
+ int stride_a,
uint32_t width,
uint32_t height);
typedef void (*LOCALDATACHANNELREADY_CALLBACK)();

Powered by Google App Engine
This is Rietveld 408576698