From 09a4219bac47c97d76b34413e09230febe50b92d Mon Sep 17 00:00:00 2001 From: Vincent Lucas <chenzo@jitsi.org> Date: Wed, 19 Dec 2012 11:46:53 +0000 Subject: [PATCH] Adds a net.java.sip.communicator.impl.neomedia.device.hideDevicelessAudioSystems property (default=true) to give the possibility to show deviceless audio systems (if this property is set to false in the configuration). --- .../neomedia/device/DeviceConfiguration.java | 22 ++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/src/org/jitsi/impl/neomedia/device/DeviceConfiguration.java b/src/org/jitsi/impl/neomedia/device/DeviceConfiguration.java index 90b34921..f22b3fee 100644 --- a/src/org/jitsi/impl/neomedia/device/DeviceConfiguration.java +++ b/src/org/jitsi/impl/neomedia/device/DeviceConfiguration.java @@ -179,6 +179,12 @@ public class DeviceConfiguration private static final String PROP_VIDEO_WIDTH = "net.java.sip.communicator.impl.neomedia.video.width"; + /** + * Indicates if libjitsi must list audio system which has no active devices. + */ + private static final String HIDE_DEVICELESS_AUDIO_SYSTEMS + = "net.java.sip.communicator.impl.neomedia.device.hideDevicelessAudioSystems"; + /** * The currently supported resolutions we will show as option * and user can select. @@ -431,6 +437,15 @@ public AudioSystem getAudioSystem() return audioSystem; } + /** + * Returns the list of available device system. By default, this function + * returns only device system with available devices. You can change this + * default behavior and activate the listing of system without available + * devices with the property: + * net.java.sip.communicator.impl.neomedia.device.hideDevicelessAudioSystems. + * + * @return The list of available device system. + */ public AudioSystem[] getAvailableAudioSystems() { AudioSystem[] audioSystems = AudioSystem.getAudioSystems(); @@ -441,11 +456,16 @@ public AudioSystem[] getAvailableAudioSystems() { List<AudioSystem> audioSystemsWithDevices = new ArrayList<AudioSystem>(); + boolean hideDevicelessAudioSystems + = LibJitsi.getConfigurationService().getBoolean( + HIDE_DEVICELESS_AUDIO_SYSTEMS, + true); for (AudioSystem audioSystem : audioSystems) { if (!NoneAudioSystem.LOCATOR_PROTOCOL.equalsIgnoreCase( - audioSystem.getLocatorProtocol())) + audioSystem.getLocatorProtocol()) + && hideDevicelessAudioSystems) { List<ExtendedCaptureDeviceInfo> captureDevices = audioSystem.getDevices(AudioSystem.CAPTURE_INDEX); -- GitLab