comparison libpurple/protocols/jabber/jingle/rtp.c @ 24998:b2b7341c8523

Remove unused variables.
author Mike Ruprecht <maiku@soc.pidgin.im>
date Mon, 05 Jan 2009 10:28:51 +0000
parents 23da1deb7284
children 59188d904773
comparison
equal deleted inserted replaced
24997:23da1deb7284 24998:b2b7341c8523
33 #include <string.h> 33 #include <string.h>
34 34
35 struct _JingleRtpPrivate 35 struct _JingleRtpPrivate
36 { 36 {
37 gchar *media_type; 37 gchar *media_type;
38 gboolean candidates_ready;
39 gboolean codecs_ready;
40 }; 38 };
41 39
42 #define JINGLE_RTP_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE((obj), JINGLE_TYPE_RTP, JingleRtpPrivate)) 40 #define JINGLE_RTP_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE((obj), JINGLE_TYPE_RTP, JingleRtpPrivate))
43 41
44 static void jingle_rtp_class_init (JingleRtpClass *klass); 42 static void jingle_rtp_class_init (JingleRtpClass *klass);
300 session, JINGLE_IS_RAWUDP(oldtransport) ? 298 session, JINGLE_IS_RAWUDP(oldtransport) ?
301 JINGLE_TYPE_RAWUDP : JINGLE_TYPE_ICEUDP, 299 JINGLE_TYPE_RAWUDP : JINGLE_TYPE_ICEUDP,
302 0, candidates)); 300 0, candidates));
303 g_list_free(candidates); 301 g_list_free(candidates);
304 302
305 JINGLE_RTP_GET_PRIVATE(content)->candidates_ready = TRUE;
306
307 jingle_content_set_pending_transport(content, transport); 303 jingle_content_set_pending_transport(content, transport);
308 jingle_content_accept_transport(content); 304 jingle_content_accept_transport(content);
309 } 305 }
310 } 306 }
311 307