Add ringrtc support.

RingRTC provides Signal Messenger applications with a common interface
for video and voice calling services built on top of WebRTC.
This commit is contained in:
Curt Brune
2019-10-15 10:29:05 -07:00
committed by Greyson Parrelli
parent adc0907906
commit 03cbee0277
14 changed files with 766 additions and 3175 deletions

View File

@@ -1,3 +1,3 @@
all:
protoc --java_out=../src/ WebRtcData.proto Backups.proto DeviceName.proto
protoc --java_out=../src/ Backups.proto DeviceName.proto

View File

@@ -1,31 +0,0 @@
/**
* Copyright (C) 2014-2016 Open Whisper Systems
*
* Licensed according to the LICENSE file in this repository.
*/
package signal;
option java_package = "org.thoughtcrime.securesms.webrtc";
option java_outer_classname = "WebRtcDataProtos";
message Connected {
optional uint64 id = 1;
}
message Hangup {
optional uint64 id = 1;
}
message VideoStreamingStatus {
optional uint64 id = 1;
optional bool enabled = 2;
}
message Data {
optional Connected connected = 1;
optional Hangup hangup = 2;
optional VideoStreamingStatus videoStreamingStatus = 3;
}