renatofilho@588
|
1 |
#ifdef HAVE_CONFIG_H
|
renatofilho@588
|
2 |
#include "config.h"
|
renatofilho@588
|
3 |
#endif
|
renatofilho@588
|
4 |
|
renatofilho@600
|
5 |
#include <sys/stat.h>
|
renatofilho@600
|
6 |
#include <fcntl.h>
|
renatofilho@600
|
7 |
#include <unistd.h>
|
renatofilho@588
|
8 |
#include <glib.h>
|
renatofilho@588
|
9 |
#include <gst/gst.h>
|
renatofilho@588
|
10 |
#include <string.h>
|
renatofilho@762
|
11 |
#include <sys/types.h>
|
renatofilho@762
|
12 |
#include <sys/socket.h>
|
renatofilho@786
|
13 |
#include <libgnomevfs/gnome-vfs.h>
|
renatofilho@789
|
14 |
#include <gst/interfaces/tuner.h>
|
renatofilho@588
|
15 |
|
renatofilho@588
|
16 |
#include "gmencoder.h"
|
renatofilho@588
|
17 |
|
renatofilho@588
|
18 |
#define G_MENCODER_GET_PRIVATE(obj) \
|
renatofilho@588
|
19 |
(G_TYPE_INSTANCE_GET_PRIVATE ((obj), G_TYPE_MENCODER, GMencoderPrivate))
|
renatofilho@588
|
20 |
|
renatofilho@807
|
21 |
#define USE_MANUAL_SINK
|
renatofilho@807
|
22 |
#define GMENCODER_TIMEOUT 5000
|
renatofilho@807
|
23 |
|
renatofilho@588
|
24 |
typedef struct _GMencoderPrivate GMencoderPrivate;
|
renatofilho@600
|
25 |
typedef struct _SetupInfo SetupInfo;
|
renatofilho@600
|
26 |
|
renatofilho@754
|
27 |
struct _SetupInfo {
|
renatofilho@754
|
28 |
gchar *video_encode;
|
renatofilho@754
|
29 |
gchar *mux_name;
|
renatofilho@754
|
30 |
gchar **video_encode_prop;
|
renatofilho@754
|
31 |
gdouble video_fps;
|
renatofilho@754
|
32 |
gdouble video_rate;
|
renatofilho@754
|
33 |
guint video_width;
|
renatofilho@754
|
34 |
guint video_height;
|
renatofilho@754
|
35 |
gchar *audio_encode;
|
renatofilho@754
|
36 |
gchar **audio_encode_prop;
|
renatofilho@754
|
37 |
guint audio_rate;
|
renatofilho@600
|
38 |
};
|
renatofilho@600
|
39 |
|
renatofilho@588
|
40 |
|
renatofilho@754
|
41 |
struct _GMencoderPrivate {
|
renatofilho@754
|
42 |
GstElement *pipe;
|
renatofilho@754
|
43 |
GstElement *abin;
|
renatofilho@754
|
44 |
GstElement *vbin;
|
renatofilho@754
|
45 |
GstElement *sink;
|
renatofilho@754
|
46 |
GstElement *src;
|
renatofilho@786
|
47 |
|
renatofilho@807
|
48 |
GnomeVFSHandle *handle;
|
renatofilho@786
|
49 |
|
renatofilho@754
|
50 |
gboolean ready;
|
renatofilho@754
|
51 |
SetupInfo *info;
|
renatofilho@754
|
52 |
GstClockTime videot;
|
renatofilho@754
|
53 |
GstClockTime audiot;
|
renatofilho@754
|
54 |
gint sources;
|
renatofilho@754
|
55 |
gint tick_id;
|
renatofilho@754
|
56 |
gint64 duration;
|
renatofilho@768
|
57 |
gboolean send_chunked;
|
renatofilho@807
|
58 |
gint timeout_id;
|
renatofilho@789
|
59 |
|
renatofilho@789
|
60 |
//V4l info
|
renatofilho@789
|
61 |
GstElement *v4lsrc;
|
renatofilho@789
|
62 |
gchar *channel;
|
renatofilho@789
|
63 |
gchar *norm;
|
renatofilho@789
|
64 |
glong frequency;
|
renatofilho@588
|
65 |
};
|
renatofilho@588
|
66 |
|
renatofilho@754
|
67 |
enum {
|
renatofilho@754
|
68 |
PAUSED,
|
renatofilho@754
|
69 |
PLAYING,
|
renatofilho@754
|
70 |
STOPED,
|
renatofilho@754
|
71 |
EOS,
|
renatofilho@754
|
72 |
ERROR,
|
renatofilho@754
|
73 |
LAST_SIGNAL
|
renatofilho@588
|
74 |
};
|
renatofilho@588
|
75 |
|
renatofilho@754
|
76 |
static void g_mencoder_class_init(GMencoderClass * klass);
|
renatofilho@754
|
77 |
static void g_mencoder_init(GMencoder * object);
|
renatofilho@754
|
78 |
static void g_mencoder_dispose(GObject * object);
|
renatofilho@754
|
79 |
static void g_mencoder_finalize(GObject * object);
|
renatofilho@752
|
80 |
static GstElement *_create_audio_bin(const gchar * encode,
|
renatofilho@754
|
81 |
gchar ** encode_prop, gint rate);
|
renatofilho@752
|
82 |
static GstElement *_create_video_bin(const gchar * encode,
|
renatofilho@754
|
83 |
gchar ** encode_prop,
|
renatofilho@754
|
84 |
gdouble fps,
|
renatofilho@777
|
85 |
gint rate, guint width, guint height,
|
renatofilho@777
|
86 |
gboolean use_deinterlace);
|
renatofilho@588
|
87 |
|
renatofilho@754
|
88 |
static gboolean
|
renatofilho@752
|
89 |
_pipeline_bus_cb(GstBus * bus, GstMessage * msg, gpointer user_data);
|
morphbr@748
|
90 |
|
renatofilho@754
|
91 |
static void _decodebin_new_pad_cb(GstElement * object,
|
renatofilho@754
|
92 |
GstPad * pad,
|
renatofilho@754
|
93 |
gboolean flag, gpointer user_data);
|
morphbr@748
|
94 |
|
renatofilho@754
|
95 |
static void _decodebin_unknown_type_cb(GstElement * object,
|
renatofilho@754
|
96 |
GstPad * pad,
|
renatofilho@754
|
97 |
GstCaps * caps,
|
renatofilho@754
|
98 |
gpointer user_data);
|
morphbr@748
|
99 |
|
renatofilho@754
|
100 |
static void _close_output(GMencoder * self);
|
renatofilho@757
|
101 |
static gboolean _open_output(GMencoder * self, const gchar * uri);
|
morphbr@748
|
102 |
|
renatofilho@789
|
103 |
static GstElement *_create_source(GMencoder *self, const gchar * uri);
|
renatofilho@752
|
104 |
static GstElement *_create_pipeline(GMencoder * self,
|
renatofilho@754
|
105 |
const gchar * video_encode,
|
renatofilho@754
|
106 |
const gchar * mux_name,
|
renatofilho@754
|
107 |
gchar ** video_encode_prop,
|
renatofilho@754
|
108 |
gdouble video_fps,
|
renatofilho@754
|
109 |
gdouble video_rate,
|
renatofilho@754
|
110 |
guint video_width,
|
renatofilho@754
|
111 |
guint video_height,
|
renatofilho@754
|
112 |
const gchar * audio_encode,
|
renatofilho@754
|
113 |
gchar ** audio_encode_prop,
|
renatofilho@777
|
114 |
guint audio_rate,
|
renatofilho@777
|
115 |
gboolean deinterlace);
|
renatofilho@807
|
116 |
static gboolean _process_timeout_cb (gpointer user_data);
|
renatofilho@807
|
117 |
#ifdef USE_MANUAL_SINK
|
renatofilho@789
|
118 |
static void _flush_queue (GMencoder *self);
|
renatofilho@761
|
119 |
static void _buffer_arrive_cb (GstElement* object,
|
renatofilho@761
|
120 |
GstBuffer* buff,
|
renatofilho@807
|
121 |
GstPad* pad,
|
renatofilho@761
|
122 |
gpointer user_data);
|
renatofilho@807
|
123 |
#endif
|
renatofilho@807
|
124 |
|
renatofilho@807
|
125 |
|
renatofilho@752
|
126 |
static gboolean _tick_cb(gpointer data);
|
renatofilho@588
|
127 |
|
renatofilho@754
|
128 |
static guint g_mencoder_signals[LAST_SIGNAL] = { 0 };
|
renatofilho@588
|
129 |
|
renatofilho@588
|
130 |
G_DEFINE_TYPE(GMencoder, g_mencoder, G_TYPE_OBJECT)
|
renatofilho@761
|
131 |
|
renatofilho@761
|
132 |
static void g_mencoder_class_init(GMencoderClass * klass)
|
renatofilho@752
|
133 |
{
|
renatofilho@754
|
134 |
GObjectClass *object_class;
|
renatofilho@754
|
135 |
object_class = (GObjectClass *) klass;
|
renatofilho@754
|
136 |
g_type_class_add_private(klass, sizeof(GMencoderPrivate));
|
renatofilho@588
|
137 |
|
renatofilho@754
|
138 |
object_class->dispose = g_mencoder_dispose;
|
renatofilho@754
|
139 |
object_class->finalize = g_mencoder_finalize;
|
renatofilho@588
|
140 |
|
renatofilho@754
|
141 |
g_mencoder_signals[PAUSED] =
|
renatofilho@754
|
142 |
g_signal_new("paused",
|
renatofilho@754
|
143 |
G_OBJECT_CLASS_TYPE(object_class),
|
renatofilho@754
|
144 |
G_SIGNAL_RUN_FIRST,
|
renatofilho@754
|
145 |
0, NULL, NULL,
|
renatofilho@754
|
146 |
g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0);
|
renatofilho@588
|
147 |
|
renatofilho@754
|
148 |
g_mencoder_signals[PLAYING] =
|
renatofilho@754
|
149 |
g_signal_new("playing",
|
renatofilho@754
|
150 |
G_OBJECT_CLASS_TYPE(object_class),
|
renatofilho@754
|
151 |
G_SIGNAL_RUN_FIRST,
|
renatofilho@754
|
152 |
0, NULL, NULL,
|
renatofilho@754
|
153 |
g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0);
|
morphbr@748
|
154 |
|
renatofilho@754
|
155 |
g_mencoder_signals[STOPED] =
|
renatofilho@754
|
156 |
g_signal_new("stoped",
|
renatofilho@754
|
157 |
G_OBJECT_CLASS_TYPE(object_class),
|
renatofilho@754
|
158 |
G_SIGNAL_RUN_FIRST,
|
renatofilho@754
|
159 |
0, NULL, NULL,
|
renatofilho@754
|
160 |
g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0);
|
renatofilho@588
|
161 |
|
renatofilho@754
|
162 |
g_mencoder_signals[EOS] =
|
renatofilho@754
|
163 |
g_signal_new("eos",
|
renatofilho@754
|
164 |
G_OBJECT_CLASS_TYPE(object_class),
|
renatofilho@754
|
165 |
G_SIGNAL_RUN_FIRST,
|
renatofilho@754
|
166 |
0, NULL, NULL,
|
renatofilho@754
|
167 |
g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0);
|
renatofilho@588
|
168 |
|
renatofilho@754
|
169 |
g_mencoder_signals[ERROR] =
|
renatofilho@754
|
170 |
g_signal_new("error",
|
renatofilho@754
|
171 |
G_OBJECT_CLASS_TYPE(object_class),
|
renatofilho@754
|
172 |
G_SIGNAL_RUN_LAST,
|
renatofilho@754
|
173 |
0, NULL, NULL,
|
renatofilho@754
|
174 |
g_cclosure_marshal_VOID__STRING,
|
renatofilho@754
|
175 |
G_TYPE_NONE, 1, G_TYPE_STRING);
|
renatofilho@588
|
176 |
}
|
renatofilho@588
|
177 |
|
renatofilho@588
|
178 |
static void
|
renatofilho@752
|
179 |
g_mencoder_init(GMencoder * self)
|
renatofilho@588
|
180 |
{
|
renatofilho@754
|
181 |
GMencoderPrivate *priv = G_MENCODER_GET_PRIVATE(self);
|
renatofilho@754
|
182 |
priv->info = g_new0(SetupInfo, 1);
|
renatofilho@588
|
183 |
}
|
renatofilho@588
|
184 |
|
morphbr@748
|
185 |
static void
|
renatofilho@752
|
186 |
g_mencoder_dispose(GObject * object)
|
renatofilho@588
|
187 |
{
|
renatofilho@588
|
188 |
}
|
renatofilho@588
|
189 |
|
morphbr@748
|
190 |
static void
|
renatofilho@752
|
191 |
g_mencoder_finalize(GObject * object)
|
renatofilho@588
|
192 |
{
|
renatofilho@762
|
193 |
GMencoderPrivate *priv = G_MENCODER_GET_PRIVATE(object);
|
renatofilho@762
|
194 |
|
renatofilho@754
|
195 |
// TODO: clear vars
|
renatofilho@754
|
196 |
g_mencoder_close_stream(G_MENCODER(object));
|
renatofilho@762
|
197 |
g_free (priv->info);
|
renatofilho@588
|
198 |
}
|
renatofilho@588
|
199 |
|
renatofilho@754
|
200 |
GMencoder *
|
renatofilho@752
|
201 |
g_mencoder_new(void)
|
renatofilho@588
|
202 |
{
|
renatofilho@754
|
203 |
return g_object_new(G_TYPE_MENCODER, NULL);
|
renatofilho@588
|
204 |
}
|
renatofilho@588
|
205 |
|
renatofilho@600
|
206 |
|
renatofilho@588
|
207 |
static void
|
renatofilho@754
|
208 |
_obj_set_prop(GObject * obj, const gchar * prop_name,
|
renatofilho@754
|
209 |
const gchar * prop_val)
|
renatofilho@588
|
210 |
{
|
renatofilho@754
|
211 |
GValue p = { 0 };
|
renatofilho@754
|
212 |
GValue v = { 0 };
|
renatofilho@754
|
213 |
GParamSpec *s = NULL;
|
renatofilho@754
|
214 |
GObjectClass *k = G_OBJECT_GET_CLASS(obj);
|
renatofilho@588
|
215 |
|
renatofilho@588
|
216 |
|
renatofilho@754
|
217 |
g_value_init(&v, G_TYPE_STRING);
|
renatofilho@754
|
218 |
g_value_set_string(&v, prop_val);
|
renatofilho@588
|
219 |
|
renatofilho@754
|
220 |
s = g_object_class_find_property(k, prop_name);
|
renatofilho@754
|
221 |
if (s == NULL) {
|
renatofilho@754
|
222 |
g_print("Invalid property name: %s\n", prop_name);
|
renatofilho@754
|
223 |
return;
|
renatofilho@754
|
224 |
}
|
renatofilho@588
|
225 |
|
renatofilho@754
|
226 |
g_value_init(&p, s->value_type);
|
renatofilho@754
|
227 |
switch (s->value_type) {
|
renatofilho@754
|
228 |
case G_TYPE_INT:
|
renatofilho@754
|
229 |
g_value_set_int(&p, atoi(prop_val));
|
renatofilho@754
|
230 |
break;
|
renatofilho@772
|
231 |
case G_TYPE_ULONG:
|
renatofilho@772
|
232 |
g_value_set_ulong (&p, atol(prop_val));
|
renatofilho@772
|
233 |
break;
|
renatofilho@754
|
234 |
case G_TYPE_STRING:
|
renatofilho@754
|
235 |
g_value_set_string(&p, prop_val);
|
renatofilho@754
|
236 |
break;
|
renatofilho@772
|
237 |
case G_TYPE_BOOLEAN:
|
renatofilho@772
|
238 |
g_value_set_boolean(&p, (gboolean) atoi (prop_val));
|
renatofilho@772
|
239 |
break;
|
renatofilho@772
|
240 |
case G_TYPE_DOUBLE:
|
renatofilho@772
|
241 |
g_value_set_double(&p, atof (prop_val));
|
renatofilho@772
|
242 |
break;
|
renatofilho@772
|
243 |
case G_TYPE_FLOAT:
|
renatofilho@772
|
244 |
g_value_set_float(&p, (float) atof (prop_val));
|
renatofilho@772
|
245 |
break;
|
renatofilho@754
|
246 |
default:
|
renatofilho@777
|
247 |
g_value_set_enum(&p, atoi(prop_val));
|
renatofilho@777
|
248 |
g_warning ("Property %s of type %s. Not supported using default enum",
|
renatofilho@772
|
249 |
prop_name, g_type_name (s->value_type));
|
renatofilho@754
|
250 |
return;
|
renatofilho@754
|
251 |
}
|
morphbr@748
|
252 |
|
renatofilho@754
|
253 |
g_object_set_property(obj, prop_name, &p);
|
renatofilho@754
|
254 |
g_value_unset(&v);
|
renatofilho@754
|
255 |
g_value_unset(&p);
|
renatofilho@588
|
256 |
}
|
renatofilho@588
|
257 |
|
renatofilho@752
|
258 |
static GstElement *
|
renatofilho@752
|
259 |
_create_element_with_prop(const gchar * factory_name,
|
renatofilho@754
|
260 |
const gchar * element_name, gchar ** prop)
|
renatofilho@588
|
261 |
{
|
renatofilho@754
|
262 |
GstElement *ret;
|
renatofilho@754
|
263 |
int i;
|
renatofilho@588
|
264 |
|
renatofilho@754
|
265 |
ret = gst_element_factory_make(factory_name, element_name);
|
renatofilho@754
|
266 |
if (ret == NULL)
|
renatofilho@754
|
267 |
return NULL;
|
renatofilho@588
|
268 |
|
renatofilho@754
|
269 |
if (prop != NULL) {
|
renatofilho@754
|
270 |
for (i = 0; i < g_strv_length(prop); i++) {
|
renatofilho@754
|
271 |
if (prop[i] != NULL) {
|
renatofilho@781
|
272 |
char **v = g_strsplit(prop[i], "=", 2);
|
renatofilho@754
|
273 |
if (g_strv_length(v) == 2) {
|
renatofilho@754
|
274 |
_obj_set_prop(G_OBJECT(ret), v[0], v[1]);
|
renatofilho@754
|
275 |
}
|
renatofilho@754
|
276 |
g_strfreev(v);
|
renatofilho@754
|
277 |
}
|
renatofilho@754
|
278 |
}
|
renatofilho@754
|
279 |
}
|
renatofilho@588
|
280 |
|
renatofilho@754
|
281 |
return ret;
|
renatofilho@588
|
282 |
|
renatofilho@588
|
283 |
}
|
renatofilho@588
|
284 |
|
renatofilho@752
|
285 |
static GstElement *
|
renatofilho@752
|
286 |
_create_audio_bin(const gchar * encode, gchar ** encode_prop, gint rate)
|
renatofilho@588
|
287 |
{
|
renatofilho@754
|
288 |
GstElement *abin = NULL;
|
renatofilho@754
|
289 |
GstElement *aqueue = NULL;
|
renatofilho@754
|
290 |
GstElement *aconvert = NULL;
|
renatofilho@754
|
291 |
GstElement *aencode = NULL;
|
renatofilho@754
|
292 |
GstElement *aqueue_src = NULL;
|
renatofilho@754
|
293 |
GstPad *apad = NULL;
|
renatofilho@588
|
294 |
|
renatofilho@754
|
295 |
// audio/x-raw-int ! queue ! audioconvert ! faac ! rtpmp4gpay !
|
renatofilho@754
|
296 |
// udpsink name=upd_audio host=224.0.0.1 port=5002
|
renatofilho@754
|
297 |
abin = gst_bin_new("abin");
|
renatofilho@754
|
298 |
aqueue = gst_element_factory_make("queue", "aqueue");
|
renatofilho@754
|
299 |
aconvert = gst_element_factory_make("audioconvert", "aconvert");
|
renatofilho@754
|
300 |
aencode =
|
renatofilho@754
|
301 |
_create_element_with_prop((encode ? encode : "lame"), "aencode",
|
renatofilho@754
|
302 |
encode_prop);
|
renatofilho@754
|
303 |
aqueue_src = gst_element_factory_make("queue", "aqueue_src");
|
renatofilho@588
|
304 |
|
renatofilho@754
|
305 |
if ((abin == NULL) || (aqueue == NULL) || (aconvert == NULL)
|
renatofilho@754
|
306 |
|| (aencode == NULL) || (aqueue_src == NULL)) {
|
renatofilho@754
|
307 |
g_warning("Audio elements not found");
|
renatofilho@754
|
308 |
goto error;
|
renatofilho@754
|
309 |
}
|
renatofilho@752
|
310 |
|
renatofilho@754
|
311 |
g_object_set(G_OBJECT(aencode), "bitrate", 32, NULL);
|
renatofilho@754
|
312 |
/*
|
renatofilho@754
|
313 |
* if (rate > 0) { g_object_set (G_OBJECT (aencode), "bitrate", 32,
|
renatofilho@754
|
314 |
* NULL); }
|
renatofilho@754
|
315 |
*/
|
renatofilho@754
|
316 |
|
renatofilho@754
|
317 |
gst_bin_add_many(GST_BIN(abin), aqueue, aconvert, aencode, aqueue_src,
|
renatofilho@754
|
318 |
NULL);
|
renatofilho@754
|
319 |
if (gst_element_link_many(aqueue, aconvert, aencode, aqueue_src, NULL)
|
renatofilho@754
|
320 |
== FALSE) {
|
renatofilho@754
|
321 |
g_warning("Not Link audio elements");
|
morphbr@748
|
322 |
}
|
renatofilho@754
|
323 |
// TODO: apply audio rate
|
renatofilho@588
|
324 |
|
renatofilho@754
|
325 |
// ghost pad the audio bin
|
renatofilho@754
|
326 |
apad = gst_element_get_pad(aqueue, "sink");
|
renatofilho@754
|
327 |
gst_element_add_pad(abin, gst_ghost_pad_new("sink", apad));
|
renatofilho@754
|
328 |
gst_object_unref(apad);
|
renatofilho@600
|
329 |
|
renatofilho@754
|
330 |
apad = gst_element_get_pad(aqueue_src, "src");
|
renatofilho@754
|
331 |
gst_element_add_pad(abin, gst_ghost_pad_new("src", apad));
|
renatofilho@754
|
332 |
gst_object_unref(apad);
|
renatofilho@588
|
333 |
|
renatofilho@754
|
334 |
return abin;
|
renatofilho@754
|
335 |
error:
|
renatofilho@754
|
336 |
if (abin != NULL)
|
renatofilho@754
|
337 |
gst_object_unref(abin);
|
renatofilho@588
|
338 |
|
renatofilho@754
|
339 |
if (aqueue != NULL)
|
renatofilho@754
|
340 |
gst_object_unref(aqueue);
|
morphbr@748
|
341 |
|
renatofilho@754
|
342 |
if (aconvert != NULL)
|
renatofilho@754
|
343 |
gst_object_unref(aconvert);
|
renatofilho@588
|
344 |
|
renatofilho@754
|
345 |
if (aencode != NULL)
|
renatofilho@754
|
346 |
gst_object_unref(aencode);
|
renatofilho@588
|
347 |
|
renatofilho@754
|
348 |
if (aqueue_src != NULL)
|
renatofilho@754
|
349 |
gst_object_unref(aqueue_src);
|
renatofilho@588
|
350 |
|
renatofilho@754
|
351 |
if (apad != NULL)
|
renatofilho@754
|
352 |
gst_object_unref(apad);
|
renatofilho@588
|
353 |
|
renatofilho@754
|
354 |
return NULL;
|
renatofilho@588
|
355 |
}
|
renatofilho@588
|
356 |
|
renatofilho@588
|
357 |
|
renatofilho@588
|
358 |
|
renatofilho@588
|
359 |
|
renatofilho@754
|
360 |
// queue ! videoscale ! video/x-raw-yuv,width=240,height=144 ! colorspace
|
renatofilho@754
|
361 |
// ! rate ! encode ! queue
|
renatofilho@752
|
362 |
static GstElement *
|
renatofilho@752
|
363 |
_create_video_bin(const gchar * encode,
|
renatofilho@754
|
364 |
gchar ** encode_prop,
|
renatofilho@777
|
365 |
gdouble fps, gint rate, guint width, guint height,
|
renatofilho@777
|
366 |
gboolean use_deinterlace)
|
renatofilho@588
|
367 |
{
|
renatofilho@754
|
368 |
GstElement *vbin = NULL;
|
renatofilho@754
|
369 |
GstElement *vqueue = NULL;
|
renatofilho@754
|
370 |
GstElement *vqueue_src = NULL;
|
renatofilho@754
|
371 |
GstElement *vcolorspace = NULL;
|
renatofilho@754
|
372 |
GstElement *vencode = NULL;
|
renatofilho@754
|
373 |
GstElement *vrate = NULL;
|
renatofilho@789
|
374 |
GstElement *deinterlace = NULL;
|
renatofilho@777
|
375 |
GstElement *walk = NULL;
|
renatofilho@754
|
376 |
GstPad *vpad = NULL;
|
renatofilho@588
|
377 |
|
renatofilho@754
|
378 |
vbin = gst_bin_new("vbin");
|
renatofilho@754
|
379 |
vqueue = gst_element_factory_make("queue", "vqueue");
|
renatofilho@754
|
380 |
vcolorspace =
|
renatofilho@754
|
381 |
gst_element_factory_make("ffmpegcolorspace", "colorspace");
|
renatofilho@616
|
382 |
|
renatofilho@777
|
383 |
if (use_deinterlace) {
|
renatofilho@789
|
384 |
deinterlace = gst_element_factory_make ("ffdeinterlace", "deinterlace");
|
renatofilho@789
|
385 |
if (deinterlace == NULL) {
|
renatofilho@789
|
386 |
g_warning ("Fail to create deinterlace element: Continue without deinterlace.");
|
renatofilho@789
|
387 |
}
|
renatofilho@777
|
388 |
}
|
renatofilho@777
|
389 |
|
renatofilho@777
|
390 |
|
renatofilho@754
|
391 |
vencode = _create_element_with_prop((encode !=
|
renatofilho@754
|
392 |
NULL ? encode :
|
renatofilho@754
|
393 |
"ffenc_mpeg1video"), "vencode",
|
renatofilho@754
|
394 |
encode_prop);
|
renatofilho@754
|
395 |
vqueue_src = gst_element_factory_make("queue", "queue_src");
|
renatofilho@588
|
396 |
|
renatofilho@754
|
397 |
if ((vbin == NULL) || (vqueue == NULL) || (vcolorspace == NULL)
|
renatofilho@754
|
398 |
|| (vencode == NULL) || (vqueue_src == NULL)) {
|
renatofilho@754
|
399 |
g_warning("Video elements not found");
|
renatofilho@754
|
400 |
goto error;
|
renatofilho@754
|
401 |
}
|
renatofilho@588
|
402 |
|
renatofilho@754
|
403 |
gst_bin_add_many(GST_BIN(vbin), vqueue, vcolorspace, vencode,
|
renatofilho@754
|
404 |
vqueue_src, NULL);
|
morphbr@748
|
405 |
|
renatofilho@777
|
406 |
if (deinterlace != NULL) {
|
renatofilho@777
|
407 |
gst_bin_add(GST_BIN(vbin), deinterlace);
|
renatofilho@777
|
408 |
gst_element_link (vqueue, deinterlace);
|
renatofilho@777
|
409 |
walk = deinterlace;
|
renatofilho@777
|
410 |
} else {
|
renatofilho@777
|
411 |
walk = vqueue;
|
renatofilho@777
|
412 |
}
|
renatofilho@777
|
413 |
|
renatofilho@754
|
414 |
if ((width > 0) && (height > 0)) {
|
renatofilho@754
|
415 |
// Scalling video
|
renatofilho@754
|
416 |
GstCaps *vcaps;
|
renatofilho@754
|
417 |
GstElement *vscale =
|
renatofilho@754
|
418 |
gst_element_factory_make("videoscale", "vscale");
|
renatofilho@588
|
419 |
|
renatofilho@777
|
420 |
g_object_set (G_OBJECT (vscale), "method", 1, NULL);
|
renatofilho@777
|
421 |
|
renatofilho@754
|
422 |
gst_bin_add(GST_BIN(vbin), vscale);
|
renatofilho@588
|
423 |
|
renatofilho@754
|
424 |
vcaps = gst_caps_new_simple("video/x-raw-yuv",
|
renatofilho@754
|
425 |
"width", G_TYPE_INT, width,
|
renatofilho@754
|
426 |
"height", G_TYPE_INT, height, NULL);
|
renatofilho@588
|
427 |
|
renatofilho@777
|
428 |
gst_element_link(walk, vscale);
|
morphbr@748
|
429 |
|
renatofilho@754
|
430 |
if (gst_element_link_filtered(vscale, vcolorspace, vcaps) == FALSE) {
|
renatofilho@754
|
431 |
g_warning("Fail to resize video");
|
renatofilho@754
|
432 |
gst_object_unref(vcaps);
|
renatofilho@754
|
433 |
gst_object_unref(vscale);
|
renatofilho@754
|
434 |
goto error;
|
renatofilho@754
|
435 |
}
|
renatofilho@754
|
436 |
gst_caps_unref(vcaps);
|
renatofilho@754
|
437 |
} else {
|
renatofilho@777
|
438 |
gst_element_link(walk, vcolorspace);
|
renatofilho@754
|
439 |
}
|
renatofilho@588
|
440 |
|
renatofilho@754
|
441 |
if (fps > 0) {
|
renatofilho@754
|
442 |
// Changing the video fps
|
renatofilho@754
|
443 |
GstCaps *vcaps;
|
renatofilho@754
|
444 |
vrate = gst_element_factory_make("videorate", "vrate");
|
renatofilho@588
|
445 |
|
renatofilho@754
|
446 |
gst_bin_add(GST_BIN(vbin), vrate);
|
renatofilho@588
|
447 |
|
renatofilho@754
|
448 |
if (gst_element_link(vcolorspace, vrate) == FALSE) {
|
renatofilho@754
|
449 |
g_warning("Fail to link video elements");
|
renatofilho@754
|
450 |
goto error;
|
renatofilho@754
|
451 |
}
|
renatofilho@588
|
452 |
|
renatofilho@754
|
453 |
vcaps = gst_caps_new_simple("video/x-raw-yuv",
|
renatofilho@754
|
454 |
"framerate", GST_TYPE_FRACTION,
|
renatofilho@754
|
455 |
(int) (fps * 1000), 1000, NULL);
|
renatofilho@588
|
456 |
|
renatofilho@754
|
457 |
if (gst_element_link_filtered(vrate, vencode, vcaps) == FALSE) {
|
renatofilho@754
|
458 |
g_warning("Fail to link vrate with vencode.");
|
renatofilho@754
|
459 |
goto error;
|
renatofilho@754
|
460 |
}
|
renatofilho@754
|
461 |
gst_caps_unref(vcaps);
|
renatofilho@754
|
462 |
} else {
|
renatofilho@754
|
463 |
if (gst_element_link(vcolorspace, vencode) == FALSE) {
|
renatofilho@754
|
464 |
g_warning("Fail to link colorspace and video encode element.");
|
renatofilho@754
|
465 |
goto error;
|
renatofilho@754
|
466 |
}
|
renatofilho@754
|
467 |
}
|
morphbr@748
|
468 |
|
renatofilho@754
|
469 |
gst_element_link(vencode, vqueue_src);
|
renatofilho@588
|
470 |
|
renatofilho@754
|
471 |
// ghost pad the video bin
|
renatofilho@754
|
472 |
vpad = gst_element_get_pad(vqueue, "sink");
|
renatofilho@754
|
473 |
gst_element_add_pad(vbin, gst_ghost_pad_new("sink", vpad));
|
renatofilho@754
|
474 |
gst_object_unref(vpad);
|
morphbr@748
|
475 |
|
renatofilho@754
|
476 |
vpad = gst_element_get_pad(vqueue_src, "src");
|
renatofilho@754
|
477 |
gst_element_add_pad(vbin, gst_ghost_pad_new("src", vpad));
|
renatofilho@754
|
478 |
gst_object_unref(vpad);
|
renatofilho@588
|
479 |
|
renatofilho@754
|
480 |
return vbin;
|
renatofilho@588
|
481 |
|
renatofilho@754
|
482 |
error:
|
renatofilho@754
|
483 |
if (vpad != NULL)
|
renatofilho@754
|
484 |
gst_object_unref(vpad);
|
renatofilho@588
|
485 |
|
renatofilho@754
|
486 |
if (vbin != NULL)
|
renatofilho@754
|
487 |
gst_object_unref(vbin);
|
renatofilho@588
|
488 |
|
renatofilho@754
|
489 |
if (vqueue != NULL)
|
renatofilho@754
|
490 |
gst_object_unref(vqueue);
|
renatofilho@588
|
491 |
|
renatofilho@754
|
492 |
if (vencode != NULL)
|
renatofilho@754
|
493 |
gst_object_unref(vencode);
|
renatofilho@588
|
494 |
|
renatofilho@754
|
495 |
if (vqueue_src != NULL)
|
renatofilho@754
|
496 |
gst_object_unref(vqueue_src);
|
renatofilho@588
|
497 |
|
renatofilho@754
|
498 |
if (vcolorspace != NULL)
|
renatofilho@754
|
499 |
gst_object_unref(vcolorspace);
|
renatofilho@588
|
500 |
|
renatofilho@754
|
501 |
return NULL;
|
renatofilho@588
|
502 |
}
|
renatofilho@588
|
503 |
|
renatofilho@588
|
504 |
|
renatofilho@600
|
505 |
|
renatofilho@757
|
506 |
gboolean
|
renatofilho@752
|
507 |
g_mencoder_setup_stream(GMencoder * self,
|
renatofilho@768
|
508 |
gboolean chunked,
|
renatofilho@777
|
509 |
gboolean deinterlace,
|
renatofilho@754
|
510 |
const gchar * mux_name,
|
renatofilho@754
|
511 |
const gchar * video_encode,
|
renatofilho@754
|
512 |
gchar ** video_encode_prop,
|
renatofilho@754
|
513 |
gdouble video_fps,
|
renatofilho@754
|
514 |
gdouble video_rate,
|
renatofilho@754
|
515 |
guint video_width,
|
renatofilho@754
|
516 |
guint video_height,
|
renatofilho@754
|
517 |
const gchar * audio_encode,
|
renatofilho@754
|
518 |
gchar ** audio_encode_prop,
|
renatofilho@754
|
519 |
guint audio_rate, const gchar * out_uri)
|
renatofilho@600
|
520 |
{
|
renatofilho@754
|
521 |
GMencoderPrivate *priv = G_MENCODER_GET_PRIVATE(self);
|
renatofilho@754
|
522 |
if (priv->ready == TRUE) {
|
renatofilho@754
|
523 |
g_warning
|
renatofilho@754
|
524 |
("Stream already configured. You need close stream first.");
|
renatofilho@757
|
525 |
return FALSE;
|
renatofilho@754
|
526 |
}
|
renatofilho@600
|
527 |
|
renatofilho@754
|
528 |
_close_output(self);
|
renatofilho@789
|
529 |
if (_open_output(self, out_uri) == FALSE) {
|
renatofilho@757
|
530 |
return FALSE;
|
renatofilho@789
|
531 |
}
|
renatofilho@634
|
532 |
|
renatofilho@754
|
533 |
priv->sources = 0;
|
renatofilho@768
|
534 |
priv->send_chunked = chunked;
|
renatofilho@754
|
535 |
priv->pipe = _create_pipeline(self,
|
renatofilho@754
|
536 |
video_encode,
|
renatofilho@754
|
537 |
mux_name,
|
renatofilho@754
|
538 |
video_encode_prop,
|
renatofilho@754
|
539 |
video_fps,
|
renatofilho@754
|
540 |
video_rate,
|
renatofilho@754
|
541 |
video_width,
|
renatofilho@754
|
542 |
video_height,
|
renatofilho@754
|
543 |
audio_encode, audio_encode_prop,
|
renatofilho@777
|
544 |
audio_rate,
|
renatofilho@777
|
545 |
deinterlace);
|
renatofilho@600
|
546 |
|
renatofilho@757
|
547 |
return (priv->pipe != NULL);
|
renatofilho@600
|
548 |
}
|
renatofilho@600
|
549 |
|
renatofilho@600
|
550 |
|
renatofilho@600
|
551 |
gboolean
|
renatofilho@752
|
552 |
g_mencoder_append_uri(GMencoder * self, const gchar * uri)
|
renatofilho@600
|
553 |
{
|
renatofilho@754
|
554 |
GstPad *pad_src;
|
renatofilho@754
|
555 |
GstPad *pad_sink;
|
renatofilho@754
|
556 |
GstElement *src;
|
renatofilho@754
|
557 |
GMencoderPrivate *priv = G_MENCODER_GET_PRIVATE(self);
|
renatofilho@754
|
558 |
gboolean ret = FALSE;
|
renatofilho@754
|
559 |
GstElement *ap = NULL;
|
renatofilho@754
|
560 |
GstElement *vp = NULL;
|
renatofilho@634
|
561 |
|
renatofilho@600
|
562 |
|
renatofilho@754
|
563 |
g_return_val_if_fail(priv->pipe != NULL, FALSE);
|
renatofilho@754
|
564 |
g_return_val_if_fail(priv->ready == FALSE, FALSE);
|
renatofilho@600
|
565 |
|
renatofilho@789
|
566 |
src = _create_source(self, uri);
|
renatofilho@754
|
567 |
if (src == NULL)
|
renatofilho@754
|
568 |
return FALSE;
|
renatofilho@600
|
569 |
|
renatofilho@754
|
570 |
priv->src = gst_bin_get_by_name(GST_BIN(src), "src");
|
renatofilho@671
|
571 |
|
renatofilho@754
|
572 |
gst_bin_add(GST_BIN(priv->pipe), src);
|
renatofilho@600
|
573 |
|
renatofilho@754
|
574 |
ap = gst_bin_get_by_name(GST_BIN(priv->pipe), "abin");
|
renatofilho@754
|
575 |
vp = gst_bin_get_by_name(GST_BIN(priv->pipe), "vbin");
|
renatofilho@634
|
576 |
|
renatofilho@754
|
577 |
if ((vp == NULL) || (ap == NULL)) {
|
renatofilho@754
|
578 |
g_warning("Fail to get output bin");
|
renatofilho@754
|
579 |
goto error;
|
renatofilho@754
|
580 |
}
|
renatofilho@600
|
581 |
|
renatofilho@754
|
582 |
pad_src = gst_element_get_pad(src, "src_audio");
|
renatofilho@754
|
583 |
pad_sink = gst_element_get_compatible_pad(ap,
|
renatofilho@754
|
584 |
pad_src,
|
renatofilho@754
|
585 |
gst_pad_get_caps(pad_src));
|
renatofilho@600
|
586 |
|
renatofilho@754
|
587 |
if ((pad_sink == NULL) || (pad_src == NULL))
|
renatofilho@754
|
588 |
goto error;
|
renatofilho@600
|
589 |
|
renatofilho@754
|
590 |
GstPadLinkReturn lret = gst_pad_link(pad_src, pad_sink);
|
renatofilho@754
|
591 |
if (lret != GST_PAD_LINK_OK)
|
renatofilho@754
|
592 |
goto error;
|
renatofilho@600
|
593 |
|
renatofilho@754
|
594 |
gst_object_unref(pad_src);
|
renatofilho@754
|
595 |
gst_object_unref(pad_sink);
|
renatofilho@600
|
596 |
|
renatofilho@754
|
597 |
pad_src = gst_element_get_pad(src, "src_video");
|
renatofilho@754
|
598 |
pad_sink = gst_element_get_compatible_pad(vp,
|
renatofilho@754
|
599 |
pad_src,
|
renatofilho@754
|
600 |
gst_pad_get_caps(pad_src));
|
renatofilho@600
|
601 |
|
renatofilho@754
|
602 |
if ((pad_src == NULL) || (pad_sink == NULL))
|
renatofilho@754
|
603 |
goto error;
|
renatofilho@600
|
604 |
|
renatofilho@754
|
605 |
if (gst_pad_link(pad_src, pad_sink) != GST_PAD_LINK_OK) {
|
renatofilho@754
|
606 |
g_warning("invalid source. video");
|
renatofilho@754
|
607 |
goto error;
|
renatofilho@754
|
608 |
}
|
renatofilho@600
|
609 |
|
renatofilho@754
|
610 |
priv->sources++;
|
renatofilho@754
|
611 |
ret = TRUE;
|
renatofilho@754
|
612 |
error:
|
renatofilho@600
|
613 |
|
renatofilho@754
|
614 |
if ((src != NULL) && (ret == FALSE)) {
|
renatofilho@754
|
615 |
gst_bin_remove(GST_BIN(priv->pipe), src);
|
renatofilho@754
|
616 |
gst_object_unref(src);
|
renatofilho@754
|
617 |
}
|
renatofilho@600
|
618 |
|
renatofilho@754
|
619 |
if (ap != NULL)
|
renatofilho@754
|
620 |
gst_object_unref(ap);
|
renatofilho@600
|
621 |
|
renatofilho@754
|
622 |
if (vp != NULL)
|
renatofilho@754
|
623 |
gst_object_unref(vp);
|
renatofilho@600
|
624 |
|
renatofilho@754
|
625 |
if (pad_src != NULL)
|
renatofilho@754
|
626 |
gst_object_unref(pad_src);
|
renatofilho@600
|
627 |
|
renatofilho@754
|
628 |
if (pad_sink != NULL)
|
renatofilho@754
|
629 |
gst_object_unref(pad_sink);
|
renatofilho@600
|
630 |
|
renatofilho@754
|
631 |
return ret;
|
renatofilho@600
|
632 |
}
|
renatofilho@600
|
633 |
|
renatofilho@600
|
634 |
|
renatofilho@600
|
635 |
|
morphbr@748
|
636 |
void
|
renatofilho@752
|
637 |
g_mencoder_remove_uri(GMencoder * self, const gchar * uri)
|
renatofilho@600
|
638 |
{
|
renatofilho@754
|
639 |
// GMencoderPrivate *priv = G_MENCODER_GET_PRIVATE (self);
|
renatofilho@754
|
640 |
// TODO: remove src
|
renatofilho@600
|
641 |
}
|
renatofilho@600
|
642 |
|
renatofilho@600
|
643 |
void
|
renatofilho@752
|
644 |
g_mencoder_play_stream(GMencoder * self)
|
renatofilho@600
|
645 |
{
|
renatofilho@754
|
646 |
GMencoderPrivate *priv = G_MENCODER_GET_PRIVATE(self);
|
renatofilho@754
|
647 |
g_return_if_fail(priv->ready == FALSE);
|
renatofilho@754
|
648 |
priv->ready = TRUE;
|
renatofilho@754
|
649 |
gst_element_set_state(priv->pipe, GST_STATE_PLAYING);
|
renatofilho@807
|
650 |
if (priv->tick_id != 0) {
|
renatofilho@807
|
651 |
g_source_remove (priv->tick_id);
|
renatofilho@807
|
652 |
}
|
renatofilho@754
|
653 |
priv->tick_id = g_timeout_add(500, _tick_cb, self);
|
renatofilho@807
|
654 |
|
renatofilho@807
|
655 |
if (priv->timeout_id != 0) {
|
renatofilho@807
|
656 |
g_source_remove (priv->timeout_id);
|
renatofilho@807
|
657 |
}
|
renatofilho@810
|
658 |
//priv->timeout_id = g_timeout_add(GMENCODER_TIMEOUT, _process_timeout_cb, self);
|
renatofilho@600
|
659 |
}
|
renatofilho@600
|
660 |
|
renatofilho@600
|
661 |
void
|
renatofilho@752
|
662 |
g_mencoder_pause_stream(GMencoder * self)
|
renatofilho@600
|
663 |
{
|
renatofilho@754
|
664 |
GMencoderPrivate *priv = G_MENCODER_GET_PRIVATE(self);
|
renatofilho@754
|
665 |
g_return_if_fail(priv->ready == TRUE);
|
renatofilho@754
|
666 |
gst_element_set_state(priv->pipe, GST_STATE_PAUSED);
|
renatofilho@600
|
667 |
}
|
renatofilho@600
|
668 |
|
renatofilho@600
|
669 |
void
|
renatofilho@752
|
670 |
g_mencoder_close_stream(GMencoder * self)
|
renatofilho@600
|
671 |
{
|
renatofilho@600
|
672 |
|
renatofilho@754
|
673 |
GMencoderPrivate *priv = G_MENCODER_GET_PRIVATE(self);
|
renatofilho@754
|
674 |
if (priv->tick_id != 0) {
|
renatofilho@754
|
675 |
g_source_remove(priv->tick_id);
|
renatofilho@754
|
676 |
priv->tick_id = 0;
|
renatofilho@754
|
677 |
}
|
renatofilho@600
|
678 |
|
renatofilho@807
|
679 |
if (priv->timeout_id != 0) {
|
renatofilho@807
|
680 |
g_source_remove (priv->timeout_id);
|
renatofilho@807
|
681 |
priv->timeout_id = 0;
|
renatofilho@807
|
682 |
}
|
renatofilho@807
|
683 |
|
renatofilho@754
|
684 |
if (priv->pipe != NULL) {
|
renatofilho@754
|
685 |
// TODO: fixe pipeline dispose
|
renatofilho@786
|
686 |
//gst_element_set_state (priv->pipe, GST_STATE_NULL);
|
renatofilho@754
|
687 |
// g_debug ("SETING STATE TO NULL: OK");
|
renatofilho@754
|
688 |
// gst_element_set_state (priv->pipe, GST_STATE_NULL);
|
renatofilho@786
|
689 |
//gst_object_unref (priv->pipe);
|
renatofilho@780
|
690 |
//gst_object_unref(priv->src);
|
renatofilho@754
|
691 |
priv->src = NULL;
|
renatofilho@754
|
692 |
priv->pipe = NULL;
|
renatofilho@754
|
693 |
priv->abin = NULL;
|
renatofilho@754
|
694 |
priv->vbin = NULL;
|
renatofilho@807
|
695 |
priv->sink = NULL;
|
renatofilho@754
|
696 |
}
|
renatofilho@754
|
697 |
priv->ready = FALSE;
|
renatofilho@600
|
698 |
}
|
renatofilho@600
|
699 |
|
renatofilho@752
|
700 |
static GstElement *
|
renatofilho@752
|
701 |
_create_pipeline(GMencoder * self,
|
renatofilho@754
|
702 |
const gchar * video_encode,
|
renatofilho@754
|
703 |
const gchar * mux_name,
|
renatofilho@754
|
704 |
gchar ** video_encode_prop,
|
renatofilho@754
|
705 |
gdouble video_fps,
|
renatofilho@754
|
706 |
gdouble video_rate,
|
renatofilho@754
|
707 |
guint video_width,
|
renatofilho@754
|
708 |
guint video_height,
|
renatofilho@754
|
709 |
const gchar * audio_encode,
|
renatofilho@777
|
710 |
gchar ** audio_encode_prop, guint audio_rate,
|
renatofilho@789
|
711 |
gboolean deinterlace)
|
renatofilho@588
|
712 |
{
|
renatofilho@754
|
713 |
GstBus *bus = NULL;
|
renatofilho@754
|
714 |
GstElement *pipe = NULL;
|
renatofilho@754
|
715 |
GstElement *sink = NULL;
|
renatofilho@754
|
716 |
GstElement *mux = NULL;
|
renatofilho@754
|
717 |
GstElement *abin = NULL;
|
renatofilho@754
|
718 |
GstElement *vbin = NULL;
|
renatofilho@754
|
719 |
GstElement *queue = NULL;
|
renatofilho@754
|
720 |
GstPad *aux_pad = NULL;
|
renatofilho@754
|
721 |
GstPad *mux_pad = NULL;
|
renatofilho@588
|
722 |
|
renatofilho@754
|
723 |
pipe = gst_pipeline_new("pipe");
|
renatofilho@588
|
724 |
|
renatofilho@754
|
725 |
mux =
|
renatofilho@754
|
726 |
gst_element_factory_make((mux_name ? mux_name : "ffmux_mpeg"),
|
renatofilho@754
|
727 |
"mux");
|
renatofilho@754
|
728 |
if (mux == NULL)
|
renatofilho@754
|
729 |
goto error;
|
renatofilho@588
|
730 |
|
renatofilho@754
|
731 |
queue = gst_element_factory_make("queue", "queueu_sink");
|
renatofilho@807
|
732 |
|
renatofilho@807
|
733 |
|
renatofilho@807
|
734 |
sink = gst_element_factory_make("fakesink", "sink");
|
renatofilho@807
|
735 |
g_object_set (G_OBJECT (sink), "signal-handoffs", TRUE, NULL);
|
renatofilho@807
|
736 |
g_signal_connect (G_OBJECT (sink),
|
renatofilho@761
|
737 |
"handoff",
|
renatofilho@761
|
738 |
G_CALLBACK (_buffer_arrive_cb),
|
renatofilho@762
|
739 |
self);
|
renatofilho@600
|
740 |
|
renatofilho@754
|
741 |
abin = _create_audio_bin(audio_encode, audio_encode_prop, audio_rate);
|
renatofilho@754
|
742 |
if (abin == NULL)
|
renatofilho@754
|
743 |
goto error;
|
renatofilho@588
|
744 |
|
renatofilho@754
|
745 |
vbin =
|
renatofilho@754
|
746 |
_create_video_bin(video_encode, video_encode_prop, video_fps,
|
renatofilho@777
|
747 |
video_rate, video_width, video_height, deinterlace);
|
renatofilho@754
|
748 |
if (vbin == NULL)
|
renatofilho@754
|
749 |
goto error;
|
renatofilho@588
|
750 |
|
renatofilho@754
|
751 |
// Finish Pipe
|
renatofilho@807
|
752 |
gst_bin_add_many(GST_BIN(pipe), abin, vbin, mux, queue, sink, NULL);
|
renatofilho@600
|
753 |
|
renatofilho@600
|
754 |
|
renatofilho@754
|
755 |
// Link bins with mux
|
renatofilho@754
|
756 |
aux_pad = gst_element_get_pad(abin, "src");
|
renatofilho@754
|
757 |
mux_pad =
|
renatofilho@754
|
758 |
gst_element_get_compatible_pad(mux, aux_pad,
|
renatofilho@754
|
759 |
GST_PAD_CAPS(aux_pad));
|
renatofilho@754
|
760 |
if (mux_pad == NULL) {
|
renatofilho@754
|
761 |
g_warning("Mux element no have audio PAD");
|
renatofilho@754
|
762 |
goto error;
|
renatofilho@754
|
763 |
}
|
renatofilho@754
|
764 |
GstPadLinkReturn ret = gst_pad_link(aux_pad, mux_pad);
|
renatofilho@754
|
765 |
if (ret != GST_PAD_LINK_OK) {
|
renatofilho@754
|
766 |
g_warning("Fail link audio and mux: %d", ret);
|
renatofilho@754
|
767 |
goto error;
|
morphbr@748
|
768 |
|
renatofilho@754
|
769 |
}
|
renatofilho@754
|
770 |
gst_object_unref(aux_pad);
|
renatofilho@754
|
771 |
gst_object_unref(mux_pad);
|
renatofilho@588
|
772 |
|
renatofilho@754
|
773 |
aux_pad = gst_element_get_pad(vbin, "src");
|
renatofilho@754
|
774 |
mux_pad =
|
renatofilho@754
|
775 |
gst_element_get_compatible_pad(mux, aux_pad,
|
renatofilho@754
|
776 |
GST_PAD_CAPS(aux_pad));
|
renatofilho@754
|
777 |
if (mux_pad == NULL) {
|
renatofilho@754
|
778 |
g_warning("Mux element no have video PAD");
|
renatofilho@754
|
779 |
goto error;
|
renatofilho@754
|
780 |
}
|
renatofilho@754
|
781 |
ret = gst_pad_link(aux_pad, mux_pad);
|
renatofilho@754
|
782 |
if (ret != GST_PAD_LINK_OK) {
|
renatofilho@754
|
783 |
g_warning("Fail link video and mux: %d", ret);
|
renatofilho@754
|
784 |
goto error;
|
renatofilho@754
|
785 |
}
|
renatofilho@754
|
786 |
gst_object_unref(aux_pad);
|
renatofilho@754
|
787 |
gst_object_unref(mux_pad);
|
renatofilho@754
|
788 |
aux_pad = NULL;
|
renatofilho@754
|
789 |
mux_pad = NULL;
|
renatofilho@588
|
790 |
|
renatofilho@754
|
791 |
// Link mux with sink
|
renatofilho@807
|
792 |
gst_element_link_many(mux, queue, sink, NULL);
|
renatofilho@588
|
793 |
|
renatofilho@754
|
794 |
bus = gst_pipeline_get_bus(GST_PIPELINE(pipe));
|
renatofilho@754
|
795 |
gst_bus_add_watch(bus, _pipeline_bus_cb, self);
|
renatofilho@754
|
796 |
gst_object_unref(bus);
|
renatofilho@754
|
797 |
return pipe;
|
renatofilho@588
|
798 |
|
renatofilho@754
|
799 |
error:
|
renatofilho@754
|
800 |
g_warning("Invalid uri");
|
morphbr@748
|
801 |
|
renatofilho@754
|
802 |
if (pipe != NULL) {
|
renatofilho@754
|
803 |
gst_object_unref(pipe);
|
renatofilho@754
|
804 |
}
|
renatofilho@588
|
805 |
|
renatofilho@588
|
806 |
|
renatofilho@754
|
807 |
if (mux != NULL) {
|
renatofilho@754
|
808 |
gst_object_unref(mux);
|
renatofilho@754
|
809 |
}
|
renatofilho@588
|
810 |
|
renatofilho@754
|
811 |
if (mux_pad != NULL) {
|
renatofilho@754
|
812 |
gst_object_unref(mux_pad);
|
renatofilho@754
|
813 |
}
|
renatofilho@588
|
814 |
|
renatofilho@754
|
815 |
if (aux_pad != NULL) {
|
renatofilho@754
|
816 |
gst_object_unref(mux_pad);
|
renatofilho@754
|
817 |
}
|
renatofilho@588
|
818 |
|
renatofilho@754
|
819 |
if (sink != NULL) {
|
renatofilho@754
|
820 |
gst_object_unref(sink);
|
renatofilho@754
|
821 |
}
|
renatofilho@588
|
822 |
|
renatofilho@754
|
823 |
if (abin != NULL) {
|
renatofilho@754
|
824 |
gst_object_unref(abin);
|
renatofilho@754
|
825 |
}
|
renatofilho@588
|
826 |
|
renatofilho@754
|
827 |
if (vbin != NULL) {
|
renatofilho@754
|
828 |
gst_object_unref(vbin);
|
renatofilho@754
|
829 |
}
|
renatofilho@588
|
830 |
|
renatofilho@754
|
831 |
return FALSE;
|
renatofilho@588
|
832 |
}
|
renatofilho@588
|
833 |
|
renatofilho@600
|
834 |
|
renatofilho@600
|
835 |
static void
|
renatofilho@752
|
836 |
_close_output(GMencoder * self)
|
renatofilho@588
|
837 |
{
|
renatofilho@600
|
838 |
}
|
renatofilho@600
|
839 |
|
renatofilho@752
|
840 |
static GstElement *
|
renatofilho@789
|
841 |
_create_v4l_source (GMencoder *self, const gchar * uri)
|
renatofilho@789
|
842 |
{
|
renatofilho@789
|
843 |
gchar **info;
|
renatofilho@789
|
844 |
GMencoderPrivate *priv = G_MENCODER_GET_PRIVATE(self);
|
renatofilho@789
|
845 |
|
renatofilho@789
|
846 |
|
renatofilho@789
|
847 |
info = g_strsplit (uri+6, ":", 3);
|
renatofilho@789
|
848 |
if (g_strv_length (info) != 3) {
|
renatofilho@789
|
849 |
return NULL;
|
renatofilho@789
|
850 |
}
|
renatofilho@789
|
851 |
|
renatofilho@789
|
852 |
priv->v4lsrc = gst_element_factory_make ("v4l2src", "src");
|
renatofilho@789
|
853 |
g_debug ("channel %s, norm %s, frequ %s", info[0], info[1], info[2]);
|
renatofilho@789
|
854 |
g_object_set (G_OBJECT (priv->v4lsrc),
|
renatofilho@789
|
855 |
"channel", info[0],
|
renatofilho@789
|
856 |
"norm", info[1],
|
renatofilho@789
|
857 |
"frequency", atoi (info[2]),
|
renatofilho@789
|
858 |
NULL);
|
renatofilho@789
|
859 |
|
renatofilho@789
|
860 |
return priv->v4lsrc;
|
renatofilho@789
|
861 |
}
|
renatofilho@789
|
862 |
|
renatofilho@789
|
863 |
static GstElement *
|
renatofilho@789
|
864 |
_create_source(GMencoder *self, const gchar * uri)
|
renatofilho@600
|
865 |
{
|
renatofilho@600
|
866 |
|
renatofilho@754
|
867 |
GstElement *bsrc = NULL;
|
renatofilho@754
|
868 |
GstElement *src = NULL;
|
renatofilho@754
|
869 |
GstElement *queue = NULL;
|
renatofilho@754
|
870 |
GstElement *aqueue = NULL;
|
renatofilho@754
|
871 |
GstElement *vqueue = NULL;
|
renatofilho@754
|
872 |
GstElement *decode = NULL;
|
renatofilho@754
|
873 |
GstPad *src_pad = NULL;
|
renatofilho@600
|
874 |
|
renatofilho@600
|
875 |
|
renatofilho@754
|
876 |
bsrc = gst_bin_new(NULL);
|
renatofilho@600
|
877 |
|
renatofilho@754
|
878 |
// src = gst_element_factory_make ("gnomevfssrc", "src");
|
renatofilho@754
|
879 |
// g_object_set (G_OBJECT (src), "location", uri, NULL);
|
renatofilho@789
|
880 |
if (strncmp (uri, "v4l://", 6) == 0) {
|
renatofilho@789
|
881 |
g_debug ("V4L");
|
renatofilho@789
|
882 |
src = _create_v4l_source (self, uri);
|
renatofilho@789
|
883 |
}
|
renatofilho@789
|
884 |
else {
|
renatofilho@789
|
885 |
g_debug ("SRC");
|
renatofilho@789
|
886 |
src = gst_element_make_from_uri(GST_URI_SRC, uri, "src");
|
renatofilho@789
|
887 |
}
|
renatofilho@789
|
888 |
|
renatofilho@754
|
889 |
if (src == NULL)
|
renatofilho@754
|
890 |
goto error;
|
renatofilho@600
|
891 |
|
renatofilho@754
|
892 |
decode = gst_element_factory_make("decodebin", "decode");
|
renatofilho@754
|
893 |
if (decode == NULL)
|
renatofilho@754
|
894 |
goto error;
|
renatofilho@600
|
895 |
|
renatofilho@754
|
896 |
queue = gst_element_factory_make("queue", "queue_src");
|
renatofilho@754
|
897 |
aqueue = gst_element_factory_make("queue", "aqueue");
|
renatofilho@754
|
898 |
if (aqueue == NULL)
|
renatofilho@754
|
899 |
goto error;
|
renatofilho@600
|
900 |
|
renatofilho@754
|
901 |
vqueue = gst_element_factory_make("queue", "vqueue");
|
renatofilho@754
|
902 |
if (vqueue == NULL)
|
renatofilho@754
|
903 |
goto error;
|
renatofilho@600
|
904 |
|
renatofilho@754
|
905 |
gst_bin_add_many(GST_BIN(bsrc), src, queue, decode, aqueue, vqueue,
|
renatofilho@754
|
906 |
NULL);
|
renatofilho@754
|
907 |
gst_element_link_many(src, queue, decode, NULL);
|
renatofilho@600
|
908 |
|
renatofilho@754
|
909 |
g_signal_connect(G_OBJECT(decode),
|
renatofilho@754
|
910 |
"new-decoded-pad",
|
renatofilho@754
|
911 |
G_CALLBACK(_decodebin_new_pad_cb), bsrc);
|
renatofilho@600
|
912 |
|
renatofilho@754
|
913 |
g_signal_connect(G_OBJECT(decode),
|
renatofilho@754
|
914 |
"unknown-type",
|
renatofilho@754
|
915 |
G_CALLBACK(_decodebin_unknown_type_cb), pipe);
|
renatofilho@600
|
916 |
|
renatofilho@754
|
917 |
src_pad = gst_element_get_pad(aqueue, "src");
|
renatofilho@754
|
918 |
gst_element_add_pad(bsrc, gst_ghost_pad_new("src_audio", src_pad));
|
renatofilho@754
|
919 |
gst_object_unref(src_pad);
|
renatofilho@600
|
920 |
|
renatofilho@754
|
921 |
src_pad = gst_element_get_pad(vqueue, "src");
|
renatofilho@754
|
922 |
gst_element_add_pad(bsrc, gst_ghost_pad_new("src_video", src_pad));
|
renatofilho@754
|
923 |
gst_object_unref(src_pad);
|
renatofilho@600
|
924 |
|
renatofilho@754
|
925 |
return bsrc;
|
renatofilho@600
|
926 |
|
renatofilho@754
|
927 |
error:
|
renatofilho@789
|
928 |
g_debug ("Fail to create source element");
|
renatofilho@754
|
929 |
if (src != NULL) {
|
renatofilho@754
|
930 |
gst_object_unref(src);
|
renatofilho@754
|
931 |
}
|
renatofilho@600
|
932 |
|
renatofilho@754
|
933 |
if (decode != NULL) {
|
renatofilho@754
|
934 |
gst_object_unref(decode);
|
renatofilho@754
|
935 |
}
|
renatofilho@600
|
936 |
|
renatofilho@754
|
937 |
if (aqueue != NULL) {
|
renatofilho@754
|
938 |
gst_object_unref(aqueue);
|
renatofilho@754
|
939 |
}
|
renatofilho@600
|
940 |
|
renatofilho@754
|
941 |
if (vqueue != NULL) {
|
renatofilho@754
|
942 |
gst_object_unref(vqueue);
|
renatofilho@754
|
943 |
}
|
renatofilho@600
|
944 |
|
renatofilho@754
|
945 |
return NULL;
|
renatofilho@600
|
946 |
}
|
renatofilho@600
|
947 |
|
renatofilho@757
|
948 |
static gboolean
|
renatofilho@752
|
949 |
_open_output(GMencoder * self, const gchar * uri)
|
renatofilho@600
|
950 |
{
|
renatofilho@754
|
951 |
gchar **i;
|
renatofilho@807
|
952 |
GnomeVFSResult result;
|
renatofilho@754
|
953 |
GMencoderPrivate *priv = G_MENCODER_GET_PRIVATE(self);
|
renatofilho@588
|
954 |
|
renatofilho@754
|
955 |
i = g_strsplit(uri, "://", 0);
|
renatofilho@754
|
956 |
if (strcmp(i[0], "fd") == 0) {
|
renatofilho@807
|
957 |
result = gnome_vfs_open_fd (&priv->handle, atoi(i[1]));
|
renatofilho@789
|
958 |
} else {
|
renatofilho@807
|
959 |
if (g_file_test (i[1], G_FILE_TEST_EXISTS) == FALSE) {
|
renatofilho@807
|
960 |
result = gnome_vfs_create (&priv->handle, uri, GNOME_VFS_OPEN_WRITE, TRUE,
|
renatofilho@807
|
961 |
GNOME_VFS_PERM_USER_WRITE | GNOME_VFS_PERM_USER_READ | GNOME_VFS_PERM_GROUP_READ);
|
renatofilho@807
|
962 |
} else {
|
renatofilho@807
|
963 |
result = gnome_vfs_open (&priv->handle, uri,
|
renatofilho@807
|
964 |
GNOME_VFS_OPEN_WRITE | GNOME_VFS_OPEN_TRUNCATE);
|
renatofilho@807
|
965 |
}
|
renatofilho@754
|
966 |
}
|
renatofilho@588
|
967 |
|
renatofilho@754
|
968 |
g_strfreev(i);
|
renatofilho@807
|
969 |
return (result == GNOME_VFS_OK);
|
renatofilho@588
|
970 |
}
|
renatofilho@588
|
971 |
|
renatofilho@754
|
972 |
static gboolean
|
renatofilho@752
|
973 |
_pipeline_bus_cb(GstBus * bus, GstMessage * msg, gpointer user_data)
|
renatofilho@588
|
974 |
{
|
renatofilho@754
|
975 |
GMencoderPrivate *priv = G_MENCODER_GET_PRIVATE(user_data);
|
renatofilho@600
|
976 |
|
renatofilho@754
|
977 |
switch (GST_MESSAGE_TYPE(msg)) {
|
renatofilho@588
|
978 |
|
renatofilho@754
|
979 |
case GST_MESSAGE_STATE_CHANGED:
|
renatofilho@754
|
980 |
{
|
renatofilho@754
|
981 |
GstState oldstate;
|
renatofilho@754
|
982 |
GstState newstate;
|
renatofilho@754
|
983 |
GstState pendingstate;
|
renatofilho@588
|
984 |
|
morphbr@748
|
985 |
|
renatofilho@754
|
986 |
gst_message_parse_state_changed(msg, &oldstate,
|
renatofilho@754
|
987 |
&newstate, &pendingstate);
|
renatofilho@588
|
988 |
|
renatofilho@754
|
989 |
if (pendingstate != GST_STATE_VOID_PENDING)
|
renatofilho@754
|
990 |
break;
|
renatofilho@588
|
991 |
|
renatofilho@754
|
992 |
if ((oldstate == GST_STATE_READY)
|
renatofilho@754
|
993 |
&& (newstate == GST_STATE_PAUSED)) {
|
renatofilho@754
|
994 |
if (priv->ready)
|
renatofilho@754
|
995 |
g_signal_emit(user_data, g_mencoder_signals[PAUSED],
|
renatofilho@754
|
996 |
0);
|
renatofilho@754
|
997 |
} else if ((oldstate == GST_STATE_PAUSED)
|
renatofilho@754
|
998 |
&& (newstate == GST_STATE_PLAYING)) {
|
renatofilho@754
|
999 |
g_signal_emit(user_data, g_mencoder_signals[PLAYING], 0);
|
renatofilho@754
|
1000 |
} else if ((oldstate == GST_STATE_READY) &&
|
renatofilho@754
|
1001 |
(newstate == GST_STATE_NULL)) {
|
renatofilho@754
|
1002 |
g_signal_emit(user_data, g_mencoder_signals[STOPED], 0);
|
renatofilho@754
|
1003 |
}
|
renatofilho@754
|
1004 |
break;
|
renatofilho@754
|
1005 |
}
|
renatofilho@678
|
1006 |
|
renatofilho@754
|
1007 |
case GST_MESSAGE_ERROR:
|
renatofilho@754
|
1008 |
{
|
renatofilho@754
|
1009 |
GError *error;
|
renatofilho@754
|
1010 |
gchar *debug;
|
renatofilho@754
|
1011 |
gchar *err_str;
|
morphbr@748
|
1012 |
|
renatofilho@754
|
1013 |
if (priv->tick_id != 0) {
|
renatofilho@754
|
1014 |
g_source_remove(priv->tick_id);
|
renatofilho@754
|
1015 |
priv->tick_id = 0;
|
renatofilho@754
|
1016 |
}
|
morphbr@748
|
1017 |
|
renatofilho@754
|
1018 |
gst_message_parse_error(msg, &error, &debug);
|
renatofilho@754
|
1019 |
err_str = g_strdup_printf("Error [%d] %s (%s)", error->code,
|
renatofilho@754
|
1020 |
error->message, debug);
|
renatofilho@754
|
1021 |
priv->ready = FALSE;
|
renatofilho@754
|
1022 |
g_signal_emit(user_data, g_mencoder_signals[ERROR], 0,
|
renatofilho@754
|
1023 |
err_str);
|
renatofilho@754
|
1024 |
g_free(err_str);
|
renatofilho@754
|
1025 |
g_clear_error(&error);
|
renatofilho@754
|
1026 |
g_free(debug);
|
renatofilho@754
|
1027 |
break;
|
renatofilho@754
|
1028 |
}
|
morphbr@748
|
1029 |
|
renatofilho@754
|
1030 |
case GST_MESSAGE_EOS:
|
renatofilho@754
|
1031 |
priv->ready = FALSE;
|
renatofilho@807
|
1032 |
#ifdef USE_MANUAL_SINK
|
renatofilho@781
|
1033 |
_flush_queue (G_MENCODER (user_data));
|
renatofilho@807
|
1034 |
#endif
|
renatofilho@754
|
1035 |
g_signal_emit(user_data, g_mencoder_signals[EOS], 0);
|
renatofilho@754
|
1036 |
break;
|
morphbr@748
|
1037 |
|
renatofilho@754
|
1038 |
case GST_MESSAGE_DURATION:
|
renatofilho@754
|
1039 |
{
|
renatofilho@754
|
1040 |
GstFormat format;
|
renatofilho@754
|
1041 |
gint64 duration;
|
renatofilho@754
|
1042 |
gst_message_parse_duration(msg, &format, &duration);
|
renatofilho@754
|
1043 |
if (format == GST_FORMAT_BYTES)
|
renatofilho@754
|
1044 |
priv->duration = duration;
|
renatofilho@754
|
1045 |
break;
|
renatofilho@754
|
1046 |
}
|
renatofilho@754
|
1047 |
default:
|
renatofilho@754
|
1048 |
{
|
renatofilho@754
|
1049 |
break;
|
renatofilho@754
|
1050 |
}
|
renatofilho@754
|
1051 |
}
|
renatofilho@754
|
1052 |
return TRUE;
|
renatofilho@588
|
1053 |
}
|
renatofilho@588
|
1054 |
|
renatofilho@600
|
1055 |
|
renatofilho@600
|
1056 |
|
morphbr@748
|
1057 |
static void
|
renatofilho@752
|
1058 |
_decodebin_new_pad_cb(GstElement * object,
|
renatofilho@754
|
1059 |
GstPad * pad, gboolean flag, gpointer user_data)
|
renatofilho@588
|
1060 |
{
|
renatofilho@754
|
1061 |
GstCaps *caps;
|
renatofilho@754
|
1062 |
gchar *str_caps = NULL;
|
renatofilho@754
|
1063 |
GstElement *sink_element;
|
renatofilho@754
|
1064 |
GstPad *sink_pad;
|
renatofilho@588
|
1065 |
|
renatofilho@754
|
1066 |
caps = gst_pad_get_caps(pad);
|
renatofilho@754
|
1067 |
str_caps = gst_caps_to_string(caps);
|
renatofilho@754
|
1068 |
if (strstr(str_caps, "audio") != NULL) {
|
renatofilho@754
|
1069 |
sink_element = gst_bin_get_by_name(GST_BIN(user_data), "aqueue");
|
renatofilho@754
|
1070 |
} else if (strstr(str_caps, "video") != NULL) {
|
renatofilho@754
|
1071 |
sink_element = gst_bin_get_by_name(GST_BIN(user_data), "vqueue");
|
renatofilho@754
|
1072 |
} else {
|
renatofilho@754
|
1073 |
g_warning("invalid caps %s", str_caps);
|
renatofilho@754
|
1074 |
}
|
renatofilho@588
|
1075 |
|
renatofilho@754
|
1076 |
sink_pad = gst_element_get_pad(sink_element, "sink");
|
renatofilho@754
|
1077 |
gst_pad_link(pad, sink_pad);
|
renatofilho@600
|
1078 |
|
renatofilho@754
|
1079 |
gst_object_unref(sink_element);
|
renatofilho@754
|
1080 |
gst_object_unref(sink_pad);
|
renatofilho@754
|
1081 |
g_free(str_caps);
|
renatofilho@754
|
1082 |
gst_caps_unref(caps);
|
renatofilho@588
|
1083 |
}
|
renatofilho@588
|
1084 |
|
morphbr@748
|
1085 |
static void
|
renatofilho@752
|
1086 |
_decodebin_unknown_type_cb(GstElement * object,
|
renatofilho@754
|
1087 |
GstPad * pad, GstCaps * caps,
|
renatofilho@754
|
1088 |
gpointer user_data)
|
renatofilho@588
|
1089 |
{
|
renatofilho@754
|
1090 |
g_warning("Unknown Type");
|
renatofilho@754
|
1091 |
// priv->ready = FALSE;
|
renatofilho@588
|
1092 |
}
|
renatofilho@654
|
1093 |
|
renatofilho@754
|
1094 |
static gboolean
|
renatofilho@752
|
1095 |
_tick_cb(gpointer user_data)
|
renatofilho@654
|
1096 |
{
|
renatofilho@754
|
1097 |
GstFormat format = GST_FORMAT_BYTES;
|
renatofilho@754
|
1098 |
gint64 cur = 0;
|
renatofilho@654
|
1099 |
|
renatofilho@754
|
1100 |
GMencoderPrivate *priv = G_MENCODER_GET_PRIVATE(user_data);
|
renatofilho@654
|
1101 |
|
renatofilho@754
|
1102 |
if (priv->duration == 0) {
|
renatofilho@754
|
1103 |
gint64 d = 0;
|
renatofilho@754
|
1104 |
if (gst_element_query_duration(priv->src, &format, &d))
|
renatofilho@754
|
1105 |
priv->duration = d;
|
renatofilho@754
|
1106 |
}
|
renatofilho@671
|
1107 |
|
renatofilho@754
|
1108 |
if (priv->duration != 0) {
|
renatofilho@754
|
1109 |
gst_element_query_position(priv->src, &format, &cur);
|
renatofilho@754
|
1110 |
g_print("PROGRESS:%lli\n", (99 * cur) / priv->duration);
|
renatofilho@754
|
1111 |
}
|
renatofilho@654
|
1112 |
|
renatofilho@754
|
1113 |
return TRUE;
|
renatofilho@654
|
1114 |
}
|
renatofilho@761
|
1115 |
|
renatofilho@807
|
1116 |
static gboolean
|
renatofilho@807
|
1117 |
_process_timeout_cb (gpointer user_data)
|
renatofilho@807
|
1118 |
{
|
renatofilho@807
|
1119 |
GMencoderPrivate *priv = G_MENCODER_GET_PRIVATE(user_data);
|
renatofilho@761
|
1120 |
|
renatofilho@807
|
1121 |
g_signal_emit(user_data, g_mencoder_signals[ERROR], 0, "timeout");
|
renatofilho@807
|
1122 |
priv->timeout_id = 0;
|
renatofilho@807
|
1123 |
return FALSE;
|
renatofilho@807
|
1124 |
}
|
renatofilho@807
|
1125 |
|
renatofilho@807
|
1126 |
|
renatofilho@807
|
1127 |
#ifdef USE_MANUAL_SINK
|
renatofilho@807
|
1128 |
static gboolean
|
renatofilho@807
|
1129 |
_send_buffer (GnomeVFSHandle *handle, gpointer buff, gint size)
|
renatofilho@762
|
1130 |
{
|
renatofilho@762
|
1131 |
gchar *msg;
|
renatofilho@762
|
1132 |
GByteArray *b_send;
|
renatofilho@807
|
1133 |
GnomeVFSResult result;
|
renatofilho@807
|
1134 |
GnomeVFSFileSize bytes_written;
|
renatofilho@762
|
1135 |
|
renatofilho@762
|
1136 |
b_send = g_byte_array_new ();
|
renatofilho@807
|
1137 |
msg = g_strdup_printf ("%x\r\n", size);
|
renatofilho@762
|
1138 |
b_send = g_byte_array_append (b_send, (const guint8*) msg, strlen (msg) * sizeof (gchar));
|
renatofilho@762
|
1139 |
g_free (msg);
|
renatofilho@762
|
1140 |
|
renatofilho@807
|
1141 |
b_send = g_byte_array_append (b_send, buff, size);
|
renatofilho@762
|
1142 |
|
renatofilho@762
|
1143 |
msg = g_strdup ("\r\n");
|
renatofilho@762
|
1144 |
b_send = g_byte_array_append (b_send, (const guint8*) msg, strlen (msg) * sizeof (gchar));
|
renatofilho@762
|
1145 |
g_free (msg);
|
renatofilho@762
|
1146 |
|
renatofilho@807
|
1147 |
result = gnome_vfs_write (handle, b_send->data, b_send->len, &bytes_written);
|
renatofilho@807
|
1148 |
g_byte_array_free (b_send, TRUE);
|
renatofilho@762
|
1149 |
|
renatofilho@807
|
1150 |
return (result == GNOME_VFS_OK);
|
renatofilho@762
|
1151 |
}
|
renatofilho@762
|
1152 |
|
renatofilho@762
|
1153 |
static void
|
renatofilho@762
|
1154 |
_flush_queue (GMencoder *self)
|
renatofilho@762
|
1155 |
{
|
renatofilho@762
|
1156 |
GMencoderPrivate *priv = G_MENCODER_GET_PRIVATE(self);
|
renatofilho@762
|
1157 |
|
renatofilho@781
|
1158 |
if (priv->send_chunked) {
|
renatofilho@807
|
1159 |
GnomeVFSFileSize bytes_written;
|
renatofilho@781
|
1160 |
gchar *end_msg;
|
renatofilho@781
|
1161 |
end_msg = g_strdup ("0\r\n\r\n");
|
renatofilho@789
|
1162 |
gnome_vfs_write (priv->handle,
|
renatofilho@789
|
1163 |
(const guint8*) end_msg,
|
renatofilho@786
|
1164 |
strlen(end_msg) * sizeof(gchar),
|
renatofilho@786
|
1165 |
&bytes_written);
|
renatofilho@781
|
1166 |
g_free (end_msg);
|
renatofilho@762
|
1167 |
}
|
renatofilho@762
|
1168 |
}
|
renatofilho@786
|
1169 |
|
renatofilho@789
|
1170 |
static void
|
renatofilho@761
|
1171 |
_buffer_arrive_cb (GstElement* object,
|
renatofilho@807
|
1172 |
GstBuffer* buff,
|
renatofilho@807
|
1173 |
GstPad* pad,
|
renatofilho@761
|
1174 |
gpointer user_data)
|
renatofilho@761
|
1175 |
{
|
renatofilho@762
|
1176 |
GMencoderPrivate *priv = G_MENCODER_GET_PRIVATE(user_data);
|
renatofilho@761
|
1177 |
|
renatofilho@807
|
1178 |
if (priv->timeout_id != 0) {
|
renatofilho@807
|
1179 |
g_source_remove (priv->timeout_id);
|
renatofilho@807
|
1180 |
priv->timeout_id = 0;
|
renatofilho@807
|
1181 |
}
|
renatofilho@807
|
1182 |
|
renatofilho@781
|
1183 |
if (priv->send_chunked) {
|
renatofilho@807
|
1184 |
if (_send_buffer (priv->handle, GST_BUFFER_DATA (buff), GST_BUFFER_SIZE (buff)) == FALSE)
|
renatofilho@807
|
1185 |
goto error;
|
renatofilho@807
|
1186 |
} else {
|
renatofilho@807
|
1187 |
GnomeVFSResult result;
|
renatofilho@807
|
1188 |
GnomeVFSFileSize bytes_written;
|
renatofilho@807
|
1189 |
|
renatofilho@807
|
1190 |
result = gnome_vfs_write (priv->handle,
|
renatofilho@807
|
1191 |
GST_BUFFER_DATA (buff),
|
renatofilho@807
|
1192 |
GST_BUFFER_SIZE (buff),
|
renatofilho@807
|
1193 |
&bytes_written);
|
renatofilho@807
|
1194 |
|
renatofilho@807
|
1195 |
if (result != GNOME_VFS_OK)
|
renatofilho@807
|
1196 |
goto error;
|
renatofilho@762
|
1197 |
}
|
renatofilho@807
|
1198 |
|
renatofilho@807
|
1199 |
return;
|
renatofilho@807
|
1200 |
|
renatofilho@807
|
1201 |
error:
|
renatofilho@807
|
1202 |
if (priv->tick_id != 0) {
|
renatofilho@807
|
1203 |
g_source_remove(priv->tick_id);
|
renatofilho@807
|
1204 |
priv->tick_id = 0;
|
renatofilho@807
|
1205 |
}
|
renatofilho@807
|
1206 |
g_signal_emit(user_data, g_mencoder_signals[ERROR], 0, "Fail to write on socket");
|
renatofilho@807
|
1207 |
gst_element_set_state (priv->pipe, GST_STATE_PAUSED);
|
renatofilho@761
|
1208 |
}
|
renatofilho@807
|
1209 |
|
renatofilho@807
|
1210 |
#endif
|