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