gst-gmyth/playbinmaemo/gstplaybinmaemo.c
author renatofilho
Wed Aug 01 14:22:14 2007 +0100 (2007-08-01)
branchtrunk
changeset 789 f9cd59844f78
parent 787 e42706ada231
child 792 a6ac25bf88a7
permissions -rw-r--r--
[svn r795] - fixed bug on transcode operation;
- some code clean;
renatofilho@787
     1
/* GStreamer
renatofilho@787
     2
 * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
renatofilho@787
     3
 *
renatofilho@787
     4
 * This library is free software; you can redistribute it and/or
renatofilho@787
     5
 * modify it under the terms of the GNU Library General Public
renatofilho@787
     6
 * License as published by the Free Software Foundation; either
renatofilho@787
     7
 * version 2 of the License, or (at your option) any later version.
renatofilho@787
     8
 *
renatofilho@787
     9
 * This library is distributed in the hope that it will be useful,
renatofilho@787
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
renatofilho@787
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
renatofilho@787
    12
 * Library General Public License for more details.
renatofilho@787
    13
 *
renatofilho@787
    14
 * You should have received a copy of the GNU Library General Public
renatofilho@787
    15
 * License along with this library; if not, write to the
renatofilho@787
    16
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
renatofilho@787
    17
 * Boston, MA 02111-1307, USA.
renatofilho@787
    18
 */
renatofilho@787
    19
renatofilho@787
    20
#ifdef HAVE_CONFIG_H
renatofilho@787
    21
#include "config.h"
renatofilho@787
    22
#endif
renatofilho@787
    23
renatofilho@787
    24
#include <glib/gi18n.h>
renatofilho@787
    25
#include <string.h>
renatofilho@787
    26
#include <gst/gst.h>
renatofilho@787
    27
#include <gst/gsterror.h>
renatofilho@787
    28
#include <gst/gstplugin.h>
renatofilho@787
    29
#include <gst/interfaces/xoverlay.h>
renatofilho@787
    30
#include <X11/Xlib.h>
renatofilho@787
    31
//#include <gst/pbutils/pbutils.h>
renatofilho@787
    32
#include "gstplaybinmaemo.h"
renatofilho@787
    33
renatofilho@787
    34
renatofilho@787
    35
GST_DEBUG_CATEGORY_STATIC (gst_play_bin_maemo_debug);
renatofilho@787
    36
#define GST_CAT_DEFAULT gst_play_bin_maemo_debug
renatofilho@787
    37
renatofilho@787
    38
#define DEFAULT_VOLUME               10
renatofilho@787
    39
#define DEFAULT_XID                 -1
renatofilho@787
    40
renatofilho@787
    41
/* props */
renatofilho@787
    42
enum
renatofilho@787
    43
{
renatofilho@787
    44
  ARG_0,
renatofilho@787
    45
  ARG_URI,
renatofilho@787
    46
  ARG_QUEUE_SIZE,
renatofilho@787
    47
  ARG_QUEUE_MIN_THRESHOLD,
renatofilho@787
    48
  ARG_SOURCE,
renatofilho@787
    49
  ARG_VOLUME,
renatofilho@788
    50
  ARG_PARSE_METADATA,
renatofilho@787
    51
  ARG_XID
renatofilho@787
    52
};
renatofilho@787
    53
renatofilho@787
    54
static const GstElementDetails gst_play_bin_maemo_details =
renatofilho@787
    55
        GST_ELEMENT_DETAILS("Nuv demuxer",
renatofilho@787
    56
                            "Generic/Bin/Player",
renatofilho@787
    57
                            "Autoplug and play media from an uri used on maemo plataform",
renatofilho@787
    58
                            "Renato Araujo Oliveira Filho <renato.filho@indt.org.br>");
renatofilho@787
    59
renatofilho@787
    60
static void     gst_play_bin_maemo_dispose          (GObject * object);
renatofilho@787
    61
static void     gst_play_bin_maemo_finalize         (GObject * object);
renatofilho@787
    62
static void     gst_play_bin_maemo_set_property     (GObject * object, guint prop_id,
renatofilho@787
    63
                                                    const GValue * value, GParamSpec * spec);
renatofilho@787
    64
static void     gst_play_bin_maemo_get_property     (GObject * object, guint prop_id,
renatofilho@787
    65
                                                    GValue * value, GParamSpec * spec);
renatofilho@787
    66
static GstStateChangeReturn
renatofilho@787
    67
                gst_play_bin_maemo_change_state     (GstElement *element,
renatofilho@787
    68
                                                    GstStateChange transition);
renatofilho@787
    69
static gboolean factory_filter_sinks                (GstPluginFeature *feature,
renatofilho@787
    70
                                                    GstPlayBinMaemo *pbm);
renatofilho@787
    71
static gint     compare_ranks                       (GstPluginFeature * f1,
renatofilho@787
    72
                                                    GstPluginFeature * f2);
renatofilho@787
    73
static GList    *find_compatibles                   (GstPlayBinMaemo *pbm,
renatofilho@787
    74
                                                     const GstCaps *caps);
renatofilho@787
    75
static GstPad   *find_sink_pad                      (GstElement * element);
renatofilho@787
    76
static void     update_volume                       (GstPlayBinMaemo *pbm);
renatofilho@787
    77
static void     update_xid                          (GstPlayBinMaemo *pbm);
renatofilho@787
    78
static void     new_decoded_pad_cb                  (GstElement *object,
renatofilho@787
    79
                                                     GstPad* pad,
renatofilho@787
    80
                                                     gboolean arg,
renatofilho@787
    81
                                                     gpointer user_data);
renatofilho@787
    82
static void     unknown_type_cb                     (GstElement *object,
renatofilho@787
    83
                                                     GstPad *pad,
renatofilho@787
    84
                                                     GstCaps *casp,
renatofilho@787
    85
                                                     gpointer user_data);
renatofilho@787
    86
static gboolean autoplug_continue_cb                (GstElement* object,
renatofilho@787
    87
                                                     GstCaps* caps,
renatofilho@787
    88
                                                     gpointer user_data);
renatofilho@787
    89
static void     decode_new_pad_cb                   (GstElement *element,
renatofilho@787
    90
                                                     GObject    *new_pad,
renatofilho@787
    91
                                                     gpointer   user_data);
renatofilho@787
    92
static void     queue_underrun_cb                   (GstElement* queue,
renatofilho@787
    93
                                                     gpointer user_data);
renatofilho@787
    94
static void     queue_sink_underrun_cb              (GstElement* queue,
renatofilho@787
    95
                                                     gpointer user_data);
renatofilho@787
    96
static void     queue_sink_overrun_cb               (GstElement* queue,
renatofilho@787
    97
                                                     gpointer user_data);
renatofilho@787
    98
renatofilho@787
    99
