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