summaryrefslogtreecommitdiff
path: root/other/apidsl
diff options
context:
space:
mode:
authormannol <eniz_vukovic@hotmail.com>2015-06-30 01:41:38 +0200
committermannol <eniz_vukovic@hotmail.com>2015-06-30 01:41:38 +0200
commit6c126e34e677da42849b9002ad376117bff5852e (patch)
tree304894e119f68dd56111490ea854d60f43aa282d /other/apidsl
parent13148d7d7c7fc6ea6ef7e592dfd8b0bf3cfd1244 (diff)
Implement handling capability change on rtp level
Diffstat (limited to 'other/apidsl')
-rw-r--r--other/apidsl/toxav.in.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/other/apidsl/toxav.in.h b/other/apidsl/toxav.in.h
index 4a96defc..8d1d8f6e 100644
--- a/other/apidsl/toxav.in.h
+++ b/other/apidsl/toxav.in.h
@@ -216,7 +216,8 @@ void iterate();
216 * 216 *
217 * It is the client's responsibility to stop ringing after a certain timeout, 217 * It is the client's responsibility to stop ringing after a certain timeout,
218 * if such behaviour is desired. If the client does not stop ringing, the 218 * if such behaviour is desired. If the client does not stop ringing, the
219 * library will not stop until the friend is disconnected. 219 * library will not stop until the friend is disconnected. Audio and video
220 * receiving are both enabled by default.
220 * 221 *
221 * @param friend_number The friend number of the friend that should be called. 222 * @param friend_number The friend number of the friend that should be called.
222 * @param audio_bit_rate Audio bit rate in Kb/sec. Set this to 0 to disable 223 * @param audio_bit_rate Audio bit rate in Kb/sec. Set this to 0 to disable
@@ -262,7 +263,8 @@ event call {
262 * Accept an incoming call. 263 * Accept an incoming call.
263 * 264 *
264 * If answering fails for any reason, the call will still be pending and it is 265 * If answering fails for any reason, the call will still be pending and it is
265 * possible to try and answer it later. 266 * possible to try and answer it later. Audio and video receiving are both
267 * enabled by default.
266 * 268 *
267 * @param friend_number The friend number of the friend that is calling. 269 * @param friend_number The friend number of the friend that is calling.
268 * @param audio_bit_rate Audio bit rate in Kb/sec. Set this to 0 to disable 270 * @param audio_bit_rate Audio bit rate in Kb/sec. Set this to 0 to disable
@@ -519,9 +521,10 @@ error for send_frame {
519 */ 521 */
520 INVALID, 522 INVALID,
521 /** 523 /**
522 * Bit rate for this payload type was not set up. 524 * Either friend turned off audio or video receiving or we turned off sending
525 * for the said payload.
523 */ 526 */
524 BIT_RATE_NOT_SET, 527 PAYLOAD_TYPE_DISABLED,
525 /** 528 /**
526 * Failed to push frame through rtp interface. 529 * Failed to push frame through rtp interface.
527 */ 530 */