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