Fixes the display of local video in a call on Linux. Patch contributed by Sebastien Vincent.

cusax-fix
Lyubomir Marinov 14 years ago
parent 9af69f5acd
commit e77c861931

Binary file not shown.

@ -40,7 +40,6 @@
public class VideoMediaDeviceSession
extends MediaDeviceSession
{
/**
* The <tt>Logger</tt> used by the <tt>VideoMediaDeviceSession</tt> class
* and its instances for logging output.
@ -239,12 +238,7 @@ protected DataSource createCaptureDevice()
}
}
/*
* FIXME PullBufferDataSource does not seem to be correctly cloned
* by JMF.
*/
if (!(captureDevice instanceof SourceCloneable)
&& !(captureDevice instanceof PullBufferDataSource))
if (!(captureDevice instanceof SourceCloneable))
{
DataSource cloneableDataSource
= Manager.createCloneableDataSource(captureDevice);

Loading…
Cancel
Save