All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.fmj.media.cdp.GlobalCaptureDevicePlugger Maven / Gradle / Ivy

There is a newer version: 1.0.2-jitsi
Show newest version
package net.sf.fmj.media.cdp;

/**
 * Global singleton CaptureDevicePlugger. Calls all specific
 * CaptureDevicePluggers. Dynamically adds CaptureDeviceInfo to the
 * CaptureDeviceManager. Does not commit.
 *
 * @author Ken Larson
 *
 */
public final class GlobalCaptureDevicePlugger
{
    public static void addCaptureDevices()
    {
        // This is hard-coded to call all known capture device pluggers. Would
        // be nice to
        // make this more dynamic.
        new net.sf.fmj.media.cdp.civil.CaptureDevicePlugger()
                .addCaptureDevices();
        new net.sf.fmj.media.cdp.javasound.CaptureDevicePlugger()
                .addCaptureDevices();

    }

    private GlobalCaptureDevicePlugger()
    { // Do nothing.
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy