add yet another workaround in the xmpp-parsers fork for @name in ssma
This seems to be yet another proprietary extension, jicofo sets it to either name='jvb-a0' or name='jvb-v0' depending on whether it is an audio or a video content. I’m tired of these meaningless extensions…
This commit is contained in:
parent
9250084436
commit
d5c7662c1d
|
@ -10,6 +10,9 @@ generate_element!(
|
||||||
attributes: [
|
attributes: [
|
||||||
/// Maps to the ssrc-id parameter.
|
/// Maps to the ssrc-id parameter.
|
||||||
id: Required<String> = "ssrc",
|
id: Required<String> = "ssrc",
|
||||||
|
|
||||||
|
/// XXX: wtf is that? It can be either name='jvb-a0' or name='jvb-v0' at avstack’s jicofo.
|
||||||
|
name: Option<String> = "name",
|
||||||
],
|
],
|
||||||
children: [
|
children: [
|
||||||
/// List of attributes for this source.
|
/// List of attributes for this source.
|
||||||
|
@ -27,6 +30,7 @@ impl Source {
|
||||||
id,
|
id,
|
||||||
parameters: Vec::new(),
|
parameters: Vec::new(),
|
||||||
info: None,
|
info: None,
|
||||||
|
name: None,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue