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