renatofilho@787
   100
renatofilho@787
   101
renatofilho@787
   102
renatofilho@787
   103
GST_BOILERPLATE(GstPlayBinMaemo, gst_play_bin_maemo, GstPipeline, GST_TYPE_PIPELINE)
renatofilho@787
   104
renatofilho@787
   105
renatofilho@787
   106
static void
renatofilho@787
   107
gst_play_bin_maemo_base_init (gpointer klass)
renatofilho@787
   108
{
renatofilho@787
   109
    GstElementClass *element_class = GST_ELEMENT_CLASS(klass);
renatofilho@787
   110
renatofilho@787
   111
    gst_element_class_set_details (element_class, &gst_play_bin_maemo_details);
renatofilho@787
   112
}
renatofilho@787
   113
renatofilho@787
   114
static void
renatofilho@787
   115
gst_play_bin_maemo_class_init (GstPlayBinMaemoClass * klass)
renatofilho@787
   116
{
renatofilho@787
   117
  GObjectClass *gobject_klass;
renatofilho@787
   118
  GstElementClass *gstelement_klass;
renatofilho@787
   119
  GstBinClass *gstbin_klass;
renatofilho@787
   120
renatofilho@787
   121
  gobject_klass = (GObjectClass *) klass;
renatofilho@787
   122
  gstelement_klass = (GstElementClass *) klass;
renatofilho@787
   123
  gstbin_klass = (GstBinClass *) klass;
renatofilho@787
   124
renatofilho@787
   125
  parent_class = g_type_class_peek_parent (klass);
renatofilho@787
   126
renatofilho@787
   127
  gobject_klass->set_property = gst_play_bin_maemo_set_property;
renatofilho@787
   128
  gobject_klass->get_property = gst_play_bin_maemo_get_property;
renatofilho@787
   129
renatofilho@787
   130
  g_object_class_install_property (gobject_klass, ARG_URI,
renatofilho@787
   131
      g_param_spec_string ("uri", "URI", "URI of the media to play",
renatofilho@787
   132
          NULL, G_PARAM_READWRITE));
renatofilho@787
   133
renatofilho@787
   134
  g_object_class_install_property (gobject_klass, ARG_VOLUME,
renatofilho@787
   135
      g_param_spec_uint ("volume", "Audio volume", "volume",
renatofilho@787
   136
                         0, 10, (guint) DEFAULT_VOLUME, G_PARAM_READWRITE));
renatofilho@787
   137
renatofilho@787
   138
  g_object_class_install_property (gobject_klass, ARG_XID,
renatofilho@787
   139
      g_param_spec_long ("xid", "xid", "X windown ID",
renatofilho@787
   140
                         -1, G_MAXLONG, DEFAULT_XID, G_PARAM_READWRITE));
renatofilho@787
   141
renatofilho@787
   142
  g_object_class_install_property (gobject_klass, ARG_SOURCE,
renatofilho@787
   143
      g_param_spec_object ("source", "Source", "Source element",
renatofilho@787
   144
          GST_TYPE_ELEMENT, G_PARAM_READABLE));
renatofilho@787
   145
renatofilho@788
   146
  g_object_class_install_property (gobject_klass, ARG_PARSE_METADATA,
renatofilho@788
   147
      g_param_spec_boolean ("parse-metadata", "Parse Metadata", "Parse metadata info",
renatofilho@788
   148
          TRUE, G_PARAM_READWRITE));
renatofilho@788
   149
renatofilho@788
   150
renatofilho@787
   151
  GST_DEBUG_CATEGORY_INIT (gst_play_bin_maemo_debug, "playbinmaemo", 0,
renatofilho@787
   152
      "playbinmaemo");
renatofilho@787
   153
renatofilho@787
   154
  gobject_klass->dispose = GST_DEBUG_FUNCPTR (gst_play_bin_maemo_dispose);
renatofilho@787
   155
  gobject_klass->finalize = GST_DEBUG_FUNCPTR (gst_play_bin_maemo_finalize);
renatofilho@787
   156
renatofilho@787
   157
  gstelement_klass->change_state =
renatofilho@787
   158
      GST_DEBUG_FUNCPTR (gst_play_bin_maemo_change_state);
renatofilho@787
   159
}
renatofilho@787
   160
renatofilho@787
   161
static void
renatofilho@787
   162
gst_play_bin_maemo_init (GstPlayBinMaemo * play_bin_maemo, GstPlayBinMaemoClass *class)
renatofilho@787
   163
{
renatofilho@787
   164
  GList *factories;
renatofilho@787
   165
renatofilho@787
   166
  play_bin_maemo->uri = NULL;
renatofilho@787
   167
  play_bin_maemo->source = NULL;
renatofilho@787
   168
renatofilho@787
   169
  play_bin_maemo->volume = DEFAULT_VOLUME * 65535 / 10;
renatofilho@787
   170
  play_bin_maemo->xid = DEFAULT_XID;
renatofilho@788
   171
  play_bin_maemo->parse_metadata = TRUE;
renatofilho@787
   172
renatofilho@787
   173
  factories = gst_default_registry_feature_filter ((GstPluginFeatureFilter) factory_filter_sinks,
renatofilho@787
   174
                                                   FALSE, play_bin_maemo);
renatofilho@787
   175
renatofilho@787
   176
  play_bin_maemo->factories = g_list_sort (factories, (GCompareFunc) compare_ranks);
renatofilho@787
   177
}
renatofilho@787
   178
renatofilho@787
   179
static void
renatofilho@787
   180
gst_play_bin_maemo_dispose (GObject * object)
renatofilho@787
   181
{
renatofilho@787
   182
  GstPlayBinMaemo *play_bin_maemo;
renatofilho@787
   183
renatofilho@787
   184
  play_bin_maemo = GST_PLAY_BIN_MAEMO (object);
renatofilho@787
   185
  g_free (play_bin_maemo->uri);
renatofilho@787
   186
  play_bin_maemo->uri = NULL;
renatofilho@787
   187
renatofilho@787
   188
  G_OBJECT_CLASS (parent_class)->dispose (object);
renatofilho@787
   189
}
renatofilho@787
   190
renatofilho@787
   191
static void
renatofilho@787
   192
gst_play_bin_maemo_finalize (GObject * object)
renatofilho@787
   193
{
renatofilho@787
   194
  G_OBJECT_CLASS (parent_class)->finalize (object);
renatofilho@787
   195
}
renatofilho@787
   196
renatofilho@787
   197
static gboolean
renatofilho@787
   198
array_has_value (const gchar * values[], const gchar * value)
renatofilho@787
   199
{
renatofilho@787
   200
  gint i;
renatofilho@787
   201
renatofilho@787
   202
  for (i = 0; values[i]; i++) {
renatofilho@787
   203
    if (g_str_has_prefix (value, values[i]))
renatofilho@787
   204
      return TRUE;
renatofilho@787
   205
  }
renatofilho@787
   206
  return FALSE;
renatofilho@787
   207
}
renatofilho@787
   208
