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