Mercurial > pidgin.yaz
annotate libpurple/mediamanager.c @ 25654:cbe97caec684
Use USE_VV instead of USE_FARSIGHT.
author | Mike Ruprecht <maiku@soc.pidgin.im> |
---|---|
date | Wed, 28 May 2008 21:00:40 +0000 |
parents | 43b3b9ff6028 |
children | 1c68f78414b7 |
rev | line source |
---|---|
25546 | 1 /** |
25552 | 2 * @file mediamanager.c Media Manager API |
25546 | 3 * @ingroup core |
4 * | |
5 * purple | |
6 * | |
7 * Purple is the legal property of its developers, whose names are too numerous | |
8 * to list here. Please refer to the COPYRIGHT file distributed with this | |
9 * source distribution. | |
10 * | |
11 * This program is free software; you can redistribute it and/or modify | |
12 * it under the terms of the GNU General Public License as published by | |
13 * the Free Software Foundation; either version 2 of the License, or | |
14 * (at your option) any later version. | |
15 * | |
16 * This program is distributed in the hope that it will be useful, | |
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 * GNU General Public License for more details. | |
20 * | |
21 * You should have received a copy of the GNU General Public License | |
22 * along with this program; if not, write to the Free Software | |
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
24 */ | |
25 | |
25552 | 26 #include "internal.h" |
27 | |
25546 | 28 #include "connection.h" |
29 #include "mediamanager.h" | |
30 #include "media.h" | |
31 | |
25654
cbe97caec684
Use USE_VV instead of USE_FARSIGHT.
Mike Ruprecht <maiku@soc.pidgin.im>
parents:
25651
diff
changeset
|
32 #ifdef USE_VV |
25546 | 33 |
25647
e1c8ec1259de
Updates voice and video to use Farsight 2, gets XMPP voice conferences
Mike Ruprecht <maiku@soc.pidgin.im>
parents:
25560
diff
changeset
|
34 #include <gst/farsight/fs-conference-iface.h> |
25546 | 35 |
36 struct _PurpleMediaManagerPrivate | |
37 { | |
38 GList *medias; | |
39 }; | |
40 | |
41 #define PURPLE_MEDIA_MANAGER_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE((obj), PURPLE_TYPE_MEDIA_MANAGER, PurpleMediaManagerPrivate)) | |
42 | |
43 static void purple_media_manager_class_init (PurpleMediaManagerClass *klass); | |
44 static void purple_media_manager_init (PurpleMediaManager *media); | |
45 static void purple_media_manager_finalize (GObject *object); | |
46 | |
47 static GObjectClass *parent_class = NULL; | |
48 | |
49 | |
50 | |
51 enum { | |
25548
70cdff43ec76
You can actually receive Google Talk voice calls with crappy UI now
Sean Egan <seanegan@gmail.com>
parents:
25547
diff
changeset
|
52 INIT_MEDIA, |
25546 | 53 LAST_SIGNAL |
54 }; | |
55 static guint purple_media_manager_signals[LAST_SIGNAL] = {0}; | |
56 | |
57 enum { | |
58 PROP_0, | |
59 PROP_FARSIGHT_SESSION, | |
60 PROP_NAME, | |
61 PROP_CONNECTION, | |
62 PROP_MIC_ELEMENT, | |
63 PROP_SPEAKER_ELEMENT, | |
64 }; | |
65 | |
66 GType | |
67 purple_media_manager_get_type() | |
68 { | |
69 static GType type = 0; | |
70 | |
71 if (type == 0) { | |
72 static const GTypeInfo info = { | |
73 sizeof(PurpleMediaManagerClass), | |
74 NULL, | |
75 NULL, | |
76 (GClassInitFunc) purple_media_manager_class_init, | |
77 NULL, | |
78 NULL, | |
79 sizeof(PurpleMediaManager), | |
80 0, | |
25560
750d700098c1
Fix the prplinfo structs and get rid of some compile warnings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
25552
diff
changeset
|
81 (GInstanceInitFunc) purple_media_manager_init, |
750d700098c1
Fix the prplinfo structs and get rid of some compile warnings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
25552
diff
changeset
|
82 NULL |
25546 | 83 }; |
84 type = g_type_register_static(G_TYPE_OBJECT, "PurpleMediaManager", &info, 0); | |
85 } | |
86 return type; | |
87 } | |
88 | |
89 | |
90 static void | |
91 purple_media_manager_class_init (PurpleMediaManagerClass *klass) | |
92 { | |
93 GObjectClass *gobject_class = (GObjectClass*)klass; | |
94 parent_class = g_type_class_peek_parent(klass); | |
95 | |
96 gobject_class->finalize = purple_media_manager_finalize; | |
97 | |
25548
70cdff43ec76
You can actually receive Google Talk voice calls with crappy UI now
Sean Egan <seanegan@gmail.com>
parents:
25547
diff
changeset
|
98 purple_media_manager_signals[INIT_MEDIA] = g_signal_new ("init-media", |
25546 | 99 G_TYPE_FROM_CLASS (klass), |
100 G_SIGNAL_RUN_LAST, | |
101 0, NULL, NULL, | |
102 g_cclosure_marshal_VOID__OBJECT, | |
103 G_TYPE_NONE, 1, PURPLE_TYPE_MEDIA); | |
25547 | 104 g_type_class_add_private(klass, sizeof(PurpleMediaManagerPrivate)); |
25546 | 105 } |
106 | |
107 static void | |
108 purple_media_manager_init (PurpleMediaManager *media) | |
109 { | |
110 media->priv = PURPLE_MEDIA_MANAGER_GET_PRIVATE(media); | |
25547 | 111 media->priv->medias = NULL; |
25546 | 112 } |
113 | |
114 static void | |
115 purple_media_manager_finalize (GObject *media) | |
116 { | |
117 parent_class->finalize(media); | |
118 } | |
119 | |
120 PurpleMediaManager * | |
121 purple_media_manager_get() | |
122 { | |
123 static PurpleMediaManager *manager = NULL; | |
124 | |
125 if (manager == NULL) | |
126 manager = PURPLE_MEDIA_MANAGER(g_object_new(purple_media_manager_get_type(), NULL)); | |
127 return manager; | |
128 } | |
129 | |
25647
e1c8ec1259de
Updates voice and video to use Farsight 2, gets XMPP voice conferences
Mike Ruprecht <maiku@soc.pidgin.im>
parents:
25560
diff
changeset
|
130 PurpleMedia * |
e1c8ec1259de
Updates voice and video to use Farsight 2, gets XMPP voice conferences
Mike Ruprecht <maiku@soc.pidgin.im>
parents:
25560
diff
changeset
|
131 purple_media_manager_create_media(PurpleMediaManager *manager, |
25546 | 132 PurpleConnection *gc, |
25647
e1c8ec1259de
Updates voice and video to use Farsight 2, gets XMPP voice conferences
Mike Ruprecht <maiku@soc.pidgin.im>
parents:
25560
diff
changeset
|
133 const char *conference_type, |
e1c8ec1259de
Updates voice and video to use Farsight 2, gets XMPP voice conferences
Mike Ruprecht <maiku@soc.pidgin.im>
parents:
25560
diff
changeset
|
134 const char *remote_user) |
25546 | 135 { |
25651
43b3b9ff6028
Added better Farsight error handling. Fixes several crash bugs related
Mike Ruprecht <maiku@soc.pidgin.im>
parents:
25647
diff
changeset
|
136 PurpleMedia *media; |
25647
e1c8ec1259de
Updates voice and video to use Farsight 2, gets XMPP voice conferences
Mike Ruprecht <maiku@soc.pidgin.im>
parents:
25560
diff
changeset
|
137 FsConference *conference = FS_CONFERENCE(gst_element_factory_make(conference_type, NULL)); |
25651
43b3b9ff6028
Added better Farsight error handling. Fixes several crash bugs related
Mike Ruprecht <maiku@soc.pidgin.im>
parents:
25647
diff
changeset
|
138 GstStateChangeReturn ret = gst_element_set_state(GST_ELEMENT(conference), GST_STATE_READY); |
25647
e1c8ec1259de
Updates voice and video to use Farsight 2, gets XMPP voice conferences
Mike Ruprecht <maiku@soc.pidgin.im>
parents:
25560
diff
changeset
|
139 |
25651
43b3b9ff6028
Added better Farsight error handling. Fixes several crash bugs related
Mike Ruprecht <maiku@soc.pidgin.im>
parents:
25647
diff
changeset
|
140 if (ret == GST_STATE_CHANGE_FAILURE) { |
43b3b9ff6028
Added better Farsight error handling. Fixes several crash bugs related
Mike Ruprecht <maiku@soc.pidgin.im>
parents:
25647
diff
changeset
|
141 purple_conv_present_error(remote_user, |
43b3b9ff6028
Added better Farsight error handling. Fixes several crash bugs related
Mike Ruprecht <maiku@soc.pidgin.im>
parents:
25647
diff
changeset
|
142 purple_connection_get_account(gc), |
43b3b9ff6028
Added better Farsight error handling. Fixes several crash bugs related
Mike Ruprecht <maiku@soc.pidgin.im>
parents:
25647
diff
changeset
|
143 _("Error creating conference.")); |
43b3b9ff6028
Added better Farsight error handling. Fixes several crash bugs related
Mike Ruprecht <maiku@soc.pidgin.im>
parents:
25647
diff
changeset
|
144 return NULL; |
43b3b9ff6028
Added better Farsight error handling. Fixes several crash bugs related
Mike Ruprecht <maiku@soc.pidgin.im>
parents:
25647
diff
changeset
|
145 } |
43b3b9ff6028
Added better Farsight error handling. Fixes several crash bugs related
Mike Ruprecht <maiku@soc.pidgin.im>
parents:
25647
diff
changeset
|
146 |
43b3b9ff6028
Added better Farsight error handling. Fixes several crash bugs related
Mike Ruprecht <maiku@soc.pidgin.im>
parents:
25647
diff
changeset
|
147 media = PURPLE_MEDIA(g_object_new(purple_media_get_type(), |
43b3b9ff6028
Added better Farsight error handling. Fixes several crash bugs related
Mike Ruprecht <maiku@soc.pidgin.im>
parents:
25647
diff
changeset
|
148 "screenname", remote_user, |
43b3b9ff6028
Added better Farsight error handling. Fixes several crash bugs related
Mike Ruprecht <maiku@soc.pidgin.im>
parents:
25647
diff
changeset
|
149 "connection", gc, |
43b3b9ff6028
Added better Farsight error handling. Fixes several crash bugs related
Mike Ruprecht <maiku@soc.pidgin.im>
parents:
25647
diff
changeset
|
150 "farsight-conference", conference, |
43b3b9ff6028
Added better Farsight error handling. Fixes several crash bugs related
Mike Ruprecht <maiku@soc.pidgin.im>
parents:
25647
diff
changeset
|
151 NULL)); |
25546 | 152 manager->priv->medias = g_list_append(manager->priv->medias, media); |
25548
70cdff43ec76
You can actually receive Google Talk voice calls with crappy UI now
Sean Egan <seanegan@gmail.com>
parents:
25547
diff
changeset
|
153 g_signal_emit(manager, purple_media_manager_signals[INIT_MEDIA], 0, media); |
25546 | 154 return media; |
155 } | |
156 | |
25654
cbe97caec684
Use USE_VV instead of USE_FARSIGHT.
Mike Ruprecht <maiku@soc.pidgin.im>
parents:
25651
diff
changeset
|
157 #endif /* USE_VV */ |