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