comparison libpurple/media.h @ 26339:b2e290e76998

Remove purple_media_get_sink and the sink variables in the media structures. The concept of a single sink per stream is no longer relevant.
author Mike Ruprecht <maiku@soc.pidgin.im>
date Sun, 22 Mar 2009 21:52:20 +0000
parents 775920086761
children 5e605a489d53
comparison
equal deleted inserted replaced
26338:754be87047dc 26339:b2e290e76998
350 * @return The source retrieved. 350 * @return The source retrieved.
351 */ 351 */
352 GstElement *purple_media_get_src(PurpleMedia *media, const gchar *sess_id); 352 GstElement *purple_media_get_src(PurpleMedia *media, const gchar *sess_id);
353 353
354 /** 354 /**
355 * Gets the sink from a stream
356 *
357 * @param media The media object the session is in.
358 * @param sess_id The session id the stream belongs to.
359 * @param participant The participant the stream is associated with.
360 *
361 * @return The sink retrieved.
362 */
363 GstElement *purple_media_get_sink(PurpleMedia *media, const gchar *sess_id, const gchar *participant);
364
365 /**
366 * Gets the pipeline from the media session. 355 * Gets the pipeline from the media session.
367 * 356 *
368 * @param media The media session to retrieve the pipeline from. 357 * @param media The media session to retrieve the pipeline from.
369 * 358 *
370 * @return The pipeline retrieved. 359 * @return The pipeline retrieved.