renatofilho@787
   209
/* list of URIs that we consider to be streams and that need buffering.
renatofilho@787
   210
 * We have no mechanism yet to figure this out with a query. */
renatofilho@787
   211
static const gchar *stream_uris[] = { "http://", "mms://", "mmsh://",
renatofilho@787
   212
  "mmsu://", "mmst://", NULL
renatofilho@787
   213
};
renatofilho@787
   214
renatofilho@787
   215
/* blacklisted URIs, we know they will always fail. */
renatofilho@787
   216
static const gchar *blacklisted_uris[] = { NULL };
renatofilho@787
   217
renatofilho@787
   218
/* mime types that we don't consider to be media types */
renatofilho@787
   219
static const gchar *no_media_mimes[] = {
renatofilho@787
   220
  "application/x-executable", "application/x-bzip", "application/x-gzip",
renatofilho@787
   221
  "application/zip", "application/x-compress", NULL
renatofilho@787
   222
};
renatofilho@787
   223
renatofilho@787
   224
/* mime types we consider raw media */
renatofilho@787
   225
static const gchar *raw_mimes[] = {
renatofilho@787
   226
  "audio/x-raw", "video/x-raw", NULL
renatofilho@787
   227
};
renatofilho@787
   228
renatofilho@787
   229
#define IS_STREAM_URI(uri)          (array_has_value (stream_uris, uri))
renatofilho@787
   230
#define IS_BLACKLISTED_URI(uri)     (array_has_value (blacklisted_uris, uri))
renatofilho@787
   231
#define IS_NO_MEDIA_MIME(mime)      (array_has_value (no_media_mimes, mime))
renatofilho@787
   232
#define IS_RAW_MIME(mime)           (array_has_value (raw_mimes, mime))
renatofilho@787
   233
renatofilho@787
   234
/*
renatofilho@787
   235
 * Generate and configure a source element.
renatofilho@787
   236
 */
renatofilho@787
   237
static GstElement *
renatofilho@787
   238
gen_source_element (GstPlayBinMaemo * play_bin_maemo)
renatofilho@787
   239
{
renatofilho@787
   240
  GstElement *source;
renatofilho@787
   241
renatofilho@787
   242
  if (!play_bin_maemo->uri)
renatofilho@787
   243
    goto no_uri;
renatofilho@787
   244
renatofilho@787
   245
  if (!gst_uri_is_valid (play_bin_maemo->uri))
renatofilho@787
   246
    goto invalid_uri;
renatofilho@787
   247
renatofilho@787
   248
  if (IS_BLACKLISTED_URI (play_bin_maemo->uri))
renatofilho@787
   249
    goto uri_blacklisted;
renatofilho@787
   250
renatofilho@787
   251
  source = gst_element_make_from_uri (GST_URI_SRC, play_bin_maemo->uri,
renatofilho@787
   252
      "source");
renatofilho@787
   253
  if (!source)
renatofilho@787
   254
    goto no_source;
renatofilho@787
   255
renatofilho@787
   256
  play_bin_maemo->is_stream = IS_STREAM_URI (play_bin_maemo->uri);
renatofilho@787
   257
renatofilho@787
   258
  /* make HTTP sources send extra headers so we get icecast
renatofilho@787
   259
   * metadata in case the stream is an icecast stream */
renatofilho@787
   260
  if (!strncmp (play_bin_maemo->uri, "http://", 7) &&
renatofilho@787
   261
      g_object_class_find_property (G_OBJECT_GET_CLASS (source),
renatofilho@787
   262
          "iradio-mode")) {
renatofilho@787
   263
    g_object_set (source, "iradio-mode", TRUE, NULL);
renatofilho@787
   264
  }
renatofilho@787
   265
  return source;
renatofilho@787
   266
renatofilho@787
   267
  /* ERRORS */
renatofilho@787
   268
no_uri:
renatofilho@787
   269
  {
renatofilho@787
   270
    GST_ELEMENT_ERROR (play_bin_maemo, RESOURCE, NOT_FOUND,
renatofilho@787
   271
        (_("No URI specified to play from.")), (NULL));
renatofilho@787
   272
    return NULL;
renatofilho@787
   273
  }
renatofilho@787
   274
invalid_uri:
renatofilho@787
   275
  {
renatofilho@787
   276
    GST_ELEMENT_ERROR (play_bin_maemo, RESOURCE, NOT_FOUND,
renatofilho@787
   277
        (_("Invalid URI \"%s\"."), play_bin_maemo->uri), (NULL));
renatofilho@787
   278
    return NULL;
renatofilho@787
   279
  }
renatofilho@787
   280
uri_blacklisted:
renatofilho@787
   281
  {
renatofilho@787
   282
    GST_ELEMENT_ERROR (play_bin_maemo, RESOURCE, FAILED,
renatofilho@787
   283
        (_("RTSP streams cannot be played yet.")), (NULL));
renatofilho@787
   284
    return NULL;
renatofilho@787
   285
  }
renatofilho@787
   286
no_source:
renatofilho@787
   287
  {
renatofilho@787
   288
    gchar *prot = gst_uri_get_protocol (play_bin_maemo->uri);
renatofilho@787
   289
renatofilho@787
   290
    /* whoops, could not create the source element, dig a little deeper to
renatofilho@787
   291
     * figure out what might be wrong. */
renatofilho@787
   292
    if (prot) {
renatofilho@787
   293
      gchar *desc;
renatofilho@787
   294
renatofilho@787
   295
      /*
renatofilho@787
   296
      gst_element_post_message (GST_ELEMENT (play_bin_maemo),
renatofilho@787
   297
          gst_missing_uri_source_message_new (GST_ELEMENT (play_bin_maemo),
renatofilho@787
   298
              prot));
renatofilho@787
   299
renatofilho@787
   300
      desc = gst_pb_utils_get_source_description (prot);
renatofilho@787
   301
      GST_ELEMENT_ERROR (play_bin_maemo, CORE, MISSING_PLUGIN,
renatofilho@787
   302
          (_("A %s plugin is required to play this stream, but not installed."),
renatofilho@787
   303
              desc), ("No URI handler for %s", prot));
renatofilho@787
   304
              */
renatofilho@787
   305
      g_free (desc);
renatofilho@787
   306
      g_free (prot);
renatofilho@787
   307
    } else
renatofilho@787
   308
      goto invalid_uri;
renatofilho@787
   309
renatofilho@787
   310
    return NULL;
renatofilho@787
   311
  }
renatofilho@787
   312
}
renatofilho@787
   313
renatofilho@787
   314
static void
renatofilho@787
   315
