Commit d7af3afc authored by Dele Olajide's avatar Dele Olajide

Jitsi Videobridge Plugin - Refresh with Jitsi Github

parent 5aa89d3e
Some of the files here, notably libjitsi.jar, are OSGi bundles from the Jitsi Some of the files here, notably libjitsi.jar, are OSGi bundles from the Jitsi
project. In Jitsi they are generated in the 'sc-bundles' directory by the project. In Jitsi they are generated in the 'sc-bundles' directory by the
'bundles' ant target. To update the files here, run 'ant rebuild' in Jitsi and 'bundles' ant target. To update the files here, run 'ant rebuild' in Jitsi and
then copy the files, e.g.: then copy the files here, e.g.:
for i in *; do
if [ -e ../../jitsi/sc-bundles/$i ]; then for f in *.jar; do
cp ../../jitsi/sc-bundles/$i .; if [ -e ../../jitsi/sc-bundles/$f ]; then
fi; cp ../../jitsi/sc-bundles/$f .;
fi;
done done
...@@ -56,6 +56,7 @@ import org.eclipse.jetty.security.*; ...@@ -56,6 +56,7 @@ import org.eclipse.jetty.security.*;
import org.eclipse.jetty.security.authentication.*; import org.eclipse.jetty.security.authentication.*;
import org.dom4j.*; import org.dom4j.*;
import org.jitsi.videobridge.xmpp.*;
import org.jitsi.videobridge.*; import org.jitsi.videobridge.*;
import org.jitsi.impl.neomedia.*; import org.jitsi.impl.neomedia.*;
import org.jitsi.impl.neomedia.format.*; import org.jitsi.impl.neomedia.format.*;
...@@ -1518,7 +1519,7 @@ public class PluginImpl implements Plugin, PropertyEventListener ...@@ -1518,7 +1519,7 @@ public class PluginImpl implements Plugin, PropertyEventListener
if (vbContent != null) if (vbContent != null)
{ {
Channel videoChannel = vbContent.getChannel(participant.videoChannelId); RtpChannel videoChannel = (RtpChannel) vbContent.getChannel(participant.videoChannelId);
if (videoChannel != null) if (videoChannel != null)
{ {
...@@ -1536,7 +1537,7 @@ public class PluginImpl implements Plugin, PropertyEventListener ...@@ -1536,7 +1537,7 @@ public class PluginImpl implements Plugin, PropertyEventListener
if (vbContent != null) if (vbContent != null)
{ {
Channel audioChannel = vbContent.getChannel(participant.audioChannelId); RtpChannel audioChannel = (RtpChannel) vbContent.getChannel(participant.audioChannelId);
if (audioChannel != null) if (audioChannel != null)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment