mirror of https://github.com/sipwise/jitsi.git
parent
d69f6a830f
commit
3bb4311fb9
@ -1,30 +0,0 @@
|
||||
/*
|
||||
* Jitsi, the OpenSource Java VoIP and Instant Messaging client.
|
||||
*
|
||||
* Distributable under LGPL license.
|
||||
* See terms of license at gnu.org.
|
||||
*/
|
||||
package net.java.sip.communicator.impl.neomedia;
|
||||
|
||||
import net.java.sip.communicator.service.neomedia.*;
|
||||
|
||||
/**
|
||||
* Controls media service capture volume.
|
||||
*
|
||||
* @author Damian Minkov
|
||||
*/
|
||||
public class InputVolumeControlImpl
|
||||
extends AbstractVolumeControl
|
||||
implements InputVolumeControl
|
||||
{
|
||||
/**
|
||||
* Returns the property we use to store input sound level.
|
||||
*
|
||||
* @return sound level property name for storing configuration.
|
||||
*/
|
||||
@Override
|
||||
String getStoreLevelPropertyName()
|
||||
{
|
||||
return CAPTURE_VOLUME_LEVEL_PROPERTY_NAME;
|
||||
}
|
||||
}
|
||||
@ -1,30 +0,0 @@
|
||||
/*
|
||||
* Jitsi, the OpenSource Java VoIP and Instant Messaging client.
|
||||
*
|
||||
* Distributable under LGPL license.
|
||||
* See terms of license at gnu.org.
|
||||
*/
|
||||
package net.java.sip.communicator.impl.neomedia;
|
||||
|
||||
import net.java.sip.communicator.service.neomedia.*;
|
||||
|
||||
/**
|
||||
* Controls media service playback volume.
|
||||
*
|
||||
* @author Damian Minkov
|
||||
*/
|
||||
public class OutputVolumeControlImpl
|
||||
extends AbstractVolumeControl
|
||||
implements OutputVolumeControl
|
||||
{
|
||||
/**
|
||||
* Returns the property we use to store output sound level.
|
||||
*
|
||||
* @return sound level property name for storing configuration.
|
||||
*/
|
||||
@Override
|
||||
String getStoreLevelPropertyName()
|
||||
{
|
||||
return PLAYBACK_VOLUME_LEVEL_PROPERTY_NAME;
|
||||
}
|
||||
}
|
||||
@ -1,22 +0,0 @@
|
||||
/*
|
||||
* Jitsi, the OpenSource Java VoIP and Instant Messaging client.
|
||||
*
|
||||
* Distributable under LGPL license.
|
||||
* See terms of license at gnu.org.
|
||||
*/
|
||||
package net.java.sip.communicator.service.neomedia;
|
||||
|
||||
/**
|
||||
* Controls the capture volume in media service.
|
||||
*
|
||||
* @author Damian Minkov
|
||||
*/
|
||||
public interface InputVolumeControl
|
||||
extends VolumeControl
|
||||
{
|
||||
/**
|
||||
* Property for storing level into configuration.
|
||||
*/
|
||||
public final static String CAPTURE_VOLUME_LEVEL_PROPERTY_NAME
|
||||
= "net.java.sip.communicator.service.media.CAPTURE_VOLUME_LEVEL";
|
||||
}
|
||||
@ -1,22 +0,0 @@
|
||||
/*
|
||||
* Jitsi, the OpenSource Java VoIP and Instant Messaging client.
|
||||
*
|
||||
* Distributable under LGPL license.
|
||||
* See terms of license at gnu.org.
|
||||
*/
|
||||
package net.java.sip.communicator.service.neomedia;
|
||||
|
||||
/**
|
||||
* Controls the playback volume in media service.
|
||||
*
|
||||
* @author Damian Minkov
|
||||
*/
|
||||
public interface OutputVolumeControl
|
||||
extends VolumeControl
|
||||
{
|
||||
/**
|
||||
* Property for storing level into configuration.
|
||||
*/
|
||||
public final static String PLAYBACK_VOLUME_LEVEL_PROPERTY_NAME
|
||||
= "net.java.sip.communicator.service.media.PLAYBACK_VOLUME_LEVEL";
|
||||
}
|
||||
Loading…
Reference in new issue