remove_source (GstPlayBinMaemo *pbm)
renatofilho@787
   316
{
renatofilho@787
   317
  GstElement *source = pbm->source;
renatofilho@787
   318
renatofilho@787
   319
  if (source) {
renatofilho@787
   320
    GST_DEBUG_OBJECT (pbm, "removing old src element");
renatofilho@787
   321
    gst_element_set_state (source, GST_STATE_NULL);
renatofilho@787
   322
    gst_bin_remove (GST_BIN_CAST (pbm), source);
renatofilho@787
   323
    pbm->source = NULL;
renatofilho@787
   324
  }
renatofilho@787
   325
}
renatofilho@787
   326
renatofilho@787
   327
static void
renatofilho@787
   328
remove_decoders (GstPlayBinMaemo *pbm)
renatofilho@787
   329
{
renatofilho@787
   330
    if (pbm->queue != NULL) {
renatofilho@787
   331
        gst_element_set_state (pbm->queue, GST_STATE_NULL);
renatofilho@787
   332
        gst_bin_remove (GST_BIN_CAST (pbm), pbm->queue);
renatofilho@787
   333
        pbm->queue = NULL;
renatofilho@787
   334
    }
renatofilho@787
   335
renatofilho@787
   336
    if (pbm->decoder != NULL) {
renatofilho@787
   337
        gst_element_set_state (pbm->decoder, GST_STATE_NULL);
renatofilho@787
   338
        gst_bin_remove (GST_BIN_CAST (pbm), pbm->decoder);
renatofilho@787
   339
        pbm->decoder = NULL;
renatofilho@787
   340
    }
renatofilho@787
   341
}
renatofilho@787
   342
renatofilho@787
   343
static void
renatofilho@787
   344
remove_sinks (GstPlayBinMaemo *pbm)
renatofilho@787
   345
{
renatofilho@787
   346
    GSList *walk;
renatofilho@787
   347
renatofilho@787
   348
    for(walk=pbm->sinks; walk != NULL; walk = walk->next) {
renatofilho@787
   349
        GstElement *element = (GstElement *) walk->data;
renatofilho@787
   350
renatofilho@787
   351
        gst_element_set_state (element, GST_STATE_NULL);
renatofilho@787
   352
        gst_bin_remove (GST_BIN_CAST (pbm), element);
renatofilho@787
   353
    }
renatofilho@787
   354
renatofilho@787
   355
    g_slist_free (pbm->sinks);
renatofilho@787
   356
    pbm->sinks = NULL;
renatofilho@787
   357
}
renatofilho@787
   358
renatofilho@787
   359
static void
renatofilho@787
   360
prepare_elements (GstPlayBinMaemo *pbm)
renatofilho@787
   361
{
renatofilho@787
   362
    if (pbm->decoder == NULL) {
renatofilho@787
   363
        pbm->decoder = gst_element_factory_make ("decodebin2", "decode");
renatofilho@787
   364
        gst_bin_add (GST_BIN (pbm), pbm->decoder);
renatofilho@787
   365
        g_signal_connect (G_OBJECT (pbm->decoder),
renatofilho@787
   366
                          "autoplug-continue",
renatofilho@787
   367
                          G_CALLBACK (autoplug_continue_cb),
renatofilho@787
   368
                          pbm);
renatofilho@787
   369
        g_signal_connect (G_OBJECT (pbm->decoder),
renatofilho@787
   370
                          "unknown-type",
renatofilho@787
   371
                          G_CALLBACK (unknown_type_cb),
renatofilho@787
   372
                          pbm);
renatofilho@787
   373
        g_signal_connect (G_OBJECT (pbm->decoder),
renatofilho@787
   374
                          "new-decoded-pad",
renatofilho@787
   375
                          G_CALLBACK (new_decoded_pad_cb),
renatofilho@787
   376
                          pbm);
renatofilho@787
   377
    }
renatofilho@787
   378
renatofilho@787
   379
    if (pbm->queue == NULL) {
renatofilho@787
   380
        pbm->queue = gst_element_factory_make ("queue", NULL);
renatofilho@787
   381
        gst_bin_add (GST_BIN (pbm), pbm->queue);
renatofilho@787
   382
    }
renatofilho@787
   383
renatofilho@787
   384
    if (gst_element_link_many (pbm->source, pbm->queue, pbm->decoder, NULL) == FALSE) {
renatofilho@787
   385
        g_warning ("FAIL TO LINK SRC WITH DECODEBIN2");
renatofilho@787
   386
    }
renatofilho@787
   387
}
renatofilho@787
   388
renatofilho@787
   389
static gboolean
renatofilho@787
   390
setup_source (GstPlayBinMaemo *pbm)
renatofilho@787
   391
{
renatofilho@787
   392
    if (!pbm->need_rebuild)
renatofilho@787
   393
        return TRUE;
renatofilho@787
   394
renatofilho@787
   395
    GST_DEBUG_OBJECT (pbm, "setup source");
renatofilho@787
   396
renatofilho@788
   397
    pbm->has_metadata = FALSE;
renatofilho@788
   398
renatofilho@787
   399
    /* delete old src */
renatofilho@787
   400
    remove_source (pbm);
renatofilho@787
   401
renatofilho@787
   402
    /* create and configure an element that can handle the uri */
renatofilho@787
   403
    if (!(pbm->source = gen_source_element (pbm)))
renatofilho@787
   404
        goto no_source;
renatofilho@787
   405
renatofilho@787
   406
renatofilho@787
   407
    gst_bin_add (GST_BIN_CAST (pbm), pbm->source);
renatofilho@787
   408
renatofilho@787
   409
    remove_decoders (pbm);
renatofilho@787
   410
renatofilho@787
   411
    remove_sinks (pbm);
renatofilho@787
   412
renatofilho@787
   413
#if 0
renatofilho@787
   414
    if (verify_src_have_sink (pbm)) {
renatofilho@787
   415
        /* source can be linked with sinks directly */
renatofilho@787
   416
        return TRUE;
renatofilho@787
   417
    }
renatofilho@787
   418
#endif
renatofilho@787
   419
renatofilho@787
   420
    prepare_elements (pbm);
renatofilho@787
   421
renatofilho@787
   422
    return TRUE;
renatofilho@787
   423
renatofilho@787
   424
no_source:
renatofilho@787
   425
    return FALSE;
renatofilho@787
   426
}
renatofilho@787
   427
renatofilho@787
   428
static void
renatofilho@787
   429
gst_play_bin_maemo_set_property (GObject *object,
renatofilho@787
   430
                                 guint prop_id,
renatofilho@787
   431
                                 const GValue *value,
renatofilho@787
   432
                                 GParamSpec *pspec)
