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@588
|
11 |
|
renatofilho@588
|
12 |
#include "gmencoder.h"
|
renatofilho@588
|
13 |
|
renatofilho@588
|
14 |
#define G_MENCODER_GET_PRIVATE(obj) \
|
renatofilho@588
|
15 |
(G_TYPE_INSTANCE_GET_PRIVATE ((obj), G_TYPE_MENCODER, GMencoderPrivate))
|
renatofilho@588
|
16 |
|
renatofilho@588
|
17 |
|
renatofilho@588
|
18 |
typedef struct _GMencoderPrivate GMencoderPrivate;
|
renatofilho@600
|
19 |
typedef struct _SetupInfo SetupInfo;
|
renatofilho@600
|
20 |
|
renatofilho@600
|
21 |
struct _SetupInfo
|
renatofilho@600
|
22 |
{
|
renatofilho@600
|
23 |
gchar* video_encode;
|
renatofilho@600
|
24 |
gchar* mux_name;
|
renatofilho@600
|
25 |
gchar** video_encode_prop;
|
renatofilho@600
|
26 |
gdouble video_fps;
|
renatofilho@600
|
27 |
gdouble video_rate;
|
renatofilho@600
|
28 |
guint video_width;
|
renatofilho@600
|
29 |
guint video_height;
|
renatofilho@600
|
30 |
gchar* audio_encode;
|
renatofilho@600
|
31 |
gchar** audio_encode_prop;
|
renatofilho@600
|
32 |
guint audio_rate;
|
renatofilho@600
|
33 |
};
|
renatofilho@600
|
34 |
|
renatofilho@588
|
35 |
|
renatofilho@588
|
36 |
struct _GMencoderPrivate
|
renatofilho@588
|
37 |
{
|
renatofilho@588
|
38 |
GstElement *pipe;
|
renatofilho@588
|
39 |
GstElement *abin;
|
renatofilho@588
|
40 |
GstElement *vbin;
|
renatofilho@588
|
41 |
GstElement *sink;
|
renatofilho@588
|
42 |
gboolean ready;
|
renatofilho@600
|
43 |
SetupInfo *info;
|
renatofilho@600
|
44 |
GstClockTime videot;
|
renatofilho@600
|
45 |
GstClockTime audiot;
|
renatofilho@600
|
46 |
gint fd;
|
renatofilho@588
|
47 |
};
|
renatofilho@588
|
48 |
|
renatofilho@588
|
49 |
enum {
|
renatofilho@588
|
50 |
PAUSED,
|
renatofilho@588
|
51 |
PLAYING,
|
renatofilho@588
|
52 |
STOPED,
|
renatofilho@588
|
53 |
EOS,
|
renatofilho@588
|
54 |
ERROR,
|
renatofilho@588
|
55 |
LAST_SIGNAL
|
renatofilho@588
|
56 |
};
|
renatofilho@588
|
57 |
|
renatofilho@588
|
58 |
static void g_mencoder_class_init (GMencoderClass *klass);
|
renatofilho@588
|
59 |
static void g_mencoder_init (GMencoder *object);
|
renatofilho@588
|
60 |
static void g_mencoder_dispose (GObject *object);
|
renatofilho@588
|
61 |
static void g_mencoder_finalize (GObject *object);
|
renatofilho@588
|
62 |
static GstElement*
|
renatofilho@600
|
63 |
_create_audio_bin (const gchar* encode,
|
renatofilho@600
|
64 |
gchar** encode_prop,
|
renatofilho@600
|
65 |
gint rate);
|
renatofilho@588
|
66 |
static GstElement*
|
renatofilho@600
|
67 |
_create_video_bin (const gchar* encode,
|
renatofilho@588
|
68 |
gchar** encode_prop,
|
renatofilho@588
|
69 |
gdouble fps,
|
renatofilho@588
|
70 |
gint rate,
|
renatofilho@588
|
71 |
guint width,
|
renatofilho@588
|
72 |
guint height);
|
renatofilho@588
|
73 |
|
renatofilho@588
|
74 |
static gboolean
|
renatofilho@588
|
75 |
_pipeline_bus_cb (GstBus *bus,
|
renatofilho@588
|
76 |
GstMessage *msg,
|
renatofilho@588
|
77 |
gpointer user_data);
|
renatofilho@588
|
78 |
static void _decodebin_new_pad_cb (GstElement* object,
|
renatofilho@588
|
79 |
GstPad* pad,
|
renatofilho@588
|
80 |
gboolean flag,
|
renatofilho@588
|
81 |
gpointer user_data);
|
renatofilho@588
|
82 |
static void _decodebin_unknown_type_cb (GstElement* object,
|
renatofilho@588
|
83 |
GstPad* pad,
|
renatofilho@588
|
84 |
GstCaps* caps,
|
renatofilho@588
|
85 |
gpointer user_data);
|
renatofilho@600
|
86 |
static void _close_output (GMencoder *self);
|
renatofilho@600
|
87 |
static void _open_output (GMencoder *self,
|
renatofilho@600
|
88 |
const gchar* uri);
|
renatofilho@600
|
89 |
static GstElement* _create_source (const gchar* uri);
|
renatofilho@600
|
90 |
static GstElement*_create_pipeline (GMencoder *self,
|
renatofilho@600
|
91 |
const gchar* video_encode,
|
renatofilho@600
|
92 |
const gchar* mux_name,
|
renatofilho@600
|
93 |
gchar** video_encode_prop,
|
renatofilho@600
|
94 |
gdouble video_fps,
|
renatofilho@600
|
95 |
gdouble video_rate,
|
renatofilho@600
|
96 |
guint video_width,
|
renatofilho@600
|
97 |
guint video_height,
|
renatofilho@600
|
98 |
const gchar* audio_encode,
|
renatofilho@600
|
99 |
gchar** audio_encode_prop,
|
renatofilho@600
|
100 |
guint audio_rate);
|
renatofilho@600
|
101 |
|
renatofilho@600
|
102 |
|
renatofilho@600
|
103 |
|
renatofilho@588
|
104 |
|
renatofilho@588
|
105 |
|
renatofilho@588
|
106 |
static guint g_mencoder_signals[LAST_SIGNAL] = { 0 };
|
renatofilho@588
|
107 |
|
renatofilho@588
|
108 |
G_DEFINE_TYPE(GMencoder, g_mencoder, G_TYPE_OBJECT)
|
renatofilho@588
|
109 |
|
renatofilho@588
|
110 |
static void
|
renatofilho@588
|
111 |
g_mencoder_class_init (GMencoderClass *klass)
|
renatofilho@588
|
112 |
{
|
renatofilho@588
|
113 |
GObjectClass *object_class;
|
renatofilho@588
|
114 |
|
renatofilho@588
|
115 |
object_class = (GObjectClass *) klass;
|
renatofilho@588
|
116 |
|
renatofilho@588
|
117 |
g_type_class_add_private (klass, sizeof (GMencoderPrivate));
|
renatofilho@588
|
118 |
|
renatofilho@588
|
119 |
object_class->dispose = g_mencoder_dispose;
|
renatofilho@588
|
120 |
object_class->finalize = g_mencoder_finalize;
|
renatofilho@588
|
121 |
|
renatofilho@588
|
122 |
g_mencoder_signals[PAUSED] =
|
renatofilho@588
|
123 |
g_signal_new ("paused",
|
renatofilho@588
|
124 |
G_OBJECT_CLASS_TYPE (object_class),
|
renatofilho@588
|
125 |
G_SIGNAL_RUN_FIRST,
|
renatofilho@588
|
126 |
0, NULL, NULL,
|
renatofilho@588
|
127 |
g_cclosure_marshal_VOID__VOID,
|
renatofilho@588
|
128 |
G_TYPE_NONE, 0);
|
renatofilho@588
|
129 |
|
renatofilho@588
|
130 |
g_mencoder_signals[PLAYING] =
|
renatofilho@588
|
131 |
g_signal_new ("playing",
|
renatofilho@588
|
132 |
G_OBJECT_CLASS_TYPE (object_class),
|
renatofilho@588
|
133 |
G_SIGNAL_RUN_FIRST,
|
renatofilho@588
|
134 |
0, NULL, NULL,
|
renatofilho@588
|
135 |
g_cclosure_marshal_VOID__VOID,
|
renatofilho@588
|
136 |
G_TYPE_NONE, 0);
|
renatofilho@588
|
137 |
|
renatofilho@588
|
138 |
g_mencoder_signals[STOPED] =
|
renatofilho@588
|
139 |
g_signal_new ("stoped",
|
renatofilho@588
|
140 |
G_OBJECT_CLASS_TYPE (object_class),
|
renatofilho@588
|
141 |
G_SIGNAL_RUN_FIRST,
|
renatofilho@588
|
142 |
0, NULL, NULL,
|
renatofilho@588
|
143 |
g_cclosure_marshal_VOID__VOID,
|
renatofilho@588
|
144 |
G_TYPE_NONE, 0);
|
renatofilho@588
|
145 |
|
renatofilho@588
|
146 |
g_mencoder_signals[EOS] =
|
renatofilho@588
|
147 |
g_signal_new ("eos",
|
renatofilho@588
|
148 |
G_OBJECT_CLASS_TYPE (object_class),
|
renatofilho@588
|
149 |
G_SIGNAL_RUN_FIRST,
|
renatofilho@588
|
150 |
0, NULL, NULL,
|
renatofilho@588
|
151 |
g_cclosure_marshal_VOID__VOID,
|
renatofilho@588
|
152 |
G_TYPE_NONE, 0);
|
renatofilho@588
|
153 |
|
renatofilho@588
|
154 |
|
renatofilho@588
|
155 |
g_mencoder_signals[ERROR] =
|
renatofilho@588
|
156 |
g_signal_new ("error",
|
renatofilho@588
|
157 |
G_OBJECT_CLASS_TYPE (object_class),
|
renatofilho@588
|
158 |
G_SIGNAL_RUN_FIRST,
|
renatofilho@588
|
159 |
0, NULL, NULL,
|
renatofilho@588
|
160 |
g_cclosure_marshal_VOID__STRING,
|
renatofilho@588
|
161 |
G_TYPE_NONE, 1, G_TYPE_STRING);
|
renatofilho@588
|
162 |
}
|
renatofilho@588
|
163 |
|
renatofilho@588
|
164 |
static void
|
renatofilho@588
|
165 |
g_mencoder_init (GMencoder *self)
|
renatofilho@588
|
166 |
{
|
renatofilho@600
|
167 |
GMencoderPrivate *priv = G_MENCODER_GET_PRIVATE (self);
|
renatofilho@600
|
168 |
priv->info = g_new0 (SetupInfo, 1);
|
renatofilho@588
|
169 |
}
|
renatofilho@588
|
170 |
|
renatofilho@588
|
171 |
static void
|
renatofilho@588
|
172 |
g_mencoder_dispose (GObject *object)
|
renatofilho@588
|
173 |
{
|
renatofilho@588
|
174 |
}
|
renatofilho@588
|
175 |
|
renatofilho@588
|
176 |
static void
|
renatofilho@588
|
177 |
g_mencoder_finalize (GObject *object)
|
renatofilho@588
|
178 |
{
|
renatofilho@600
|
179 |
//TODO: clear vars
|
renatofilho@588
|
180 |
g_mencoder_close_stream (G_MENCODER (object));
|
renatofilho@588
|
181 |
}
|
renatofilho@588
|
182 |
|
renatofilho@588
|
183 |
GMencoder*
|
renatofilho@588
|
184 |
g_mencoder_new (void)
|
renatofilho@588
|
185 |
{
|
renatofilho@588
|
186 |
return g_object_new (G_TYPE_MENCODER, NULL);
|
renatofilho@588
|
187 |
}
|
renatofilho@588
|
188 |
|
renatofilho@600
|
189 |
|
renatofilho@588
|
190 |
static void
|
renatofilho@588
|
191 |
_obj_set_prop (GObject *obj,
|
renatofilho@588
|
192 |
const gchar *prop_name,
|
renatofilho@588
|
193 |
const gchar *prop_val)
|
renatofilho@588
|
194 |
{
|
renatofilho@588
|
195 |
GValue p = {0};
|
renatofilho@588
|
196 |
GValue v = {0};
|
renatofilho@588
|
197 |
GParamSpec *s = NULL;
|
renatofilho@588
|
198 |
GObjectClass *k = G_OBJECT_GET_CLASS (obj);
|
renatofilho@588
|
199 |
|
renatofilho@588
|
200 |
|
renatofilho@588
|
201 |
g_value_init (&v, G_TYPE_STRING);
|
renatofilho@588
|
202 |
g_value_set_string (&v, prop_val);
|
renatofilho@588
|
203 |
|
renatofilho@588
|
204 |
s = g_object_class_find_property (k, prop_name);
|
renatofilho@588
|
205 |
if (s == NULL) {
|
renatofilho@588
|
206 |
g_print ("Invalid property name: %s\n", prop_name);
|
renatofilho@588
|
207 |
return;
|
renatofilho@588
|
208 |
}
|
renatofilho@588
|
209 |
|
renatofilho@588
|
210 |
g_value_init (&p, s->value_type);
|
renatofilho@588
|
211 |
switch (s->value_type)
|
renatofilho@588
|
212 |
{
|
renatofilho@588
|
213 |
case G_TYPE_INT:
|
renatofilho@588
|
214 |
g_value_set_int (&p, atoi (prop_val));
|
renatofilho@588
|
215 |
break;
|
renatofilho@588
|
216 |
case G_TYPE_STRING:
|
renatofilho@588
|
217 |
g_value_set_string (&p, prop_val);
|
renatofilho@588
|
218 |
break;
|
renatofilho@588
|
219 |
default:
|
renatofilho@588
|
220 |
return;
|
renatofilho@588
|
221 |
}
|
renatofilho@588
|
222 |
|
renatofilho@588
|
223 |
g_object_set_property (obj, prop_name, &p);
|
renatofilho@588
|
224 |
g_value_unset (&v);
|
renatofilho@588
|
225 |
g_value_unset (&p);
|
renatofilho@588
|
226 |
}
|
renatofilho@588
|
227 |
|
renatofilho@588
|
228 |
static GstElement*
|
renatofilho@588
|
229 |
_create_element_with_prop (const gchar* factory_name,
|
renatofilho@588
|
230 |
const gchar* element_name,
|
renatofilho@588
|
231 |
gchar** prop)
|
renatofilho@588
|
232 |
{
|
renatofilho@588
|
233 |
GstElement *ret;
|
renatofilho@588
|
234 |
int i;
|
renatofilho@588
|
235 |
|
renatofilho@588
|
236 |
ret = gst_element_factory_make (factory_name, element_name);
|
renatofilho@588
|
237 |
if (ret == NULL)
|
renatofilho@588
|
238 |
return NULL;
|
renatofilho@588
|
239 |
|
renatofilho@588
|
240 |
if (prop != NULL) {
|
renatofilho@588
|
241 |
for (i=0; i < g_strv_length (prop); i++) {
|
renatofilho@588
|
242 |
char** v = g_strsplit(prop[i], "=", 2);
|
renatofilho@588
|
243 |
if (g_strv_length (v) == 2) {
|
renatofilho@588
|
244 |
_obj_set_prop (G_OBJECT (ret), v[0], v[1]);
|
renatofilho@588
|
245 |
}
|
renatofilho@588
|
246 |
g_strfreev (v);
|
renatofilho@588
|
247 |
}
|
renatofilho@588
|
248 |
}
|
renatofilho@588
|
249 |
|
renatofilho@588
|
250 |
return ret;
|
renatofilho@588
|
251 |
|
renatofilho@588
|
252 |
}
|
renatofilho@588
|
253 |
|
renatofilho@588
|
254 |
static GstElement*
|
renatofilho@600
|
255 |
_create_audio_bin (const gchar* encode,
|
renatofilho@600
|
256 |
gchar** encode_prop,
|
renatofilho@600
|
257 |
gint rate)
|
renatofilho@588
|
258 |
{
|
renatofilho@588
|
259 |
GstElement *abin = NULL;
|
renatofilho@588
|
260 |
GstElement *aqueue = NULL;
|
renatofilho@588
|
261 |
GstElement *aconvert = NULL;
|
renatofilho@588
|
262 |
GstElement *aencode = NULL;
|
renatofilho@588
|
263 |
GstElement *aqueue_src = NULL;
|
renatofilho@588
|
264 |
GstPad *apad = NULL;
|
renatofilho@588
|
265 |
|
renatofilho@588
|
266 |
//audio/x-raw-int ! queue ! audioconvert ! faac ! rtpmp4gpay ! udpsink name=upd_audio host=224.0.0.1 port=5002
|
renatofilho@588
|
267 |
abin = gst_bin_new ("abin");
|
renatofilho@588
|
268 |
aqueue = gst_element_factory_make ("queue", "aqueue");
|
renatofilho@588
|
269 |
aconvert= gst_element_factory_make ("audioconvert", "aconvert");
|
renatofilho@588
|
270 |
aencode = _create_element_with_prop ((encode ? encode : "lame"), "aencode", encode_prop);
|
renatofilho@588
|
271 |
aqueue_src= gst_element_factory_make ("queue", "aqueue_src");
|
renatofilho@588
|
272 |
|
renatofilho@588
|
273 |
if ((abin == NULL) || (aqueue == NULL) || (aconvert == NULL)
|
renatofilho@588
|
274 |
|| (aencode == NULL) || (aqueue_src == NULL)) {
|
renatofilho@588
|
275 |
g_warning ("Audio elements not found");
|
renatofilho@588
|
276 |
goto error;
|
renatofilho@588
|
277 |
}
|
renatofilho@588
|
278 |
|
renatofilho@600
|
279 |
g_object_set (G_OBJECT (aencode), "bitrate", 32, NULL);
|
renatofilho@600
|
280 |
/*
|
renatofilho@600
|
281 |
if (rate > 0) {
|
renatofilho@600
|
282 |
g_object_set (G_OBJECT (aencode), "bitrate", 32, NULL);
|
renatofilho@600
|
283 |
}
|
renatofilho@600
|
284 |
*/
|
renatofilho@600
|
285 |
|
renatofilho@588
|
286 |
gst_bin_add_many (GST_BIN (abin), aqueue, aconvert, aencode, aqueue_src, NULL);
|
renatofilho@600
|
287 |
if (gst_element_link_many (aqueue, aconvert, aencode, aqueue_src, NULL) == FALSE) {
|
renatofilho@600
|
288 |
g_warning ("Not Link audio elements");
|
renatofilho@600
|
289 |
}
|
renatofilho@588
|
290 |
|
renatofilho@588
|
291 |
//TODO: apply audio rate
|
renatofilho@588
|
292 |
|
renatofilho@588
|
293 |
// ghost pad the audio bin
|
renatofilho@588
|
294 |
apad = gst_element_get_pad (aqueue, "sink");
|
renatofilho@588
|
295 |
gst_element_add_pad (abin, gst_ghost_pad_new("sink", apad));
|
renatofilho@588
|
296 |
gst_object_unref (apad);
|
renatofilho@588
|
297 |
|
renatofilho@588
|
298 |
apad = gst_element_get_pad (aqueue_src, "src");
|
renatofilho@588
|
299 |
gst_element_add_pad (abin, gst_ghost_pad_new("src", apad));
|
renatofilho@588
|
300 |
gst_object_unref (apad);
|
renatofilho@588
|
301 |
|
renatofilho@588
|
302 |
return abin;
|
renatofilho@588
|
303 |
error:
|
renatofilho@588
|
304 |
if (abin != NULL)
|
renatofilho@588
|
305 |
gst_object_unref (abin);
|
renatofilho@588
|
306 |
|
renatofilho@588
|
307 |
if (aqueue != NULL)
|
renatofilho@588
|
308 |
gst_object_unref (aqueue);
|
renatofilho@588
|
309 |
|
renatofilho@588
|
310 |
if (aconvert != NULL)
|
renatofilho@588
|
311 |
gst_object_unref (aconvert);
|
renatofilho@588
|
312 |
|
renatofilho@588
|
313 |
if (aencode != NULL)
|
renatofilho@588
|
314 |
gst_object_unref (aencode);
|
renatofilho@588
|
315 |
|
renatofilho@588
|
316 |
if (aqueue_src != NULL)
|
renatofilho@588
|
317 |
gst_object_unref (aqueue_src);
|
renatofilho@588
|
318 |
|
renatofilho@588
|
319 |
if (apad != NULL)
|
renatofilho@588
|
320 |
gst_object_unref (apad);
|
renatofilho@588
|
321 |
|
renatofilho@588
|
322 |
return NULL;
|
renatofilho@588
|
323 |
}
|
renatofilho@588
|
324 |
|
renatofilho@588
|
325 |
|
renatofilho@588
|
326 |
|
renatofilho@588
|
327 |
|
renatofilho@588
|
328 |
//queue ! videoscale ! video/x-raw-yuv,width=240,height=144 ! colorspace ! rate ! encode ! queue
|
renatofilho@588
|
329 |
static GstElement*
|
renatofilho@600
|
330 |
_create_video_bin (const gchar* encode,
|
renatofilho@588
|
331 |
gchar** encode_prop,
|
renatofilho@588
|
332 |
gdouble fps,
|
renatofilho@588
|
333 |
gint rate,
|
renatofilho@588
|
334 |
guint width,
|
renatofilho@588
|
335 |
guint height)
|
renatofilho@588
|
336 |
{
|
renatofilho@588
|
337 |
GstElement *vbin = NULL;
|
renatofilho@588
|
338 |
GstElement *vqueue = NULL;
|
renatofilho@588
|
339 |
GstElement* vqueue_src = NULL;
|
renatofilho@588
|
340 |
GstElement *vcolorspace = NULL;
|
renatofilho@588
|
341 |
GstElement *vencode = NULL;
|
renatofilho@588
|
342 |
GstElement *vrate = NULL;
|
renatofilho@588
|
343 |
GstPad *vpad = NULL;
|
renatofilho@588
|
344 |
|
renatofilho@588
|
345 |
vbin = gst_bin_new ("vbin");
|
renatofilho@588
|
346 |
vqueue = gst_element_factory_make ("queue", "vqueue");
|
renatofilho@588
|
347 |
vcolorspace = gst_element_factory_make ("ffmpegcolorspace", "colorspace");
|
renatofilho@588
|
348 |
vencode = _create_element_with_prop ((encode ? encode : "ffenc_mpeg1video"), "vencode", encode_prop);
|
renatofilho@588
|
349 |
vrate = gst_element_factory_make ("videorate", "vrate");
|
renatofilho@588
|
350 |
vqueue_src = gst_element_factory_make ("queue", "queue_src");
|
renatofilho@588
|
351 |
|
renatofilho@588
|
352 |
if ((vbin == NULL) || (vqueue == NULL) || (vcolorspace == NULL)
|
renatofilho@588
|
353 |
|| (vencode == NULL) || (vqueue_src == NULL)) {
|
renatofilho@588
|
354 |
g_warning ("Video elements not found");
|
renatofilho@588
|
355 |
goto error;
|
renatofilho@588
|
356 |
}
|
renatofilho@588
|
357 |
|
renatofilho@588
|
358 |
gst_bin_add_many (GST_BIN (vbin), vqueue, vcolorspace, vencode, vqueue_src, NULL);
|
renatofilho@588
|
359 |
|
renatofilho@600
|
360 |
|
renatofilho@588
|
361 |
|
renatofilho@588
|
362 |
if ((width > 0) && (height > 0)) {
|
renatofilho@588
|
363 |
//Scalling video
|
renatofilho@588
|
364 |
GstCaps *vcaps;
|
renatofilho@588
|
365 |
GstElement *vscale = gst_element_factory_make ("videoscale", "vscale");
|
renatofilho@588
|
366 |
|
renatofilho@588
|
367 |
gst_bin_add (GST_BIN (vbin), vscale);
|
renatofilho@588
|
368 |
|
renatofilho@588
|
369 |
vcaps = gst_caps_new_simple ("video/x-raw-yuv",
|
renatofilho@588
|
370 |
"width", G_TYPE_INT, width,
|
renatofilho@588
|
371 |
"height", G_TYPE_INT, height,
|
renatofilho@588
|
372 |
NULL);
|
renatofilho@588
|
373 |
|
renatofilho@588
|
374 |
gst_element_link (vqueue, vscale);
|
renatofilho@588
|
375 |
|
renatofilho@588
|
376 |
if (gst_element_link_filtered (vscale, vcolorspace, vcaps) == FALSE) {
|
renatofilho@588
|
377 |
g_warning ("Fail to resize video");
|
renatofilho@588
|
378 |
gst_object_unref (vcaps);
|
renatofilho@588
|
379 |
gst_object_unref (vscale);
|
renatofilho@588
|
380 |
goto error;
|
renatofilho@588
|
381 |
}
|
renatofilho@588
|
382 |
gst_caps_unref (vcaps);
|
renatofilho@588
|
383 |
} else {
|
renatofilho@588
|
384 |
gst_element_link (vqueue, vcolorspace);
|
renatofilho@588
|
385 |
}
|
renatofilho@600
|
386 |
|
renatofilho@588
|
387 |
|
renatofilho@588
|
388 |
if (fps > 0) {
|
renatofilho@588
|
389 |
//Changing the video fps
|
renatofilho@588
|
390 |
GstCaps *vcaps;
|
renatofilho@588
|
391 |
|
renatofilho@588
|
392 |
gst_bin_add (GST_BIN (vbin), vrate);
|
renatofilho@588
|
393 |
|
renatofilho@588
|
394 |
if (gst_element_link (vcolorspace, vrate) == FALSE) {
|
renatofilho@588
|
395 |
g_warning ("Fail to link video elements");
|
renatofilho@588
|
396 |
goto error;
|
renatofilho@588
|
397 |
}
|
renatofilho@588
|
398 |
|
renatofilho@588
|
399 |
vcaps = gst_caps_new_simple ("video/x-raw-yuv",
|
renatofilho@588
|
400 |
"framerate", GST_TYPE_FRACTION, (int) (fps * 1000), 1000, NULL);
|
renatofilho@588
|
401 |
|
renatofilho@588
|
402 |
if (gst_element_link_filtered (vrate, vencode, vcaps) == FALSE) {
|
renatofilho@588
|
403 |
g_warning ("Fail to link vrate with vencode.");
|
renatofilho@588
|
404 |
goto error;
|
renatofilho@588
|
405 |
}
|
renatofilho@588
|
406 |
gst_caps_unref (vcaps);
|
renatofilho@588
|
407 |
} else {
|
renatofilho@588
|
408 |
if (gst_element_link (vcolorspace, vencode) == FALSE) {
|
renatofilho@588
|
409 |
g_warning ("Fail to link colorspace and video encode element.");
|
renatofilho@588
|
410 |
goto error;
|
renatofilho@588
|
411 |
}
|
renatofilho@588
|
412 |
}
|
renatofilho@588
|
413 |
|
renatofilho@588
|
414 |
gst_element_link (vencode, vqueue_src);
|
renatofilho@588
|
415 |
|
renatofilho@588
|
416 |
// ghost pad the video bin
|
renatofilho@588
|
417 |
vpad = gst_element_get_pad (vqueue, "sink");
|
renatofilho@588
|
418 |
gst_element_add_pad (vbin, gst_ghost_pad_new ("sink", vpad));
|
renatofilho@588
|
419 |
gst_object_unref (vpad);
|
renatofilho@588
|
420 |
|
renatofilho@588
|
421 |
vpad = gst_element_get_pad (vqueue_src, "src");
|
renatofilho@588
|
422 |
gst_element_add_pad (vbin, gst_ghost_pad_new ("src", vpad));
|
renatofilho@588
|
423 |
gst_object_unref (vpad);
|
renatofilho@588
|
424 |
|
renatofilho@588
|
425 |
return vbin;
|
renatofilho@588
|
426 |
|
renatofilho@588
|
427 |
error:
|
renatofilho@588
|
428 |
if (vpad != NULL)
|
renatofilho@588
|
429 |
gst_object_unref (vpad);
|
renatofilho@588
|
430 |
|
renatofilho@588
|
431 |
if (vbin != NULL)
|
renatofilho@588
|
432 |
gst_object_unref (vbin);
|
renatofilho@588
|
433 |
|
renatofilho@588
|
434 |
if (vqueue != NULL)
|
renatofilho@588
|
435 |
gst_object_unref (vqueue);
|
renatofilho@588
|
436 |
|
renatofilho@588
|
437 |
if (vencode != NULL)
|
renatofilho@588
|
438 |
gst_object_unref (vencode);
|
renatofilho@588
|
439 |
|
renatofilho@588
|
440 |
if (vqueue_src != NULL)
|
renatofilho@588
|
441 |
gst_object_unref (vqueue_src);
|
renatofilho@588
|
442 |
|
renatofilho@588
|
443 |
if (vcolorspace != NULL)
|
renatofilho@588
|
444 |
gst_object_unref (vcolorspace);
|
renatofilho@588
|
445 |
|
renatofilho@588
|
446 |
return NULL;
|
renatofilho@588
|
447 |
}
|
renatofilho@588
|
448 |
|
renatofilho@588
|
449 |
|
renatofilho@600
|
450 |
|
renatofilho@600
|
451 |
void
|
renatofilho@588
|
452 |
g_mencoder_setup_stream (GMencoder *self,
|
renatofilho@588
|
453 |
const gchar* video_encode,
|
renatofilho@600
|
454 |
const gchar* mux_name,
|
renatofilho@588
|
455 |
gchar** video_encode_prop,
|
renatofilho@588
|
456 |
gdouble video_fps,
|
renatofilho@588
|
457 |
gdouble video_rate,
|
renatofilho@588
|
458 |
guint video_width,
|
renatofilho@600
|
459 |
guint video_height,
|
renatofilho@588
|
460 |
const gchar* audio_encode,
|
renatofilho@588
|
461 |
gchar** audio_encode_prop,
|
renatofilho@588
|
462 |
guint audio_rate,
|
renatofilho@600
|
463 |
const gchar* out_uri)
|
renatofilho@600
|
464 |
{
|
renatofilho@600
|
465 |
GMencoderPrivate *priv = G_MENCODER_GET_PRIVATE (self);
|
renatofilho@600
|
466 |
if (priv->ready == TRUE) {
|
renatofilho@600
|
467 |
g_warning ("Stream already configured. You need close stream first.");
|
renatofilho@600
|
468 |
return;
|
renatofilho@600
|
469 |
}
|
renatofilho@600
|
470 |
|
renatofilho@600
|
471 |
priv->pipe = _create_pipeline (self,
|
renatofilho@600
|
472 |
video_encode,
|
renatofilho@600
|
473 |
mux_name,
|
renatofilho@600
|
474 |
video_encode_prop,
|
renatofilho@600
|
475 |
video_fps,
|
renatofilho@600
|
476 |
video_rate,
|
renatofilho@600
|
477 |
video_width,
|
renatofilho@600
|
478 |
video_height,
|
renatofilho@600
|
479 |
audio_encode,
|
renatofilho@600
|
480 |
audio_encode_prop,
|
renatofilho@600
|
481 |
audio_rate);
|
renatofilho@600
|
482 |
|
renatofilho@600
|
483 |
_close_output (self);
|
renatofilho@600
|
484 |
_open_output (self, out_uri);
|
renatofilho@600
|
485 |
}
|
renatofilho@600
|
486 |
|
renatofilho@600
|
487 |
|
renatofilho@600
|
488 |
gboolean
|
renatofilho@600
|
489 |
g_mencoder_append_uri (GMencoder *self,
|
renatofilho@600
|
490 |
const gchar* uri)
|
renatofilho@600
|
491 |
{
|
renatofilho@600
|
492 |
GstElement *ap;
|
renatofilho@600
|
493 |
GstElement *vp;
|
renatofilho@600
|
494 |
GstPad *pad_src;
|
renatofilho@600
|
495 |
GstPad *pad_sink;
|
renatofilho@600
|
496 |
GstElement *src;
|
renatofilho@600
|
497 |
GMencoderPrivate *priv = G_MENCODER_GET_PRIVATE (self);
|
renatofilho@600
|
498 |
gboolean ret = FALSE;
|
renatofilho@600
|
499 |
|
renatofilho@600
|
500 |
g_return_val_if_fail (priv->pipe != NULL, FALSE);
|
renatofilho@600
|
501 |
g_return_val_if_fail (priv->ready == FALSE, FALSE);
|
renatofilho@600
|
502 |
|
renatofilho@600
|
503 |
src = _create_source (uri);
|
renatofilho@600
|
504 |
if (src == NULL)
|
renatofilho@600
|
505 |
return FALSE;
|
renatofilho@600
|
506 |
|
renatofilho@600
|
507 |
gst_bin_add (GST_BIN (priv->pipe), src);
|
renatofilho@600
|
508 |
|
renatofilho@600
|
509 |
ap = gst_bin_get_by_name (GST_BIN (priv->pipe), "ap");
|
renatofilho@600
|
510 |
vp = gst_bin_get_by_name (GST_BIN (priv->pipe), "vp");
|
renatofilho@600
|
511 |
if ((vp == NULL) || (ap == NULL))
|
renatofilho@600
|
512 |
goto error;
|
renatofilho@600
|
513 |
|
renatofilho@600
|
514 |
pad_src = gst_element_get_pad (src, "src_audio");
|
renatofilho@600
|
515 |
pad_sink = gst_element_get_compatible_pad (ap,
|
renatofilho@600
|
516 |
pad_src,
|
renatofilho@600
|
517 |
gst_pad_get_caps (pad_src));
|
renatofilho@600
|
518 |
|
renatofilho@600
|
519 |
if ((pad_sink == NULL) || (pad_src == NULL))
|
renatofilho@600
|
520 |
goto error;
|
renatofilho@600
|
521 |
|
renatofilho@600
|
522 |
GstPadLinkReturn lret = gst_pad_link (pad_src, pad_sink);
|
renatofilho@600
|
523 |
if (lret != GST_PAD_LINK_OK)
|
renatofilho@600
|
524 |
goto error;
|
renatofilho@600
|
525 |
|
renatofilho@600
|
526 |
gst_object_unref (pad_src);
|
renatofilho@600
|
527 |
gst_object_unref (pad_sink);
|
renatofilho@600
|
528 |
|
renatofilho@600
|
529 |
pad_src = gst_element_get_pad (src, "src_video");
|
renatofilho@600
|
530 |
pad_sink = gst_element_get_compatible_pad (vp,
|
renatofilho@600
|
531 |
pad_src,
|
renatofilho@600
|
532 |
gst_pad_get_caps (pad_src));
|
renatofilho@600
|
533 |
|
renatofilho@600
|
534 |
if ((pad_src == NULL) || (pad_sink == NULL))
|
renatofilho@600
|
535 |
goto error;
|
renatofilho@600
|
536 |
|
renatofilho@600
|
537 |
if (gst_pad_link (pad_src, pad_sink) != GST_PAD_LINK_OK) {
|
renatofilho@600
|
538 |
g_warning ("invalid source. video");
|
renatofilho@600
|
539 |
goto error;
|
renatofilho@600
|
540 |
}
|
renatofilho@600
|
541 |
|
renatofilho@600
|
542 |
ret = TRUE;
|
renatofilho@600
|
543 |
error:
|
renatofilho@600
|
544 |
|
renatofilho@600
|
545 |
if ((src != NULL) && (ret == FALSE)) {
|
renatofilho@600
|
546 |
gst_bin_remove (GST_BIN (priv->pipe), src);
|
renatofilho@600
|
547 |
gst_object_unref (src);
|
renatofilho@600
|
548 |
}
|
renatofilho@600
|
549 |
|
renatofilho@600
|
550 |
if (ap != NULL)
|
renatofilho@600
|
551 |
gst_object_unref (ap);
|
renatofilho@600
|
552 |
|
renatofilho@600
|
553 |
if (vp != NULL)
|
renatofilho@600
|
554 |
gst_object_unref (vp);
|
renatofilho@600
|
555 |
|
renatofilho@600
|
556 |
if (pad_src != NULL)
|
renatofilho@600
|
557 |
gst_object_unref (pad_src);
|
renatofilho@600
|
558 |
|
renatofilho@600
|
559 |
if (pad_sink != NULL)
|
renatofilho@600
|
560 |
gst_object_unref (pad_sink);
|
renatofilho@600
|
561 |
|
renatofilho@600
|
562 |
return ret;
|
renatofilho@600
|
563 |
}
|
renatofilho@600
|
564 |
|
renatofilho@600
|
565 |
|
renatofilho@600
|
566 |
|
renatofilho@600
|
567 |
void
|
renatofilho@600
|
568 |
g_mencoder_remove_uri (GMencoder *self,
|
renatofilho@600
|
569 |
const gchar* uri)
|
renatofilho@600
|
570 |
{
|
renatofilho@600
|
571 |
// GMencoderPrivate *priv = G_MENCODER_GET_PRIVATE (self);
|
renatofilho@600
|
572 |
//TODO: remove src
|
renatofilho@600
|
573 |
}
|
renatofilho@600
|
574 |
|
renatofilho@600
|
575 |
void
|
renatofilho@600
|
576 |
g_mencoder_play_stream (GMencoder *self)
|
renatofilho@600
|
577 |
{
|
renatofilho@600
|
578 |
GMencoderPrivate *priv = G_MENCODER_GET_PRIVATE (self);
|
renatofilho@600
|
579 |
|
renatofilho@600
|
580 |
g_return_if_fail (priv->ready == FALSE);
|
renatofilho@600
|
581 |
priv->ready = TRUE;
|
renatofilho@600
|
582 |
gst_element_set_state (priv->pipe, GST_STATE_PLAYING);
|
renatofilho@600
|
583 |
}
|
renatofilho@600
|
584 |
|
renatofilho@600
|
585 |
void
|
renatofilho@600
|
586 |
g_mencoder_pause_stream (GMencoder *self)
|
renatofilho@600
|
587 |
{
|
renatofilho@600
|
588 |
GMencoderPrivate *priv = G_MENCODER_GET_PRIVATE (self);
|
renatofilho@600
|
589 |
|
renatofilho@600
|
590 |
g_return_if_fail (priv->ready == TRUE);
|
renatofilho@600
|
591 |
gst_element_set_state (priv->pipe, GST_STATE_PAUSED);
|
renatofilho@600
|
592 |
}
|
renatofilho@600
|
593 |
|
renatofilho@600
|
594 |
void
|
renatofilho@600
|
595 |
g_mencoder_close_stream (GMencoder *self)
|
renatofilho@600
|
596 |
{
|
renatofilho@600
|
597 |
|
renatofilho@600
|
598 |
GMencoderPrivate *priv = G_MENCODER_GET_PRIVATE (self);
|
renatofilho@600
|
599 |
|
renatofilho@600
|
600 |
if (priv->pipe != NULL) {
|
renatofilho@600
|
601 |
gst_element_set_state (priv->pipe, GST_STATE_NULL);
|
renatofilho@600
|
602 |
gst_object_unref (priv->pipe);
|
renatofilho@600
|
603 |
priv->pipe = NULL;
|
renatofilho@600
|
604 |
priv->abin = NULL;
|
renatofilho@600
|
605 |
priv->vbin = NULL;
|
renatofilho@600
|
606 |
priv->sink = NULL;
|
renatofilho@600
|
607 |
}
|
renatofilho@600
|
608 |
priv->ready = FALSE;
|
renatofilho@600
|
609 |
}
|
renatofilho@600
|
610 |
|
renatofilho@600
|
611 |
static void
|
renatofilho@600
|
612 |
_sink_handoff_cb (GstElement* object,
|
renatofilho@600
|
613 |
GstBuffer* buf,
|
renatofilho@600
|
614 |
GstPad* pad,
|
renatofilho@600
|
615 |
gpointer user_data)
|
renatofilho@600
|
616 |
{
|
renatofilho@600
|
617 |
GMencoderPrivate *priv = G_MENCODER_GET_PRIVATE (user_data);
|
renatofilho@600
|
618 |
gint size = 0;
|
renatofilho@600
|
619 |
|
renatofilho@600
|
620 |
size = write (priv->fd, GST_BUFFER_DATA (buf), GST_BUFFER_SIZE (buf));
|
renatofilho@600
|
621 |
if (size == -1) {
|
renatofilho@600
|
622 |
g_signal_emit (user_data, g_mencoder_signals[ERROR], 0, "Fail to write output");
|
renatofilho@600
|
623 |
}
|
renatofilho@600
|
624 |
}
|
renatofilho@600
|
625 |
|
renatofilho@600
|
626 |
|
renatofilho@600
|
627 |
static GstElement*
|
renatofilho@600
|
628 |
_create_pipeline (GMencoder *self,
|
renatofilho@600
|
629 |
const gchar* video_encode,
|
renatofilho@600
|
630 |
const gchar* mux_name,
|
renatofilho@600
|
631 |
gchar** video_encode_prop,
|
renatofilho@600
|
632 |
gdouble video_fps,
|
renatofilho@600
|
633 |
gdouble video_rate,
|
renatofilho@600
|
634 |
guint video_width,
|
renatofilho@600
|
635 |
guint video_height,
|
renatofilho@600
|
636 |
const gchar* audio_encode,
|
renatofilho@600
|
637 |
gchar** audio_encode_prop,
|
renatofilho@600
|
638 |
guint audio_rate)
|
renatofilho@588
|
639 |
{
|
renatofilho@588
|
640 |
GstBus *bus = NULL;
|
renatofilho@588
|
641 |
GstElement *pipe = NULL;
|
renatofilho@600
|
642 |
GstElement *sink = NULL;
|
renatofilho@588
|
643 |
GstElement *mux = NULL;
|
renatofilho@588
|
644 |
GstElement *abin = NULL;
|
renatofilho@600
|
645 |
GstElement *vbin = NULL;
|
renatofilho@600
|
646 |
GstElement *ap = NULL;
|
renatofilho@600
|
647 |
GstElement *vp = NULL;
|
renatofilho@588
|
648 |
GstPad *aux_pad = NULL;
|
renatofilho@588
|
649 |
GstPad *mux_pad = NULL;
|
renatofilho@588
|
650 |
|
renatofilho@600
|
651 |
pipe = gst_pipeline_new ("pipe");
|
renatofilho@588
|
652 |
|
renatofilho@614
|
653 |
ap = gst_element_factory_make ("concatmux", "ap");
|
renatofilho@614
|
654 |
vp = gst_element_factory_make ("concatmux", "vp");
|
renatofilho@588
|
655 |
|
renatofilho@600
|
656 |
mux = gst_element_factory_make ((mux_name ? mux_name : "ffmux_mpeg"), "mux");
|
renatofilho@588
|
657 |
if (mux == NULL)
|
renatofilho@588
|
658 |
goto error;
|
renatofilho@588
|
659 |
|
renatofilho@600
|
660 |
sink = gst_element_factory_make ("fakesink", "sink");
|
renatofilho@600
|
661 |
if (sink == NULL)
|
renatofilho@588
|
662 |
goto error;
|
renatofilho@588
|
663 |
|
renatofilho@600
|
664 |
g_object_set (G_OBJECT(sink),
|
renatofilho@600
|
665 |
"sync", FALSE,
|
renatofilho@600
|
666 |
"signal-handoffs", TRUE, NULL);
|
renatofilho@600
|
667 |
|
renatofilho@600
|
668 |
abin = _create_audio_bin (audio_encode, audio_encode_prop, audio_rate);
|
renatofilho@588
|
669 |
if (abin == NULL)
|
renatofilho@588
|
670 |
goto error;
|
renatofilho@588
|
671 |
|
renatofilho@600
|
672 |
vbin = _create_video_bin (video_encode, video_encode_prop, video_fps, video_rate, video_width, video_height);
|
renatofilho@588
|
673 |
if (vbin == NULL)
|
renatofilho@588
|
674 |
goto error;
|
renatofilho@588
|
675 |
|
renatofilho@588
|
676 |
// Finish Pipe
|
renatofilho@600
|
677 |
gst_bin_add_many (GST_BIN (pipe), ap, abin, vp, vbin, mux, sink, NULL);
|
renatofilho@600
|
678 |
|
renatofilho@600
|
679 |
if (gst_element_link (ap, abin) == FALSE) {
|
renatofilho@614
|
680 |
g_warning ("Fail to link concat and abin");
|
renatofilho@600
|
681 |
goto error;
|
renatofilho@600
|
682 |
}
|
renatofilho@600
|
683 |
|
renatofilho@600
|
684 |
if (gst_element_link (vp, vbin) == FALSE) {
|
renatofilho@614
|
685 |
g_warning ("Fail to link concat and vbin");
|
renatofilho@600
|
686 |
}
|
renatofilho@588
|
687 |
|
renatofilho@588
|
688 |
//Link bins with mux
|
renatofilho@588
|
689 |
aux_pad = gst_element_get_pad (abin, "src");
|
renatofilho@588
|
690 |
mux_pad = gst_element_get_pad (mux, "audio_0");
|
renatofilho@600
|
691 |
if (mux_pad == NULL) {
|
renatofilho@600
|
692 |
g_warning ("Mux element no have audio_0 PAD");
|
renatofilho@600
|
693 |
goto error;
|
renatofilho@600
|
694 |
}
|
renatofilho@588
|
695 |
GstPadLinkReturn ret = gst_pad_link (aux_pad, mux_pad);
|
renatofilho@588
|
696 |
if (ret != GST_PAD_LINK_OK) {
|
renatofilho@588
|
697 |
g_warning ("Fail link audio and mux: %d", ret);
|
renatofilho@588
|
698 |
goto error;
|
renatofilho@588
|
699 |
|
renatofilho@588
|
700 |
}
|
renatofilho@588
|
701 |
gst_object_unref (aux_pad);
|
renatofilho@588
|
702 |
gst_object_unref (mux_pad);
|
renatofilho@588
|
703 |
|
renatofilho@588
|
704 |
aux_pad = gst_element_get_pad (vbin, "src");
|
renatofilho@588
|
705 |
mux_pad = gst_element_get_pad (mux, "video_0");
|
renatofilho@600
|
706 |
if (mux_pad == NULL) {
|
renatofilho@600
|
707 |
g_warning ("Mux element no have video_0 PAD");
|
renatofilho@600
|
708 |
goto error;
|
renatofilho@600
|
709 |
}
|
renatofilho@588
|
710 |
ret = gst_pad_link (aux_pad, mux_pad);
|
renatofilho@588
|
711 |
if (ret != GST_PAD_LINK_OK) {
|
renatofilho@588
|
712 |
g_warning ("Fail link video and mux: %d", ret);
|
renatofilho@588
|
713 |
goto error;
|
renatofilho@588
|
714 |
}
|
renatofilho@588
|
715 |
gst_object_unref (aux_pad);
|
renatofilho@588
|
716 |
gst_object_unref (mux_pad);
|
renatofilho@588
|
717 |
aux_pad = NULL;
|
renatofilho@588
|
718 |
mux_pad = NULL;
|
renatofilho@588
|
719 |
|
renatofilho@588
|
720 |
//Link mux with sink
|
renatofilho@600
|
721 |
gst_element_link (mux, sink);
|
renatofilho@588
|
722 |
|
renatofilho@600
|
723 |
g_signal_connect (G_OBJECT (sink),
|
renatofilho@600
|
724 |
"handoff",
|
renatofilho@600
|
725 |
G_CALLBACK (_sink_handoff_cb),
|
renatofilho@588
|
726 |
self);
|
renatofilho@588
|
727 |
|
renatofilho@588
|
728 |
bus = gst_pipeline_get_bus (GST_PIPELINE (pipe));
|
renatofilho@588
|
729 |
gst_bus_add_watch (bus, _pipeline_bus_cb, self);
|
renatofilho@588
|
730 |
gst_object_unref (bus);
|
renatofilho@600
|
731 |
return pipe;
|
renatofilho@588
|
732 |
|
renatofilho@588
|
733 |
error:
|
renatofilho@588
|
734 |
g_warning ("Invalid uri");
|
renatofilho@588
|
735 |
|
renatofilho@588
|
736 |
if (pipe != NULL) {
|
renatofilho@588
|
737 |
gst_object_unref (pipe);
|
renatofilho@588
|
738 |
}
|
renatofilho@588
|
739 |
|
renatofilho@588
|
740 |
|
renatofilho@588
|
741 |
if (mux != NULL) {
|
renatofilho@588
|
742 |
gst_object_unref (mux);
|
renatofilho@588
|
743 |
}
|
renatofilho@588
|
744 |
|
renatofilho@588
|
745 |
if (mux_pad != NULL) {
|
renatofilho@588
|
746 |
gst_object_unref (mux_pad);
|
renatofilho@588
|
747 |
}
|
renatofilho@588
|
748 |
|
renatofilho@588
|
749 |
if (aux_pad != NULL) {
|
renatofilho@588
|
750 |
gst_object_unref (mux_pad);
|
renatofilho@588
|
751 |
}
|
renatofilho@588
|
752 |
|
renatofilho@600
|
753 |
if (sink != NULL) {
|
renatofilho@600
|
754 |
gst_object_unref (sink);
|
renatofilho@588
|
755 |
}
|
renatofilho@588
|
756 |
|
renatofilho@588
|
757 |
if (abin != NULL) {
|
renatofilho@588
|
758 |
gst_object_unref (abin);
|
renatofilho@588
|
759 |
}
|
renatofilho@588
|
760 |
|
renatofilho@588
|
761 |
if (vbin != NULL) {
|
renatofilho@588
|
762 |
gst_object_unref (vbin);
|
renatofilho@588
|
763 |
}
|
renatofilho@588
|
764 |
|
renatofilho@588
|
765 |
return FALSE;
|
renatofilho@588
|
766 |
}
|
renatofilho@588
|
767 |
|
renatofilho@600
|
768 |
|
renatofilho@600
|
769 |
static void
|
renatofilho@600
|
770 |
_close_output (GMencoder *self)
|
renatofilho@588
|
771 |
{
|
renatofilho@600
|
772 |
|
renatofilho@600
|
773 |
}
|
renatofilho@600
|
774 |
|
renatofilho@600
|
775 |
static GstElement*
|
renatofilho@600
|
776 |
_create_source (const gchar* uri)
|
renatofilho@600
|
777 |
{
|
renatofilho@600
|
778 |
|
renatofilho@600
|
779 |
GstElement *bsrc;
|
renatofilho@600
|
780 |
GstElement *src;
|
renatofilho@600
|
781 |
GstElement *aqueue;
|
renatofilho@600
|
782 |
GstElement *vqueue;
|
renatofilho@600
|
783 |
GstElement *decode;
|
renatofilho@600
|
784 |
GstPad *src_pad;
|
renatofilho@600
|
785 |
|
renatofilho@600
|
786 |
|
renatofilho@600
|
787 |
bsrc = gst_bin_new (NULL);
|
renatofilho@600
|
788 |
|
renatofilho@600
|
789 |
src = gst_element_factory_make ("gnomevfssrc", "src");
|
renatofilho@600
|
790 |
g_object_set (G_OBJECT (src), "location", uri, NULL);
|
renatofilho@600
|
791 |
if (src == NULL)
|
renatofilho@600
|
792 |
goto error;
|
renatofilho@600
|
793 |
|
renatofilho@600
|
794 |
decode = gst_element_factory_make ("decodebin2", "decode");
|
renatofilho@600
|
795 |
if (decode == NULL)
|
renatofilho@600
|
796 |
goto error;
|
renatofilho@600
|
797 |
|
renatofilho@600
|
798 |
aqueue = gst_element_factory_make ("queue", "aqueue");
|
renatofilho@600
|
799 |
if (aqueue == NULL)
|
renatofilho@600
|
800 |
goto error;
|
renatofilho@600
|
801 |
|
renatofilho@600
|
802 |
vqueue = gst_element_factory_make ("queue", "vqueue");
|
renatofilho@600
|
803 |
if (vqueue == NULL)
|
renatofilho@600
|
804 |
goto error;
|
renatofilho@600
|
805 |
|
renatofilho@600
|
806 |
gst_bin_add_many (GST_BIN (bsrc), src, decode, aqueue, vqueue, NULL);
|
renatofilho@600
|
807 |
gst_element_link (src, decode);
|
renatofilho@600
|
808 |
|
renatofilho@600
|
809 |
g_signal_connect (G_OBJECT (decode),
|
renatofilho@600
|
810 |
"new-decoded-pad",
|
renatofilho@600
|
811 |
G_CALLBACK (_decodebin_new_pad_cb),
|
renatofilho@600
|
812 |
bsrc);
|
renatofilho@600
|
813 |
|
renatofilho@600
|
814 |
g_signal_connect (G_OBJECT (decode),
|
renatofilho@600
|
815 |
"unknown-type",
|
renatofilho@600
|
816 |
G_CALLBACK (_decodebin_unknown_type_cb),
|
renatofilho@600
|
817 |
pipe);
|
renatofilho@600
|
818 |
|
renatofilho@600
|
819 |
src_pad = gst_element_get_pad (aqueue, "src");
|
renatofilho@600
|
820 |
gst_element_add_pad (bsrc, gst_ghost_pad_new("src_audio", src_pad));
|
renatofilho@600
|
821 |
gst_object_unref (src_pad);
|
renatofilho@600
|
822 |
|
renatofilho@600
|
823 |
src_pad = gst_element_get_pad (vqueue, "src");
|
renatofilho@600
|
824 |
gst_element_add_pad (bsrc, gst_ghost_pad_new("src_video", src_pad));
|
renatofilho@600
|
825 |
gst_object_unref (src_pad);
|
renatofilho@600
|
826 |
|
renatofilho@600
|
827 |
return bsrc;
|
renatofilho@600
|
828 |
|
renatofilho@600
|
829 |
error:
|
renatofilho@600
|
830 |
if (src != NULL) {
|
renatofilho@600
|
831 |
gst_object_unref (src);
|
renatofilho@600
|
832 |
}
|
renatofilho@600
|
833 |
|
renatofilho@600
|
834 |
if (decode != NULL) {
|
renatofilho@600
|
835 |
gst_object_unref (decode);
|
renatofilho@600
|
836 |
}
|
renatofilho@600
|
837 |
|
renatofilho@600
|
838 |
if (aqueue != NULL) {
|
renatofilho@600
|
839 |
gst_object_unref (aqueue);
|
renatofilho@600
|
840 |
}
|
renatofilho@600
|
841 |
|
renatofilho@600
|
842 |
if (vqueue != NULL) {
|
renatofilho@600
|
843 |
gst_object_unref (vqueue);
|
renatofilho@600
|
844 |
}
|
renatofilho@600
|
845 |
|
renatofilho@600
|
846 |
return NULL;
|
renatofilho@600
|
847 |
}
|
renatofilho@600
|
848 |
|
renatofilho@600
|
849 |
static void
|
renatofilho@600
|
850 |
_open_output (GMencoder *self,
|
renatofilho@600
|
851 |
const gchar* uri)
|
renatofilho@600
|
852 |
{
|
renatofilho@600
|
853 |
gchar** i;
|
renatofilho@588
|
854 |
GMencoderPrivate *priv = G_MENCODER_GET_PRIVATE (self);
|
renatofilho@588
|
855 |
|
renatofilho@600
|
856 |
i = g_strsplit (uri, "://", 0);
|
renatofilho@600
|
857 |
if (strcmp (i[0], "fd") == 0) {
|
renatofilho@600
|
858 |
priv->fd = atoi (i[1]);
|
renatofilho@600
|
859 |
} else if (strcmp (i[0], "file") == 0) {
|
renatofilho@600
|
860 |
priv->fd = open (i[1], O_WRONLY | O_CREAT | O_TRUNC);
|
renatofilho@600
|
861 |
} else {
|
renatofilho@600
|
862 |
g_warning ("Output uri not supported");
|
renatofilho@600
|
863 |
}
|
renatofilho@588
|
864 |
|
renatofilho@600
|
865 |
g_strfreev (i);
|
renatofilho@588
|
866 |
}
|
renatofilho@588
|
867 |
|
renatofilho@588
|
868 |
static gboolean
|
renatofilho@588
|
869 |
_pipeline_bus_cb (GstBus *bus,
|
renatofilho@588
|
870 |
GstMessage *msg,
|
renatofilho@588
|
871 |
gpointer user_data)
|
renatofilho@588
|
872 |
{
|
renatofilho@600
|
873 |
GMencoderPrivate *priv = G_MENCODER_GET_PRIVATE (user_data);
|
renatofilho@600
|
874 |
|
renatofilho@588
|
875 |
switch (GST_MESSAGE_TYPE (msg))
|
renatofilho@588
|
876 |
{
|
renatofilho@588
|
877 |
case GST_MESSAGE_STATE_CHANGED:
|
renatofilho@588
|
878 |
{
|
renatofilho@588
|
879 |
GstState oldstate;
|
renatofilho@588
|
880 |
GstState newstate;
|
renatofilho@588
|
881 |
GstState pendingstate;
|
renatofilho@588
|
882 |
|
renatofilho@588
|
883 |
|
renatofilho@588
|
884 |
gst_message_parse_state_changed (msg, &oldstate,
|
renatofilho@588
|
885 |
&newstate, &pendingstate);
|
renatofilho@588
|
886 |
|
renatofilho@588
|
887 |
if (pendingstate != GST_STATE_VOID_PENDING)
|
renatofilho@588
|
888 |
break;
|
renatofilho@588
|
889 |
|
renatofilho@588
|
890 |
if ((oldstate == GST_STATE_READY) &&
|
renatofilho@588
|
891 |
(newstate == GST_STATE_PAUSED)) {
|
renatofilho@588
|
892 |
if (priv->ready)
|
renatofilho@588
|
893 |
g_signal_emit (user_data, g_mencoder_signals[PAUSED], 0);
|
renatofilho@588
|
894 |
} else if ((oldstate == GST_STATE_PAUSED) &&
|
renatofilho@588
|
895 |
(newstate == GST_STATE_PLAYING)) {
|
renatofilho@588
|
896 |
g_signal_emit (user_data, g_mencoder_signals[PLAYING], 0);
|
renatofilho@588
|
897 |
} else if ((oldstate == GST_STATE_READY) &&
|
renatofilho@588
|
898 |
(newstate == GST_STATE_NULL)) {
|
renatofilho@588
|
899 |
g_signal_emit (user_data, g_mencoder_signals[STOPED], 0);
|
renatofilho@588
|
900 |
}
|
renatofilho@588
|
901 |
break;
|
renatofilho@588
|
902 |
}
|
renatofilho@588
|
903 |
case GST_MESSAGE_ERROR:
|
renatofilho@588
|
904 |
{
|
renatofilho@588
|
905 |
GError *error;
|
renatofilho@588
|
906 |
gchar *debug;
|
renatofilho@588
|
907 |
gchar *err_str;
|
renatofilho@588
|
908 |
|
renatofilho@588
|
909 |
gst_message_parse_error (msg, &error, &debug);
|
renatofilho@588
|
910 |
err_str = g_strdup_printf ("Error [%d] %s (%s)", error->code,
|
renatofilho@588
|
911 |
error->message,
|
renatofilho@588
|
912 |
debug);
|
renatofilho@588
|
913 |
g_signal_emit (user_data, g_mencoder_signals[ERROR], 0, err_str);
|
renatofilho@600
|
914 |
priv->ready = FALSE;
|
renatofilho@588
|
915 |
g_free (err_str);
|
renatofilho@588
|
916 |
g_clear_error (&error);
|
renatofilho@588
|
917 |
g_free (debug);
|
renatofilho@588
|
918 |
break;
|
renatofilho@588
|
919 |
}
|
renatofilho@588
|
920 |
|
renatofilho@588
|
921 |
case GST_MESSAGE_EOS:
|
renatofilho@600
|
922 |
priv->ready = FALSE;
|
renatofilho@588
|
923 |
g_signal_emit (user_data, g_mencoder_signals[EOS], 0);
|
renatofilho@588
|
924 |
break;
|
renatofilho@588
|
925 |
default:
|
renatofilho@588
|
926 |
break;
|
renatofilho@588
|
927 |
}
|
renatofilho@588
|
928 |
return TRUE;
|
renatofilho@588
|
929 |
}
|
renatofilho@588
|
930 |
|
renatofilho@600
|
931 |
|
renatofilho@600
|
932 |
|
renatofilho@588
|
933 |
static void
|
renatofilho@588
|
934 |
_decodebin_new_pad_cb (GstElement* object,
|
renatofilho@588
|
935 |
GstPad* pad,
|
renatofilho@588
|
936 |
gboolean flag,
|
renatofilho@588
|
937 |
gpointer user_data)
|
renatofilho@588
|
938 |
{
|
renatofilho@588
|
939 |
GstCaps *caps;
|
renatofilho@588
|
940 |
gchar *str_caps = NULL;
|
renatofilho@600
|
941 |
GstElement *sink_element;
|
renatofilho@600
|
942 |
GstPad *sink_pad;
|
renatofilho@588
|
943 |
|
renatofilho@588
|
944 |
caps = gst_pad_get_caps (pad);
|
renatofilho@588
|
945 |
str_caps = gst_caps_to_string (caps);
|
renatofilho@588
|
946 |
if (strstr (str_caps, "audio") != NULL) {
|
renatofilho@600
|
947 |
sink_element = gst_bin_get_by_name (GST_BIN (user_data), "aqueue");
|
renatofilho@588
|
948 |
} else if (strstr (str_caps, "video") != NULL) {
|
renatofilho@600
|
949 |
sink_element = gst_bin_get_by_name (GST_BIN (user_data), "vqueue");
|
renatofilho@588
|
950 |
} else {
|
renatofilho@588
|
951 |
g_warning ("invalid caps %s", str_caps);
|
renatofilho@588
|
952 |
}
|
renatofilho@588
|
953 |
|
renatofilho@600
|
954 |
sink_pad = gst_element_get_pad (sink_element, "sink");
|
renatofilho@600
|
955 |
gst_pad_link (pad, sink_pad);
|
renatofilho@600
|
956 |
|
renatofilho@600
|
957 |
gst_object_unref (sink_element);
|
renatofilho@600
|
958 |
gst_object_unref (sink_pad);
|
renatofilho@588
|
959 |
g_free (str_caps);
|
renatofilho@588
|
960 |
gst_caps_unref (caps);
|
renatofilho@588
|
961 |
}
|
renatofilho@588
|
962 |
|
renatofilho@588
|
963 |
static void
|
renatofilho@588
|
964 |
_decodebin_unknown_type_cb (GstElement* object,
|
renatofilho@588
|
965 |
GstPad* pad,
|
renatofilho@588
|
966 |
GstCaps* caps,
|
renatofilho@588
|
967 |
gpointer user_data)
|
renatofilho@588
|
968 |
{
|
renatofilho@588
|
969 |
g_warning ("Unknown Type");
|
renatofilho@600
|
970 |
//priv->ready = FALSE;
|
renatofilho@588
|
971 |
}
|