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

Unified Diff: native_client_sdk/src/examples/api/media_stream_video/example.js

Issue 212533007: Sync NaCl MediaStream Video example with ppapi/examples/media_stream_video (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update Created 6 years, 9 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: native_client_sdk/src/examples/api/media_stream_video/example.js
diff --git a/native_client_sdk/src/examples/api/media_stream_video/example.js b/native_client_sdk/src/examples/api/media_stream_video/example.js
index dfd3eb9e4368f0dff6343528a511bb46f74a8d5a..89059d538a0662af18b7ecf5a086619d8a8be82e 100644
--- a/native_client_sdk/src/examples/api/media_stream_video/example.js
+++ b/native_client_sdk/src/examples/api/media_stream_video/example.js
@@ -6,7 +6,10 @@ var stream;
function success(s) {
stream = s;
- common.naclModule.postMessage({track: stream.getVideoTracks()[0]});
+ common.naclModule.postMessage({
+ command: 'init',
+ track: stream.getVideoTracks()[0]
+ });
}
function failure(e) {
@@ -16,3 +19,12 @@ function failure(e) {
function moduleDidLoad() {
navigator.webkitGetUserMedia({'video': true}, success, failure);
}
+
+function changeFormat(format) {
+ common.naclModule.postMessage({command:'format', format: format});
+}
+
+function changeSize(width, height) {
+ common.naclModule.postMessage({command:'size', width: width, height: height});
+}
+

Powered by Google App Engine
This is Rietveld 408576698