Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / native_client_sdk / src / examples / api / media_stream_video / example.js
index dfd3eb9..5195ddf 100644 (file)
@@ -6,13 +6,45 @@ 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) {
   common.logMessage("Error: " + e);
 }
 
+function changeFormat(format) {
+  common.naclModule.postMessage({command:'format', format: format});
+}
+
+function changeSize(width, height) {
+  common.naclModule.postMessage({command:'size', width: width, height: height});
+}
+
 function moduleDidLoad() {
   navigator.webkitGetUserMedia({'video': true}, success, failure);
 }
+
+function attachListeners() {
+  document.getElementById('YV12').addEventListener(
+      'click', function() { changeFormat('YV12'); });
+  document.getElementById('I420').addEventListener(
+      'click', function() { changeFormat('I420'); });
+  document.getElementById('BGRA').addEventListener(
+      'click', function() { changeFormat('BGRA'); });
+  document.getElementById('DEFAULT').addEventListener(
+      'click', function() { changeFormat('DEFAULT'); });
+
+  document.getElementById('S72X72').addEventListener(
+      'click', function() { changeSize(72, 72); });
+  document.getElementById('S640X360').addEventListener(
+      'click', function() { changeSize(640, 360); });
+  document.getElementById('S1280X720').addEventListener(
+      'click', function() { changeSize(1280, 720); });
+  document.getElementById('SDEFAULT').addEventListener(
+      'click', function() { changeSize(0, 0); });
+
+}