📄 globalcapturedeviceplugger.java
字号:
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{ private GlobalCaptureDevicePlugger() { // Do nothing. } 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(); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -