comparison libpurple/media.h @ 26143:f6a98b2b8d92

Add the accepted signal and make the accept button go away immediately.
author Mike Ruprecht <maiku@soc.pidgin.im>
date Tue, 27 Jan 2009 22:18:01 +0000
parents ac56e5707a72
children 1aed9a92b657
comparison
equal deleted inserted replaced
26142:5b64b7d8da39 26143:f6a98b2b8d92
598 * @return @c TRUE The codecs are ready, or @c FALSE otherwise. 598 * @return @c TRUE The codecs are ready, or @c FALSE otherwise.
599 */ 599 */
600 gboolean purple_media_codecs_ready(PurpleMedia *media, const gchar *sess_id); 600 gboolean purple_media_codecs_ready(PurpleMedia *media, const gchar *sess_id);
601 601
602 /** 602 /**
603 * Gets whether a streams selected have been accepted.
604 *
605 * @param media The media object to find the session in.
606 * @param sess_id The session id of the session to check.
607 * @param participant The participant to check.
608 *
609 * @return @c TRUE The selected streams have been accepted, or @c FALSE otherwise.
610 */
611 gboolean purple_media_accepted(PurpleMedia *media, const gchar *sess_id,
612 const gchar *participant);
613
614 /**
603 * Mutes or unmutes all the audio local audio sources. 615 * Mutes or unmutes all the audio local audio sources.
604 * 616 *
605 * @param media The media object to mute or unmute 617 * @param media The media object to mute or unmute
606 * @param active @c TRUE to mutes all of the local audio sources, or @c FALSE to unmute. 618 * @param active @c TRUE to mutes all of the local audio sources, or @c FALSE to unmute.
607 */ 619 */