mirror of
https://github.com/nextcloud/talk-android
synced 2025-06-20 03:59:35 +01:00
Fix up some things
Signed-off-by: Mario Danic <mario@lovelyhq.com>
This commit is contained in:
parent
e2a695d361
commit
2a84ae003f
@ -218,8 +218,6 @@ public class CallActivity extends AppCompatActivity {
|
|||||||
// And finally, with our VideoRenderer ready, we
|
// And finally, with our VideoRenderer ready, we
|
||||||
// can add our renderer to the VideoTrack.
|
// can add our renderer to the VideoTrack.
|
||||||
localVideoTrack.addRenderer(localRenderer);
|
localVideoTrack.addRenderer(localRenderer);
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -291,7 +289,7 @@ public class CallActivity extends AppCompatActivity {
|
|||||||
localPeer.setRemoteDescription(new MagicSdpObserver(), sessionDescription);
|
localPeer.setRemoteDescription(new MagicSdpObserver(), sessionDescription);
|
||||||
|
|
||||||
}
|
}
|
||||||
}, new MediaConstraints());
|
}, sdpConstraints);
|
||||||
}
|
}
|
||||||
}, sdpConstraints);
|
}, sdpConstraints);
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,39 @@
|
|||||||
|
/*
|
||||||
|
* Nextcloud Talk application
|
||||||
|
*
|
||||||
|
* @author Mario Danic
|
||||||
|
* Copyright (C) 2017 Mario Danic <mario@lovelyhq.com>
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package com.nextcloud.talk.api.models.json.signaling;
|
||||||
|
|
||||||
|
import com.bluelinelabs.logansquare.annotation.JsonField;
|
||||||
|
import com.bluelinelabs.logansquare.annotation.JsonObject;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
@JsonObject
|
||||||
|
public class NCIceCandidate {
|
||||||
|
@JsonField(name = "sdpMLineIndex")
|
||||||
|
String sdpMLineIndex;
|
||||||
|
|
||||||
|
@JsonField(name = "sdpMid")
|
||||||
|
String sdpMid;
|
||||||
|
|
||||||
|
@JsonField(name = "candidate")
|
||||||
|
String candidate;
|
||||||
|
}
|
@ -0,0 +1,42 @@
|
|||||||
|
/*
|
||||||
|
* Nextcloud Talk application
|
||||||
|
*
|
||||||
|
* @author Mario Danic
|
||||||
|
* Copyright (C) 2017 Mario Danic <mario@lovelyhq.com>
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package com.nextcloud.talk.api.models.json.signaling;
|
||||||
|
|
||||||
|
import com.bluelinelabs.logansquare.annotation.JsonField;
|
||||||
|
import com.bluelinelabs.logansquare.annotation.JsonObject;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
@JsonObject
|
||||||
|
public class NCMessagePayload {
|
||||||
|
@JsonField(name = "type")
|
||||||
|
String type;
|
||||||
|
|
||||||
|
@JsonField(name = "sdp")
|
||||||
|
String sdp;
|
||||||
|
|
||||||
|
@JsonField(name = "nick")
|
||||||
|
String nick;
|
||||||
|
|
||||||
|
@JsonField(name = "candidate")
|
||||||
|
NCIceCandidate iceCandidate;
|
||||||
|
}
|
@ -0,0 +1,40 @@
|
|||||||
|
/*
|
||||||
|
* Nextcloud Talk application
|
||||||
|
*
|
||||||
|
* @author Mario Danic
|
||||||
|
* Copyright (C) 2017 Mario Danic <mario@lovelyhq.com>
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package com.nextcloud.talk.api.models.json.signaling;
|
||||||
|
|
||||||
|
import com.bluelinelabs.logansquare.annotation.JsonField;
|
||||||
|
import com.bluelinelabs.logansquare.annotation.JsonObject;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
@JsonObject
|
||||||
|
public class NCMessageWrapper {
|
||||||
|
@JsonField(name = "fn")
|
||||||
|
NCSignalingMessage signalingMessage;
|
||||||
|
|
||||||
|
// always a "message"
|
||||||
|
@JsonField(name = "ev")
|
||||||
|
String ev;
|
||||||
|
|
||||||
|
@JsonField(name = "sessionId")
|
||||||
|
String sessionId;
|
||||||
|
}
|
@ -23,8 +23,6 @@ package com.nextcloud.talk.api.models.json.signaling;
|
|||||||
import com.bluelinelabs.logansquare.annotation.JsonField;
|
import com.bluelinelabs.logansquare.annotation.JsonField;
|
||||||
import com.bluelinelabs.logansquare.annotation.JsonObject;
|
import com.bluelinelabs.logansquare.annotation.JsonObject;
|
||||||
|
|
||||||
import java.util.HashMap;
|
|
||||||
|
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
|
||||||
@Data
|
@Data
|
||||||
@ -34,12 +32,11 @@ public class NCSignalingMessage {
|
|||||||
String from;
|
String from;
|
||||||
@JsonField(name = "to")
|
@JsonField(name = "to")
|
||||||
String to;
|
String to;
|
||||||
@JsonField(name = "sid")
|
|
||||||
String sid;
|
|
||||||
@JsonField(name = "type")
|
@JsonField(name = "type")
|
||||||
String type;
|
String type;
|
||||||
@JsonField(name = "payload")
|
@JsonField(name = "payload")
|
||||||
HashMap<String, Object> payload;
|
NCMessagePayload payload;
|
||||||
@JsonField(name = "roomType")
|
@JsonField(name = "roomType")
|
||||||
String roomType;
|
String roomType;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -62,7 +62,6 @@ public class MagicPeerConnectionObserver implements PeerConnection.Observer {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onAddStream(MediaStream mediaStream) {
|
public void onAddStream(MediaStream mediaStream) {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
Loading…
Reference in New Issue
Block a user