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
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
then copy the files, e.g.:
for i in *; do
if [ -e ../../jitsi/sc-bundles/$i ]; then
cp ../../jitsi/sc-bundles/$i .;
fi;
then copy the files here, e.g.:
for f in *.jar; do
if [ -e ../../jitsi/sc-bundles/$f ]; then
cp ../../jitsi/sc-bundles/$f .;
fi;
done
......@@ -56,6 +56,7 @@ import org.eclipse.jetty.security.*;
import org.eclipse.jetty.security.authentication.*;
import org.dom4j.*;
import org.jitsi.videobridge.xmpp.*;
import org.jitsi.videobridge.*;
import org.jitsi.impl.neomedia.*;
import org.jitsi.impl.neomedia.format.*;
......@@ -1518,7 +1519,7 @@ public class PluginImpl implements Plugin, PropertyEventListener
if (vbContent != null)
{
Channel videoChannel = vbContent.getChannel(participant.videoChannelId);
RtpChannel videoChannel = (RtpChannel) vbContent.getChannel(participant.videoChannelId);
if (videoChannel != null)
{
......@@ -1536,7 +1537,7 @@ public class PluginImpl implements Plugin, PropertyEventListener
if (vbContent != null)
{
Channel audioChannel = vbContent.getChannel(participant.audioChannelId);
RtpChannel audioChannel = (RtpChannel) vbContent.getChannel(participant.audioChannelId);
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