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