renatofilho@787
   433
{
renatofilho@787
   434
  GstPlayBinMaemo *play_bin_maemo;
renatofilho@787
   435
renatofilho@787
   436
  g_return_if_fail (GST_IS_PLAY_BIN_MAEMO (object));
renatofilho@787
   437
renatofilho@787
   438
  play_bin_maemo = GST_PLAY_BIN_MAEMO (object);
renatofilho@787
   439
renatofilho@787
   440
  switch (prop_id) {
renatofilho@787
   441
    case ARG_URI:
renatofilho@787
   442
    {
renatofilho@787
   443
      const gchar *uri = g_value_get_string (value);
renatofilho@787
   444
renatofilho@787
   445
      if (uri == NULL) {
renatofilho@787
   446
        g_warning ("cannot set NULL uri");
renatofilho@787
   447
        return;
renatofilho@787
   448
      }
renatofilho@787
   449
      /* if we have no previous uri, or the new uri is different from the
renatofilho@787
   450
       * old one, replug */
renatofilho@787
   451
      if (play_bin_maemo->uri == NULL || strcmp (play_bin_maemo->uri, uri) != 0) {
renatofilho@787
   452
        g_free (play_bin_maemo->uri);
renatofilho@787
   453
        play_bin_maemo->uri = g_strdup (uri);
renatofilho@787
   454
renatofilho@787
   455
        GST_DEBUG ("setting new uri to %s", uri);
renatofilho@787
   456
renatofilho@787
   457
        play_bin_maemo->need_rebuild = TRUE;
renatofilho@787
   458
      }
renatofilho@787
   459
      break;
renatofilho@787
   460
    }
renatofilho@787
   461
    case ARG_VOLUME:
renatofilho@787
   462
    {
renatofilho@787
   463
      guint volume;
renatofilho@787
   464
      volume = g_value_get_uint (value);
renatofilho@787
   465
      if (volume != 0) {
renatofilho@787
   466
        volume = (guint) (65535 * volume / 10);
renatofilho@787
   467
      }
renatofilho@787
   468
renatofilho@787
   469
      if (play_bin_maemo->volume != volume) {
renatofilho@787
   470
          play_bin_maemo->volume = volume;
renatofilho@787
   471
          update_volume (play_bin_maemo);
renatofilho@787
   472
      }
renatofilho@787
   473
      break;
renatofilho@787
   474
    }
renatofilho@787
   475
    case ARG_XID:
renatofilho@787
   476
    {
renatofilho@787
   477
      long xid;
renatofilho@787
   478
      xid = g_value_get_long (value);
renatofilho@787
   479
      if (play_bin_maemo->xid != xid) {
renatofilho@787
   480
          play_bin_maemo->xid = xid;
renatofilho@787
   481
          update_xid (play_bin_maemo);
renatofilho@787
   482
      }
renatofilho@787
   483
      break;
renatofilho@787
   484
    }
renatofilho@788
   485
    case ARG_PARSE_METADATA:
renatofilho@788
   486
        play_bin_maemo->parse_metadata = g_value_get_boolean (value);
renatofilho@788
   487
        break;
renatofilho@787
   488
    default:
renatofilho@787
   489
      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
renatofilho@787
   490
      break;
renatofilho@787
   491
  }
renatofilho@787
   492
}
renatofilho@787
   493
renatofilho@787
   494
static void
renatofilho@787
   495
gst_play_bin_maemo_get_property (GObject * object, guint prop_id, GValue * value,
renatofilho@787
   496
    GParamSpec * pspec)
renatofilho@787
   497
{
renatofilho@787
   498
  GstPlayBinMaemo *play_bin_maemo;
renatofilho@787
   499
renatofilho@787
   500
  g_return_if_fail (GST_IS_PLAY_BIN_MAEMO (object));
renatofilho@787
   501
renatofilho@787
   502
  play_bin_maemo = GST_PLAY_BIN_MAEMO (object);
renatofilho@787
   503
renatofilho@787
   504
  switch (prop_id) {
renatofilho@787
   505
    case ARG_URI:
renatofilho@787
   506
      g_value_set_string (value, play_bin_maemo->uri);
renatofilho@787
   507
      break;
renatofilho@787
   508
    case ARG_SOURCE:
renatofilho@787
   509
      g_value_set_object (value, play_bin_maemo->source);
renatofilho@787
   510
      break;
renatofilho@787
   511
    case ARG_VOLUME:
renatofilho@787
   512
      g_value_set_uint (value, play_bin_maemo->volume);
renatofilho@787
   513
      break;
renatofilho@787
   514
    case ARG_XID:
renatofilho@787
   515
      g_value_set_long (value, play_bin_maemo->xid);
renatofilho@787
   516
      break;
renatofilho@788
   517
    case ARG_PARSE_METADATA:
renatofilho@788
   518
      g_value_set_boolean (value, play_bin_maemo->parse_metadata);
renatofilho@788
   519
      break;
renatofilho@787
   520
    default:
renatofilho@787
   521
      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
renatofilho@787
   522
      break;
renatofilho@787
   523
  }
renatofilho@787
   524
}
renatofilho@787
   525
renatofilho@787
   526
static GstStateChangeReturn
renatofilho@787
   527
gst_play_bin_maemo_change_state (GstElement * element, GstStateChange transition)
renatofilho@787
   528
{
renatofilho@787
   529
  GstStateChangeReturn ret;
renatofilho@787
   530
  GstPlayBinMaemo *play_bin_maemo;
renatofilho@787
   531
renatofilho@787
   532
  play_bin_maemo = GST_PLAY_BIN_MAEMO (element);
renatofilho@787
   533
renatofilho@787
   534
  switch (transition) {
renatofilho@787
   535
    case GST_STATE_CHANGE_READY_TO_PAUSED:
renatofilho@787
   536
      if (!setup_source (play_bin_maemo))
renatofilho@787
   537
        goto source_failed;
renatofilho@787
   538
      break;
renatofilho@787
   539
    default:
renatofilho@787
   540
      break;
renatofilho@787
   541
  }
renatofilho@787
   542
renatofilho@787
   543
  ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
renatofilho@787
   544
renatofilho@787
   545
  switch (transition) {
renatofilho@787
   546
    case GST_STATE_CHANGE_READY_TO_PAUSED:
renatofilho@787
   547
      if (ret == GST_STATE_CHANGE_FAILURE) {
renatofilho@787
   548
        play_bin_maemo->need_rebuild = TRUE;
renatofilho@787
   549
        return GST_STATE_CHANGE_FAILURE;
renatofilho@787
   550
      }
renatofilho@787
   551
      break;
renatofilho@787
   552
      /* clean-up in both cases, READY=>NULL clean-up is if there was an error */
renatofilho@787
   553
    case GST_STATE_CHANGE_PAUSED_TO_READY:
renatofilho@787
   554
    case GST_STATE_CHANGE_READY_TO_NULL:
renatofilho@787
   555
      play_bin_maemo->need_rebuild = TRUE;
renatofilho@787
   556
      remove_decoders (play_bin_maemo);
renatofilho@787
   557
      remove_source (play_bin_maemo);
renatofilho@787
   558
      break;
renatofilho@787
   559
    default:
renatofilho@787
   560
      break;
renatofilho@787
   561
  }
renatofilho@787
   562
  return ret;
renatofilho@787
   563
renatofilho@787
   564
  /* ERRORS */
renatofilho@787
   565
source_failed:
renatofilho@787
   566
  {
renatofilho@787
   567
    play_bin_maemo->need_rebuild = TRUE;
renatofilho@787
   568
renatofilho@787
   569
    return GST_STATE_CHANGE_FAILURE;
renatofilho@787
   570
  }
renatofilho@787
   571
}
renatofilho@787
   572
