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