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