renatofilho@787
   573
static gboolean
renatofilho@787
   574
factory_filter_sinks (GstPluginFeature *feature,
renatofilho@787
   575
                      GstPlayBinMaemo *pbm)
renatofilho@787
   576
{
renatofilho@787
   577
    guint rank;
renatofilho@787
   578
    const gchar *klass;
renatofilho@787
   579
renatofilho@787
   580
    if (!GST_IS_ELEMENT_FACTORY (feature))
renatofilho@787
   581
        return FALSE;
renatofilho@787
   582
renatofilho@787
   583
    klass = gst_element_factory_get_klass (GST_ELEMENT_FACTORY (feature));
renatofilho@787
   584
renatofilho@787
   585
    if ((strstr (klass, "Sink/Video") == NULL) && (strstr (klass, "Sink/Audio") == NULL))
renatofilho@787
   586
        return FALSE;
renatofilho@787
   587
renatofilho@787
   588
    g_debug ("Fitered: %s", gst_element_factory_get_longname ((GST_ELEMENT_FACTORY (feature))));
renatofilho@787
   589
    rank = gst_plugin_feature_get_rank (feature);
renatofilho@787
   590
    if (rank < GST_RANK_MARGINAL)
renatofilho@787
   591
        return FALSE;
renatofilho@787
   592
renatofilho@787
   593
    return TRUE;
renatofilho@787
   594
}
renatofilho@787
   595
renatofilho@787
   596
static gint
renatofilho@787
   597
compare_ranks (GstPluginFeature * f1, GstPluginFeature * f2)
renatofilho@787
   598
{
renatofilho@787
   599
  gint diff;
renatofilho@787
   600
  const gchar *rname1, *rname2;
renatofilho@787
   601
renatofilho@787
   602
  diff = gst_plugin_feature_get_rank (f2) - gst_plugin_feature_get_rank (f1);
renatofilho@787
   603
  if (diff != 0)
renatofilho@787
   604
    return diff;
renatofilho@787
   605
renatofilho@787
   606
  rname1 = gst_plugin_feature_get_name (f1);
renatofilho@787
   607
  rname2 = gst_plugin_feature_get_name (f2);
renatofilho@787
   608
renatofilho@787
   609
  diff = strcmp (rname2, rname1);
renatofilho@787
   610
renatofilho@787
   611
  return diff;
renatofilho@787
   612
}
renatofilho@787
   613
renatofilho@787
   614
renatofilho@787
   615
static GList *
renatofilho@787
   616
find_compatibles (GstPlayBinMaemo *pbm, const GstCaps *caps)
renatofilho@787
   617
{
renatofilho@787
   618
  GList *factories;
renatofilho@787
   619
  GList *to_try = NULL;
renatofilho@787
   620
renatofilho@787
   621
  /* loop over all the factories */
renatofilho@787
   622
  for (factories = pbm->factories; factories; factories = g_list_next (factories)) {
renatofilho@787
   623
    GstElementFactory *factory = GST_ELEMENT_FACTORY (factories->data);
renatofilho@787
   624
    const GList *templates;
renatofilho@787
   625
    GList *walk;
renatofilho@787
   626
renatofilho@787
   627
    /* get the templates from the element factory */
renatofilho@787
   628
    templates = gst_element_factory_get_static_pad_templates (factory);
renatofilho@787
   629
    for (walk = (GList *) templates; walk; walk = g_list_next (walk)) {
renatofilho@787
   630
      GstStaticPadTemplate *templ = walk->data;
renatofilho@787
   631
renatofilho@787
   632
      /* we only care about the sink templates */
renatofilho@787
   633
      if (templ->direction == GST_PAD_SINK) {
renatofilho@787
   634
        GstCaps *intersect;
renatofilho@787
   635
        GstCaps *tmpl_caps;
renatofilho@787
   636
renatofilho@787
   637
        /* try to intersect the caps with the caps of the template */
renatofilho@787
   638
        tmpl_caps = gst_static_caps_get (&templ->static_caps);
renatofilho@787
   639
renatofilho@787
   640
        intersect = gst_caps_intersect (caps, tmpl_caps);
renatofilho@787
   641
        gst_caps_unref (tmpl_caps);
renatofilho@787
   642
renatofilho@787
   643
        /* check if the intersection is empty */
renatofilho@787
   644
        if (!gst_caps_is_empty (intersect)) {
renatofilho@787
   645
          /* non empty intersection, we can use this element */
renatofilho@787
   646
          to_try = g_list_prepend (to_try, factory);
renatofilho@787
   647
          gst_caps_unref (intersect);
renatofilho@787
   648
          break;
renatofilho@787
   649
        }
renatofilho@787
   650
        gst_caps_unref (intersect);
renatofilho@787
   651
      }
renatofilho@787
   652
    }
renatofilho@787
   653
  }
renatofilho@787
   654
  to_try = g_list_reverse (to_try);
renatofilho@787
   655
renatofilho@787
   656
  return to_try;
renatofilho@787
   657
}
renatofilho@787
   658
renatofilho@787
   659
renatofilho@787
   660
static gboolean
renatofilho@787
   661
autoplug_continue_cb (GstElement* object,
renatofilho@787
   662
                      GstCaps* caps,
renatofilho@787
   663
                      gpointer user_data)
