blob: cbada4a15e5e78eeb45c7b2b8c4565d51198ae1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
/*
* 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.protocol;
import org.jitsi.service.protocol.*;
/**
* An <tt>OperationSet</tt> that allows other modules to send DMF tones through
* this protocol provider.
*
* @author JM HEITZ
*/
public interface OperationSetDTMF
extends OperationSet
{
/**
* The minimal tone duration value for RFC4733 is 100 ms.
*/
public static final int DEFAULT_DTMF_MINIMAL_TONE_DURATION = 100;
/**
* The maximal tone duration value is -1 in order to stop sending tone only
* when user requests to stop it.
*/
public static final int DEFAULT_DTMF_MAXIMAL_TONE_DURATION = -1;
/**
* The default tone volume value.
*/
public static final int DEFAULT_DTMF_TONE_VOLUME = 10;
/**
* The name of the <tt>ConfigurationService</tt> <tt>int</tt> property
* which indicates the minimal duration for a DTMF tone.
* The default value is 70 ms.
*/
public static final String PROP_MINIMAL_RTP_DTMF_TONE_DURATION =
"net.java.sip.communicator.service.protocol.minimalRtpDtmfToneDuration";
/**
* The name of the <tt>ConfigurationService</tt> <tt>int</tt> property
* which indicates the maximal duration for a DTMF tone (in ms).
* The default value is -1 to tell to stop DTMF tones only following user
* will.
*/
public static final String PROP_MAXIMAL_RTP_DTMF_TONE_DURATION =
"net.java.sip.communicator.service.protocol.maximalRtpDtmfToneDuration";
/**
* Sends the <tt>DTMFTone</tt> <tt>tone</tt> to <tt>callPeer</tt>.
*
* @param callPeer the call peer to send <tt>tone</tt> to.
* @param tone the DTMF tone to send to <tt>callPeer</tt>.
*
* @throws OperationFailedException with code OPERATION_NOT_SUPPORTED if
* DTMF tones are not supported for <tt>callPeer</tt>.
*
* @throws IllegalArgumentException in case the call peer does not
* belong to the underlying implementation.
*/
public void startSendingDTMF(CallPeer callPeer, DTMFTone tone)
throws OperationFailedException;
/**
* Stop sending of the currently transmitting DTMF tone.
*
* @param callPeer the call peer to stop send <tt>tone</tt> to.
*/
public void stopSendingDTMF(CallPeer callPeer);
}
|