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