renatofilho@787
   664
{
renatofilho@787
   665
    GList *comp = NULL;
renatofilho@787
   666
    gboolean ret = TRUE;
renatofilho@788
   667
    GstPlayBinMaemo *pbm;
renatofilho@788
   668
renatofilho@788
   669
    pbm = GST_PLAY_BIN_MAEMO (user_data);
renatofilho@788
   670
renatofilho@788
   671
    //TODO: fix this for work with all metada elements
renatofilho@788
   672
    if (pbm->parse_metadata) {
renatofilho@788
   673
        gchar *caps_str = gst_caps_to_string (caps);
renatofilho@788
   674
        if ((strstr (caps_str, "id3") != NULL) &&
renatofilho@788
   675
            (pbm->has_metadata == FALSE)) {
renatofilho@788
   676
renatofilho@788
   677
            g_free (caps_str);
renatofilho@788
   678
            pbm->has_metadata = TRUE;
renatofilho@788
   679
            return ret;
renatofilho@788
   680
        }
renatofilho@788
   681
        g_free (caps_str);
renatofilho@788
   682
    }
renatofilho@787
   683
renatofilho@787
   684
    comp = find_compatibles (GST_PLAY_BIN_MAEMO (user_data), caps);
renatofilho@787
   685
    if (comp != NULL) {
renatofilho@787
   686
        g_list_free (comp);
renatofilho@787
   687
        ret = FALSE;
renatofilho@787
   688
    }
renatofilho@787
   689
renatofilho@787
   690
    return ret;
renatofilho@787
   691
}
renatofilho@787
   692
renatofilho@787
   693
static void
renatofilho@787
   694
unknown_type_cb (GstElement *object,
renatofilho@787
   695
                 GstPad *pad,
renatofilho@787
   696
                 GstCaps *caps,
renatofilho@787
   697
                 gpointer user_data)
renatofilho@787
   698
{
renatofilho@787
   699
    g_debug ("unknown_type_cb: %s", gst_caps_to_string (caps));
renatofilho@787
   700
}
renatofilho@787
   701
renatofilho@787
   702
static GstPad *
renatofilho@787
   703
find_sink_pad (GstElement * element)
renatofilho@787
   704
{
renatofilho@787
   705
  GstIterator *it;
renatofilho@787
   706
  GstPad *pad = NULL;
renatofilho@787
   707
  gpointer point;
renatofilho@787
   708
renatofilho@787
   709
  it = gst_element_iterate_sink_pads (element);
renatofilho@787
   710
renatofilho@787
   711
  if ((gst_iterator_next (it, &point)) == GST_ITERATOR_OK)
renatofilho@787
   712
    pad = (GstPad *) point;
renatofilho@787
   713
renatofilho@787
   714
  gst_iterator_free (it);
renatofilho@787
   715
renatofilho@787
   716
  return pad;
renatofilho@787
   717
}
renatofilho@787
   718
renatofilho@788
   719
static GstElement*
renatofilho@788
   720
create_element (GstPlayBinMaemo *pbm, GstElementFactory *factory)
renatofilho@788
   721
{
renatofilho@788
   722
    GstElement *ret = NULL;
renatofilho@788
   723
    GstElement *element;
renatofilho@788
   724
renatofilho@788
   725
    element = gst_element_factory_create (factory, NULL);
renatofilho@788
   726
    if (element == NULL)
renatofilho@788
   727
        return NULL;
renatofilho@788
   728
renatofilho@788
   729
    if (strstr (gst_element_factory_get_klass (factory), "Sink/Video") != NULL) {
renatofilho@788
   730
        update_xid (pbm);
renatofilho@788
   731
        pbm->sink_video = element;
renatofilho@788
   732
        ret = element;
renatofilho@788
   733
    } else if (strstr (gst_element_factory_get_klass (factory), "Sink/Audio") != NULL) {
renatofilho@788
   734
        GParamSpec *vol_spec;
renatofilho@788
   735
renatofilho@788
   736
        vol_spec = g_object_class_find_property (G_OBJECT_GET_CLASS (element), "volume");
renatofilho@788
   737
        if (vol_spec == NULL) {
renatofilho@788
   738
            GstElement *bin;
renatofilho@788
   739
            GstElement *volume;
renatofilho@788
   740
renatofilho@788
   741
            bin = gst_bin_new (NULL);
renatofilho@788
   742
            volume = gst_element_factory_make ("volume", "volume");
renatofilho@788
   743
            gst_bin_add (GST_BIN (bin), volume);
renatofilho@788
   744
            gst_bin_add (GST_BIN (bin), element);
renatofilho@788
   745
            if (gst_element_link (volume, element) == FALSE) {
renatofilho@788
   746
                GST_WARNING_OBJECT (pbm, "Fail to link volume and sink audio: %s", GST_ELEMENT_NAME (element));
renatofilho@788
   747
                gst_element_set_state (bin, GST_STATE_NULL);
renatofilho@788
   748
                gst_object_unref (bin);
renatofilho@788
   749
                return NULL;
renatofilho@788
   750
            }
renatofilho@788
   751
            pbm->volume_element = volume;
renatofilho@788
   752
            ret = bin;
renatofilho@788
   753
        } else {
renatofilho@788
   754
            ret = element;
renatofilho@788
   755
            pbm->volume_element = element;
renatofilho@788
   756
            g_param_spec_unref (vol_spec);
renatofilho@788
   757
        }
renatofilho@788
   758
renatofilho@788
   759
        update_volume (pbm);
renatofilho@788
   760
    }
renatofilho@788
   761
renatofilho@788
   762
    return ret;
renatofilho@788
   763
}
renatofilho@788
   764
renatofilho@787
   765
static void
renatofilho@787
   766
new_decoded_pad_cb (GstElement *object,
renatofilho@787
   767
                    GstPad* pad,
renatofilho@787
   768
                    gboolean arg,
renatofilho@787
   769
                    gpointer user_data)
