mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-22 19:41:00 +00:00
webrtc: janus: remove 'audio' and 'video' from publish messages
Those are deprecated and no longer used. See https://janus.conf.meetecho.com/docs/videoroom and https://github.com/meetecho/janus-gateway/blob/master/src/plugins/janus_videoroom.c#L9894 Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1480>
This commit is contained in:
parent
ec17c58dee
commit
0829898d73
1 changed files with 0 additions and 4 deletions
|
@ -96,8 +96,6 @@ struct RoomRequestMsg {
|
||||||
#[derive(Serialize, Deserialize, Debug, PartialEq, Eq)]
|
#[derive(Serialize, Deserialize, Debug, PartialEq, Eq)]
|
||||||
struct PublishBody {
|
struct PublishBody {
|
||||||
request: String,
|
request: String,
|
||||||
audio: bool,
|
|
||||||
video: bool,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug, PartialEq, Eq)]
|
#[derive(Serialize, Deserialize, Debug, PartialEq, Eq)]
|
||||||
|
@ -651,8 +649,6 @@ impl Signaller {
|
||||||
apisecret,
|
apisecret,
|
||||||
body: PublishBody {
|
body: PublishBody {
|
||||||
request: "publish".to_string(),
|
request: "publish".to_string(),
|
||||||
audio: true,
|
|
||||||
video: true,
|
|
||||||
},
|
},
|
||||||
jsep: Jsep {
|
jsep: Jsep {
|
||||||
sdp: sdp_data,
|
sdp: sdp_data,
|
||||||
|
|
Loading…
Reference in a new issue