1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2024-07-01 07:46:45 +02:00

Media Streams Tunning - Speed Improved

git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@7563 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Thiago Camargo 2007-03-15 22:10:36 +00:00 committed by thiago
parent 3fd4df2a8f
commit 2324ac06a9

View file

@ -94,6 +94,12 @@ public class AudioChannel {
this.localPort = localPort;
this.portBase = remotePort;
this.format = format;
// Create a processor for the specified jmf locator
String result = createProcessor();
if (result != null) {
started = false;
}
}
/**
@ -108,13 +114,6 @@ public class AudioChannel {
started = true;
String result;
// Create a processor for the specified jmf locator
result = createProcessor();
if (result != null) {
started = false;
return result;
}
// Create an RTP session to transmit the output of the
// processor to the specified IP address and port no.
result = createTransmitter();