blob: 53b6d2621f8ed3ef34df152cb116c4610f61c49f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/*
* SIP Communicator, 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";
}
|