renatofilho@787
   770
{
renatofilho@787
   771
    GList *comp = NULL;
renatofilho@787
   772
    GList *walk;
renatofilho@787
   773
    GstCaps *caps;
renatofilho@787
   774
    gboolean linked;
renatofilho@787
   775
    GstPlayBinMaemo *pbm;
renatofilho@787
   776
renatofilho@787
   777
    pbm = GST_PLAY_BIN_MAEMO (user_data);
renatofilho@787
   778
    caps = gst_pad_get_caps (pad);
renatofilho@787
   779
renatofilho@787
   780
    g_debug ("new_decoded_pad_cb: %s", gst_caps_to_string (caps));
renatofilho@787
   781
renatofilho@787
   782
    comp = find_compatibles (GST_PLAY_BIN_MAEMO (user_data), caps);
renatofilho@787
   783
renatofilho@787
   784
renatofilho@787
   785
    if (comp == NULL) {
renatofilho@787
   786
        g_warning ("flow error: dont find comaptible");
renatofilho@787
   787
        return;
renatofilho@787
   788
    }
renatofilho@787
   789
renatofilho@787
   790
    GST_PAD_STREAM_LOCK (pad);
renatofilho@787
   791
renatofilho@787
   792
    linked = FALSE;
renatofilho@787
   793
    for (walk=comp; walk != NULL; walk = walk->next) {
renatofilho@787
   794
        GstElementFactory *factory = (GstElementFactory *) walk->data;
renatofilho@787
   795
        GstElement *element;
renatofilho@787
   796
        GstPad *sinkpad;
renatofilho@787
   797
renatofilho@788
   798
        if ((element = create_element (pbm, factory)) == NULL) {
renatofilho@787
   799
            GST_WARNING_OBJECT (pbm, "Could not create an element from %s",
renatofilho@787
   800
                gst_plugin_feature_get_name (GST_PLUGIN_FEATURE (factory)));
renatofilho@787
   801
            continue;
renatofilho@787
   802
        }
renatofilho@787
   803
renatofilho@787
   804
        if (!(gst_bin_add (GST_BIN (user_data), element))) {
renatofilho@788
   805
            GST_WARNING_OBJECT (pbm, "Couldn't set %s to READY", GST_ELEMENT_NAME (element));
renatofilho@787
   806
            gst_object_unref (element);
renatofilho@787
   807
            continue;
renatofilho@787
   808
        }
renatofilho@787
   809
renatofilho@787
   810
        if ((gst_element_set_state (element, GST_STATE_READY))
renatofilho@787
   811
                         == GST_STATE_CHANGE_FAILURE) {
renatofilho@787
   812
            gst_element_set_state (element, GST_STATE_NULL);
renatofilho@787
   813
            gst_object_unref (sinkpad);
renatofilho@787
   814
            gst_bin_remove (GST_BIN (user_data), element);
renatofilho@787
   815
            continue;
renatofilho@787
   816
        }
renatofilho@787
   817
renatofilho@787
   818
        if (!(sinkpad = find_sink_pad (element))) {
renatofilho@787
   819
            GST_WARNING_OBJECT (pbm, "Element %s doesn't have a sink pad", GST_ELEMENT_NAME (element));
renatofilho@787
   820
            gst_object_unref (element);
renatofilho@787
   821
            continue;
renatofilho@787
   822
        }
renatofilho@787
   823
renatofilho@787
   824
renatofilho@787
   825
        if ((gst_pad_link (pad, sinkpad)) != GST_PAD_LINK_OK) {
renatofilho@788
   826
            GST_WARNING_OBJECT (pbm, "Link failed on pad %s:%s", GST_DEBUG_PAD_NAME (sinkpad));
renatofilho@787
   827
            gst_element_set_state (element, GST_STATE_NULL);
renatofilho@787
   828
            gst_object_unref (sinkpad);
renatofilho@787
   829
            gst_bin_remove (GST_BIN (user_data), element);
renatofilho@787
   830
            continue;
renatofilho@787
   831
        }
renatofilho@787
   832
renatofilho@787
   833
        gst_object_unref (sinkpad);
renatofilho@787
   834
renatofilho@787
   835
        if ((gst_element_set_state (element, GST_STATE_PAUSED)) == GST_STATE_CHANGE_FAILURE) {
renatofilho@787
   836
            gst_element_set_state (element, GST_STATE_NULL);
renatofilho@787
   837
            gst_bin_remove (GST_BIN (user_data), element);
renatofilho@787
   838
            continue;
renatofilho@787
   839
        }
renatofilho@787
   840
renatofilho@787
   841
renatofilho@787
   842
        pbm->sinks = g_slist_append (pbm->sinks, element);
renatofilho@787
   843
        linked = TRUE;
renatofilho@787
   844
        break;
renatofilho@787
   845
    }
renatofilho@787
   846
renatofilho@787
   847
    g_list_free (comp);
renatofilho@787
   848
    if (linked == FALSE) {
renatofilho@787
   849
        g_warning ("GstFlow ERROR");
renatofilho@787
   850
    }
renatofilho@787
   851
    GST_PAD_STREAM_UNLOCK (pad);
renatofilho@787
   852
}
renatofilho@787
   853
renatofilho@787
   854
static void
renatofilho@787
   855
update_volume (GstPlayBinMaemo *pbm)
renatofilho@787
   856
{
renatofilho@787
   857
    if (pbm->volume_element != NULL) {
renatofilho@787
   858
        if (pbm->volume > 0) {
renatofilho@787
   859
            g_object_set (G_OBJECT (pbm->volume_element),
renatofilho@787
   860
                          "volume", pbm->volume,
renatofilho@787
   861
                          NULL);
renatofilho@787
   862
        } else {
renatofilho@787
   863
            g_object_set (G_OBJECT (pbm->volume_element),
renatofilho@787
   864
                          "mute", TRUE,
renatofilho@787
   865
                          NULL);
renatofilho@787
   866
        }
renatofilho@787
   867
    }
renatofilho@787
   868
}
renatofilho@787
   869
renatofilho@787
   870
static void
renatofilho@787
   871
update_xid (GstPlayBinMaemo *pbm)
renatofilho@787
   872
{
renatofilho@787
   873
    if ((pbm->sink_video != NULL) &&
renatofilho@787
   874
        (pbm->xid != -1) &&
renatofilho@787
   875
        (GST_IS_X_OVERLAY (pbm->sink_video))) {
renatofilho@788
   876
renatofilho@787
   877
        g_object_set (G_OBJECT (pbm->sink_video),
renatofilho@787
   878
                      "force-aspect-ratio", TRUE, NULL);
renatofilho@787
   879
        gst_x_overlay_set_xwindow_id (GST_X_OVERLAY (pbm->sink_video),
renatofilho@787
   880
                                      pbm->xid);
renatofilho@787
   881
    }
renatofilho@787
   882
}
renatofilho@787
   883
renatofilho@787
   884
static gboolean
renatofilho@787
   885
plugin_init(GstPlugin * plugin)
renatofilho@787
   886
{
renatofilho@787
   887
#ifdef ENABLE_NLS
renatofilho@787
   888
    setlocale(LC_ALL, "");
renatofilho@787
   889
    bindtextdomain(GETTEXT_PACKAGE, LOCALEDIR);
renatofilho@787
   890
#endif                          /* ENABLE_NLS */
renatofilho@787
   891
renatofilho@787
   892
    if (!gst_element_register(plugin, "playbinmaemo", GST_RANK_SECONDARY,
renatofilho@787
   893
                              GST_TYPE_PLAY_BIN_MAEMO)) {
renatofilho@787
   894
        return FALSE;
renatofilho@787
   895
    }
renatofilho@787
   896
renatofilho@787
   897
    return TRUE;
renatofilho@787
   898
}
renatofilho@787
   899
renatofilho@787
   900
GST_PLUGIN_DEFINE(GST_VERSION_MAJOR,
renatofilho@787
   901
                  GST_VERSION_MINOR,
renatofilho@787
   902
                  "playbinmaemo",
renatofilho@787
   903
                  "Demuxes and muxes audio and video",
renatofilho@787
   904
                  plugin_init, VERSION, GST_LICENSE, GST_PACKAGE_NAME,
renatofilho@787
   905
                  GST_PACKAGE_ORIGIN)