1
0
mirror of https://github.com/signalwire/freeswitch.git synced 2025-04-21 02:47:01 +00:00

Merge pull request in FS/freeswitch from ~MARCELL-G/freeswitch:bugfix/FS-11236-sync-tag-with-localtag-video-device-streaming to master

* commit '15227e01f27d87ec0657452412d1398373f6899c':
  FS-11236 [verto_communicator] call useCamera property on video constraints
This commit is contained in:
Brian West 2018-07-19 22:44:37 +00:00
commit a577683797

@ -448,10 +448,7 @@
getUserMedia({
constraints: {
audio: false,
video: {
//mandatory: self.options.videoParams,
//optional: []
},
video: { deviceId: params.useCamera },
},
localVideo: self.options.localVideo,
onsuccess: function(e) {self.options.localVideoStream = e; console.log("local video ready");},
@ -501,8 +498,7 @@
getUserMedia({
constraints: {
audio: false,
video: obj.options.videoParams
video: { deviceId: obj.options.useCamera },
},
localVideo: obj.options.localVideo,
onsuccess: function(e) {obj.options.localVideoStream = e; console.log("local video ready");},