Renames SimulcastLayer to SimulcastStream.

smack4
George Politis 11 years ago
parent 6b2be3be61
commit 075ad10a9c

@ -631,7 +631,7 @@ public static class Channel
* Videobridge to the endpoint associated with this video
* <tt>Channel</tt>.
*/
private Integer receivingSimulcastLayer;
private Integer receivingSimulcastStream;
/**
* The RTCP port of the <tt>channel</tt> represented by this instance.
@ -929,9 +929,9 @@ public Collection<RTPHdrExtPacketExtension> getRtpHeaderExtensions()
* from Jitsi Videobridge to the endpoint associated with this video
* <tt>Channel</tt>.
*/
public Integer getReceivingSimulcastLayer()
public Integer getReceivingSimulcastStream()
{
return receivingSimulcastLayer;
return receivingSimulcastStream;
}
/**
@ -1327,13 +1327,13 @@ public void setSimulcastMode(SimulcastMode simulcastMode)
* Jitsi Videobridge to the endpoint associated with this video
* <tt>Channel</tt>.
*
* @param simulcastLayer the target quality of the simulcast substreams
* @param simulcastStream the target quality of the simulcast substreams
* to be sent from Jitsi Videobridge to the endpoint associated with
* this video <tt>Channel</tt>.
*/
public void setReceivingSimulcastLayer(Integer simulcastLayer)
public void setReceivingSimulcastStream(Integer simulcastStream)
{
this.receivingSimulcastLayer = simulcastLayer;
this.receivingSimulcastStream = simulcastStream;
}
/**

@ -476,16 +476,16 @@ else if (ColibriConferenceIQ.GracefulShutdown.ELEMENT_NAME
SimulcastMode.fromString(simulcastMode));
// receiving simulcast layer
String receivingSimulcastLayer
String receivingSimulcastStream
= parser.getAttributeValue(
"",
ColibriConferenceIQ.Channel
.RECEIVING_SIMULCAST_LAYER);
if ((receivingSimulcastLayer != null)
&& (receivingSimulcastLayer.length() != 0))
channel.setReceivingSimulcastLayer(
Integer.parseInt(receivingSimulcastLayer));
if ((receivingSimulcastStream != null)
&& (receivingSimulcastStream.length() != 0))
channel.setReceivingSimulcastStream(
Integer.parseInt(receivingSimulcastStream));
// rtcpPort
String rtcpPort

Loading…
Cancel
Save