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