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