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