Skip to content
Snippets Groups Projects
Commit 8c3ce89f authored by Sami Spets's avatar Sami Spets
Browse files

Changed the subscribe rate back from 6 to 0

parent 1908d685
No related branches found
No related tags found
No related merge requests found
Pipeline #16947 passed
......@@ -88,8 +88,6 @@ VideoPlayer.prototype._display_image = function(image) {
};
VideoPlayer.prototype._handle_onload = function(peer, decodedURI, uri) {
var that = this;
this._set_status("initializing");
......
......@@ -126,7 +126,7 @@ RGBDStream.prototype.subscribe = function() {
//console.log("Subscribe to ", this.uri);
// TODO: Don't hard code 9 here, instead use 9 for thumbnails and 0 for
// the video...
this.peer.send("get_stream", this.uri, 10, 3, [Peer.uuid], this.uri);
this.peer.send("get_stream", this.uri, 10, 0, [Peer.uuid], this.uri);
}
RGBDStream.prototype.pushFrames = function(latency, spacket, packet) {
......
......@@ -280,9 +280,6 @@ Peer.prototype.on = function(evt, f) {
* Returns a UUID in a string form
*/
Peer.prototype.getUuid = function() {
const digits = "0123456789abcdef";
let uuid = "";
return cpp_my_uuid;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment