2009-10-13 14:48:34 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2009 Sebastian Dröge <sebastian.droege@collabora.co.uk>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* SECTION:element-subtitleoverlay
|
|
|
|
*
|
|
|
|
* #GstBin that auto-magically overlays a video stream with subtitles by
|
|
|
|
* autoplugging the required elements.
|
|
|
|
*
|
|
|
|
* It supports raw, timestamped text, different textual subtitle formats and
|
|
|
|
* DVD subpicture subtitles.
|
|
|
|
*
|
|
|
|
* <refsect2>
|
|
|
|
* <title>Examples</title>
|
|
|
|
* |[
|
2011-06-15 16:08:32 +00:00
|
|
|
* gst-launch -v filesrc location=test.mkv ! matroskademux name=demux ! "video/x-h264" ! queue2 ! decodebin ! subtitleoverlay name=overlay ! videoconvert ! autovideosink demux. ! "video/x-dvd-subpicture" ! queue2 ! overlay.
|
2009-10-13 14:48:34 +00:00
|
|
|
* ]| This will play back the given Matroska file with h264 video and subpicture subtitles.
|
|
|
|
* </refsect2>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "gstsubtitleoverlay.h"
|
|
|
|
|
|
|
|
#include <gst/gstfilter.h>
|
|
|
|
#include <gst/pbutils/missing-plugins.h>
|
|
|
|
#include <gst/video/video.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
GST_DEBUG_CATEGORY_STATIC (subtitle_overlay_debug);
|
|
|
|
#define GST_CAT_DEFAULT subtitle_overlay_debug
|
|
|
|
|
2009-11-14 12:21:15 +00:00
|
|
|
#define IS_SUBTITLE_CHAIN_IGNORE_ERROR(flow) \
|
|
|
|
G_UNLIKELY (flow == GST_FLOW_ERROR || flow == GST_FLOW_NOT_NEGOTIATED)
|
|
|
|
|
|
|
|
#define IS_VIDEO_CHAIN_IGNORE_ERROR(flow) \
|
|
|
|
G_UNLIKELY (flow == GST_FLOW_ERROR)
|
|
|
|
|
2009-10-13 14:48:34 +00:00
|
|
|
static GstStaticPadTemplate srctemplate = GST_STATIC_PAD_TEMPLATE ("src",
|
|
|
|
GST_PAD_SRC,
|
|
|
|
GST_PAD_ALWAYS,
|
2010-01-25 17:57:52 +00:00
|
|
|
GST_STATIC_CAPS_ANY);
|
2009-10-13 14:48:34 +00:00
|
|
|
|
|
|
|
static GstStaticPadTemplate video_sinktemplate =
|
2010-01-25 17:57:52 +00:00
|
|
|
GST_STATIC_PAD_TEMPLATE ("video_sink",
|
2009-10-13 14:48:34 +00:00
|
|
|
GST_PAD_SINK,
|
|
|
|
GST_PAD_ALWAYS,
|
2010-01-25 17:57:52 +00:00
|
|
|
GST_STATIC_CAPS_ANY);
|
2009-10-13 14:48:34 +00:00
|
|
|
|
|
|
|
static GstStaticPadTemplate subtitle_sinktemplate =
|
|
|
|
GST_STATIC_PAD_TEMPLATE ("subtitle_sink",
|
|
|
|
GST_PAD_SINK,
|
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
GST_STATIC_CAPS_ANY);
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
2009-11-07 20:09:53 +00:00
|
|
|
PROP_SILENT,
|
2010-02-21 18:52:45 +00:00
|
|
|
PROP_FONT_DESC,
|
|
|
|
PROP_SUBTITLE_ENCODING
|
2009-10-13 14:48:34 +00:00
|
|
|
};
|
|
|
|
|
2011-04-19 09:35:53 +00:00
|
|
|
#define gst_subtitle_overlay_parent_class parent_class
|
|
|
|
G_DEFINE_TYPE (GstSubtitleOverlay, gst_subtitle_overlay, GST_TYPE_BIN);
|
2009-10-13 14:48:34 +00:00
|
|
|
|
|
|
|
static GQuark _subtitle_overlay_event_marker_id = 0;
|
|
|
|
|
|
|
|
static void
|
|
|
|
do_async_start (GstSubtitleOverlay * self)
|
|
|
|
{
|
|
|
|
if (!self->do_async) {
|
2011-06-08 11:43:28 +00:00
|
|
|
GstMessage *msg = gst_message_new_async_start (GST_OBJECT_CAST (self));
|
2009-10-13 14:48:34 +00:00
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (self, "Posting async-start");
|
2011-04-19 09:35:53 +00:00
|
|
|
GST_BIN_CLASS (parent_class)->handle_message (GST_BIN_CAST (self), msg);
|
2009-10-13 14:48:34 +00:00
|
|
|
self->do_async = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
do_async_done (GstSubtitleOverlay * self)
|
|
|
|
{
|
|
|
|
if (self->do_async) {
|
2011-06-08 11:43:28 +00:00
|
|
|
GstMessage *msg =
|
|
|
|
gst_message_new_async_done (GST_OBJECT_CAST (self), FALSE);
|
2009-10-13 14:48:34 +00:00
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (self, "Posting async-done");
|
2011-04-19 09:35:53 +00:00
|
|
|
GST_BIN_CLASS (parent_class)->handle_message (GST_BIN_CAST (self), msg);
|
2009-10-13 14:48:34 +00:00
|
|
|
self->do_async = FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-06-01 17:34:54 +00:00
|
|
|
static GstProbeReturn
|
|
|
|
_pad_blocked_cb (GstPad * pad, GstProbeType type, gpointer type_data,
|
|
|
|
gpointer user_data);
|
|
|
|
|
|
|
|
static void
|
|
|
|
block_video (GstSubtitleOverlay * self)
|
|
|
|
{
|
|
|
|
if (self->video_block_id != 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (self->video_block_pad) {
|
|
|
|
self->video_block_id =
|
|
|
|
gst_pad_add_probe (self->video_block_pad, GST_PROBE_TYPE_BLOCK,
|
|
|
|
_pad_blocked_cb, gst_object_ref (self),
|
|
|
|
(GDestroyNotify) gst_object_unref);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
unblock_video (GstSubtitleOverlay * self)
|
|
|
|
{
|
|
|
|
if (self->video_block_id) {
|
|
|
|
gst_pad_remove_probe (self->video_block_pad, self->video_block_id);
|
|
|
|
self->video_sink_blocked = FALSE;
|
|
|
|
self->video_block_id = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
block_subtitle (GstSubtitleOverlay * self)
|
|
|
|
{
|
|
|
|
if (self->subtitle_block_id != 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (self->subtitle_block_pad) {
|
|
|
|
self->subtitle_block_id =
|
|
|
|
gst_pad_add_probe (self->subtitle_block_pad, GST_PROBE_TYPE_BLOCK,
|
|
|
|
_pad_blocked_cb, gst_object_ref (self),
|
|
|
|
(GDestroyNotify) gst_object_unref);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
unblock_subtitle (GstSubtitleOverlay * self)
|
|
|
|
{
|
|
|
|
if (self->subtitle_block_id) {
|
|
|
|
gst_pad_remove_probe (self->subtitle_block_pad, self->subtitle_block_id);
|
|
|
|
self->subtitle_sink_blocked = FALSE;
|
|
|
|
self->subtitle_block_id = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-13 14:48:34 +00:00
|
|
|
static void
|
|
|
|
gst_subtitle_overlay_finalize (GObject * object)
|
|
|
|
{
|
|
|
|
GstSubtitleOverlay *self = GST_SUBTITLE_OVERLAY (object);
|
|
|
|
|
|
|
|
if (self->lock) {
|
|
|
|
g_mutex_free (self->lock);
|
|
|
|
self->lock = NULL;
|
|
|
|
}
|
|
|
|
|
2009-11-10 17:27:15 +00:00
|
|
|
if (self->factories_lock) {
|
|
|
|
g_mutex_free (self->factories_lock);
|
|
|
|
self->factories_lock = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (self->factories)
|
|
|
|
gst_plugin_feature_list_free (self->factories);
|
|
|
|
self->factories = NULL;
|
|
|
|
gst_caps_replace (&self->factory_caps, NULL);
|
|
|
|
|
2009-10-13 14:48:34 +00:00
|
|
|
if (self->font_desc) {
|
|
|
|
g_free (self->font_desc);
|
|
|
|
self->font_desc = NULL;
|
|
|
|
}
|
|
|
|
|
2010-02-21 18:52:45 +00:00
|
|
|
if (self->encoding) {
|
|
|
|
g_free (self->encoding);
|
|
|
|
self->encoding = NULL;
|
|
|
|
}
|
|
|
|
|
2009-10-13 14:48:34 +00:00
|
|
|
G_OBJECT_CLASS (parent_class)->finalize (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
_is_renderer (GstElementFactory * factory)
|
|
|
|
{
|
|
|
|
const gchar *klass, *name;
|
|
|
|
|
|
|
|
klass = gst_element_factory_get_klass (factory);
|
|
|
|
name = gst_plugin_feature_get_name (GST_PLUGIN_FEATURE_CAST (factory));
|
|
|
|
|
|
|
|
if (strstr (klass, "Overlay/Subtitle") != NULL ||
|
|
|
|
strstr (klass, "Overlay/SubPicture") != NULL)
|
|
|
|
return TRUE;
|
|
|
|
if (strcmp (name, "textoverlay") == 0)
|
|
|
|
return TRUE;
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
_is_parser (GstElementFactory * factory)
|
|
|
|
{
|
|
|
|
const gchar *klass;
|
|
|
|
|
|
|
|
klass = gst_element_factory_get_klass (factory);
|
|
|
|
|
|
|
|
if (strstr (klass, "Parser/Subtitle") != NULL)
|
|
|
|
return TRUE;
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const gchar *_sub_pad_names[] = { "subpicture", "subpicture_sink",
|
|
|
|
"text", "text_sink",
|
|
|
|
"subtitle_sink", "subtitle"
|
|
|
|
};
|
|
|
|
|
|
|
|
static GstCaps *
|
|
|
|
_get_sub_caps (GstElementFactory * factory)
|
|
|
|
{
|
|
|
|
const GList *templates;
|
|
|
|
GList *walk;
|
|
|
|
gboolean is_parser = _is_parser (factory);
|
|
|
|
|
|
|
|
templates = gst_element_factory_get_static_pad_templates (factory);
|
|
|
|
for (walk = (GList *) templates; walk; walk = g_list_next (walk)) {
|
|
|
|
GstStaticPadTemplate *templ = walk->data;
|
|
|
|
|
|
|
|
if (templ->direction == GST_PAD_SINK && templ->presence == GST_PAD_ALWAYS) {
|
|
|
|
gboolean found = FALSE;
|
|
|
|
|
|
|
|
if (is_parser) {
|
|
|
|
found = TRUE;
|
|
|
|
} else {
|
|
|
|
guint i;
|
|
|
|
|
|
|
|
for (i = 0; i < G_N_ELEMENTS (_sub_pad_names); i++) {
|
|
|
|
if (strcmp (templ->name_template, _sub_pad_names[i]) == 0) {
|
|
|
|
found = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (found)
|
|
|
|
return gst_static_caps_get (&templ->static_caps);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
_factory_filter (GstPluginFeature * feature, GstCaps ** subcaps)
|
|
|
|
{
|
|
|
|
GstElementFactory *factory;
|
|
|
|
guint rank;
|
|
|
|
const gchar *name;
|
|
|
|
const GList *templates;
|
|
|
|
GList *walk;
|
|
|
|
gboolean is_renderer;
|
|
|
|
GstCaps *templ_caps = NULL;
|
|
|
|
gboolean have_video_sink = FALSE;
|
|
|
|
|
|
|
|
/* we only care about element factories */
|
|
|
|
if (!GST_IS_ELEMENT_FACTORY (feature))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
factory = GST_ELEMENT_FACTORY_CAST (feature);
|
|
|
|
|
|
|
|
/* only select elements with autoplugging rank or textoverlay */
|
|
|
|
name = gst_plugin_feature_get_name (feature);
|
|
|
|
rank = gst_plugin_feature_get_rank (feature);
|
|
|
|
if (strcmp ("textoverlay", name) != 0 && rank < GST_RANK_MARGINAL)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
/* Check if it's a renderer or a parser */
|
|
|
|
if (_is_renderer (factory)) {
|
|
|
|
is_renderer = TRUE;
|
|
|
|
} else if (_is_parser (factory)) {
|
|
|
|
is_renderer = FALSE;
|
|
|
|
} else {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check if there's a video sink in case of a renderer */
|
|
|
|
if (is_renderer) {
|
|
|
|
templates = gst_element_factory_get_static_pad_templates (factory);
|
|
|
|
for (walk = (GList *) templates; walk; walk = g_list_next (walk)) {
|
|
|
|
GstStaticPadTemplate *templ = walk->data;
|
|
|
|
|
|
|
|
/* we only care about the always-sink templates */
|
|
|
|
if (templ->direction == GST_PAD_SINK && templ->presence == GST_PAD_ALWAYS) {
|
|
|
|
if (strcmp (templ->name_template, "video") == 0 ||
|
|
|
|
strcmp (templ->name_template, "video_sink") == 0) {
|
|
|
|
have_video_sink = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
templ_caps = _get_sub_caps (factory);
|
|
|
|
|
|
|
|
if (is_renderer && have_video_sink && templ_caps) {
|
|
|
|
GstCaps *tmp;
|
|
|
|
|
|
|
|
GST_DEBUG ("Found renderer element %s (%s) with caps %" GST_PTR_FORMAT,
|
|
|
|
gst_element_factory_get_longname (factory),
|
|
|
|
gst_plugin_feature_get_name (feature), templ_caps);
|
|
|
|
tmp = gst_caps_union (*subcaps, templ_caps);
|
|
|
|
gst_caps_unref (templ_caps);
|
|
|
|
gst_caps_replace (subcaps, tmp);
|
|
|
|
gst_caps_unref (tmp);
|
|
|
|
return TRUE;
|
|
|
|
} else if (!is_renderer && !have_video_sink && templ_caps) {
|
|
|
|
GstCaps *tmp;
|
|
|
|
|
|
|
|
GST_DEBUG ("Found parser element %s (%s) with caps %" GST_PTR_FORMAT,
|
|
|
|
gst_element_factory_get_longname (factory),
|
|
|
|
gst_plugin_feature_get_name (feature), templ_caps);
|
|
|
|
tmp = gst_caps_union (*subcaps, templ_caps);
|
|
|
|
gst_caps_unref (templ_caps);
|
|
|
|
gst_caps_replace (subcaps, tmp);
|
|
|
|
gst_caps_unref (tmp);
|
|
|
|
return TRUE;
|
|
|
|
} else {
|
|
|
|
if (templ_caps)
|
|
|
|
gst_caps_unref (templ_caps);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-11-10 17:27:15 +00:00
|
|
|
/* Call with factories_lock! */
|
2009-10-13 14:48:34 +00:00
|
|
|
static gboolean
|
2009-11-10 17:27:15 +00:00
|
|
|
gst_subtitle_overlay_update_factory_list (GstSubtitleOverlay * self)
|
2009-10-13 14:48:34 +00:00
|
|
|
{
|
2009-11-10 17:27:15 +00:00
|
|
|
if (!self->factories
|
|
|
|
|| self->factories_cookie !=
|
|
|
|
gst_default_registry_get_feature_list_cookie ()) {
|
2009-10-13 14:48:34 +00:00
|
|
|
GstCaps *subcaps;
|
|
|
|
GList *factories;
|
|
|
|
|
|
|
|
subcaps = gst_caps_new_empty ();
|
|
|
|
|
|
|
|
factories = gst_default_registry_feature_filter (
|
|
|
|
(GstPluginFeatureFilter) _factory_filter, FALSE, &subcaps);
|
|
|
|
GST_DEBUG_OBJECT (self, "Created factory caps: %" GST_PTR_FORMAT, subcaps);
|
|
|
|
gst_caps_replace (&self->factory_caps, subcaps);
|
|
|
|
gst_caps_unref (subcaps);
|
2009-11-10 17:27:15 +00:00
|
|
|
if (self->factories)
|
|
|
|
gst_plugin_feature_list_free (self->factories);
|
|
|
|
self->factories = factories;
|
|
|
|
self->factories_cookie = gst_default_registry_get_feature_list_cookie ();
|
2009-10-13 14:48:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return (self->factories != NULL);
|
|
|
|
}
|
|
|
|
|
2009-11-11 16:08:47 +00:00
|
|
|
G_LOCK_DEFINE_STATIC (_factory_caps);
|
|
|
|
static GstCaps *_factory_caps = NULL;
|
|
|
|
static guint32 _factory_caps_cookie = 0;
|
|
|
|
|
2009-10-13 14:48:34 +00:00
|
|
|
GstCaps *
|
|
|
|
gst_subtitle_overlay_create_factory_caps (void)
|
|
|
|
{
|
|
|
|
GList *factories;
|
2009-11-11 16:08:47 +00:00
|
|
|
GstCaps *subcaps = NULL;
|
2009-10-13 14:48:34 +00:00
|
|
|
|
2009-11-11 16:08:47 +00:00
|
|
|
G_LOCK (_factory_caps);
|
|
|
|
if (!_factory_caps
|
|
|
|
|| _factory_caps_cookie !=
|
|
|
|
gst_default_registry_get_feature_list_cookie ()) {
|
|
|
|
if (_factory_caps)
|
|
|
|
gst_caps_unref (_factory_caps);
|
|
|
|
_factory_caps = gst_caps_new_empty ();
|
2009-10-13 14:48:34 +00:00
|
|
|
|
2009-11-11 16:08:47 +00:00
|
|
|
factories = gst_default_registry_feature_filter (
|
|
|
|
(GstPluginFeatureFilter) _factory_filter, FALSE, &_factory_caps);
|
|
|
|
GST_DEBUG ("Created factory caps: %" GST_PTR_FORMAT, _factory_caps);
|
|
|
|
gst_plugin_feature_list_free (factories);
|
|
|
|
_factory_caps_cookie = gst_default_registry_get_feature_list_cookie ();
|
|
|
|
}
|
|
|
|
subcaps = gst_caps_ref (_factory_caps);
|
|
|
|
G_UNLOCK (_factory_caps);
|
2009-10-13 14:48:34 +00:00
|
|
|
|
|
|
|
return subcaps;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
_filter_factories_for_caps (GstElementFactory * factory, const GstCaps * caps)
|
|
|
|
{
|
|
|
|
GstCaps *fcaps = _get_sub_caps (factory);
|
|
|
|
gboolean ret = (fcaps) ? gst_caps_can_intersect (fcaps, caps) : FALSE;
|
|
|
|
|
|
|
|
if (fcaps)
|
|
|
|
gst_caps_unref (fcaps);
|
2009-11-10 17:27:15 +00:00
|
|
|
|
|
|
|
if (ret)
|
|
|
|
gst_object_ref (factory);
|
2009-10-13 14:48:34 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gint
|
|
|
|
_sort_by_ranks (GstPluginFeature * f1, GstPluginFeature * f2)
|
|
|
|
{
|
|
|
|
gint diff;
|
|
|
|
const gchar *rname1, *rname2;
|
|
|
|
|
|
|
|
diff = gst_plugin_feature_get_rank (f2) - gst_plugin_feature_get_rank (f1);
|
|
|
|
if (diff != 0)
|
|
|
|
return diff;
|
|
|
|
|
|
|
|
/* If the ranks are the same sort by name to get deterministic results */
|
|
|
|
rname1 = gst_plugin_feature_get_name (f1);
|
|
|
|
rname2 = gst_plugin_feature_get_name (f2);
|
|
|
|
|
|
|
|
diff = strcmp (rname1, rname2);
|
|
|
|
|
|
|
|
return diff;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstPad *
|
|
|
|
_get_sub_pad (GstElement * element)
|
|
|
|
{
|
|
|
|
GstPad *pad;
|
|
|
|
guint i;
|
|
|
|
|
|
|
|
for (i = 0; i < G_N_ELEMENTS (_sub_pad_names); i++) {
|
|
|
|
pad = gst_element_get_static_pad (element, _sub_pad_names[i]);
|
|
|
|
if (pad)
|
|
|
|
return pad;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstPad *
|
|
|
|
_get_video_pad (GstElement * element)
|
|
|
|
{
|
|
|
|
static const gchar *pad_names[] = { "video", "video_sink" };
|
|
|
|
GstPad *pad;
|
|
|
|
guint i;
|
|
|
|
|
|
|
|
for (i = 0; i < G_N_ELEMENTS (pad_names); i++) {
|
|
|
|
pad = gst_element_get_static_pad (element, pad_names[i]);
|
|
|
|
if (pad)
|
|
|
|
return pad;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
_create_element (GstSubtitleOverlay * self, GstElement ** element,
|
|
|
|
const gchar * factory_name, GstElementFactory * factory,
|
|
|
|
const gchar * element_name, gboolean mandatory)
|
|
|
|
{
|
|
|
|
GstElement *elt;
|
|
|
|
|
|
|
|
g_assert (!factory || !factory_name);
|
|
|
|
|
|
|
|
if (factory_name) {
|
|
|
|
elt = gst_element_factory_make (factory_name, element_name);
|
|
|
|
} else {
|
|
|
|
factory_name =
|
|
|
|
gst_plugin_feature_get_name (GST_PLUGIN_FEATURE_CAST (factory));
|
|
|
|
elt = gst_element_factory_create (factory, element_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (G_UNLIKELY (!elt)) {
|
|
|
|
if (!factory) {
|
|
|
|
GstMessage *msg;
|
|
|
|
|
|
|
|
msg =
|
|
|
|
gst_missing_element_message_new (GST_ELEMENT_CAST (self),
|
|
|
|
factory_name);
|
|
|
|
gst_element_post_message (GST_ELEMENT_CAST (self), msg);
|
|
|
|
|
|
|
|
if (mandatory)
|
|
|
|
GST_ELEMENT_ERROR (self, CORE, MISSING_PLUGIN, (NULL),
|
|
|
|
("no '%s' plugin found", factory_name));
|
|
|
|
else
|
|
|
|
GST_ELEMENT_WARNING (self, CORE, MISSING_PLUGIN, (NULL),
|
|
|
|
("no '%s' plugin found", factory_name));
|
|
|
|
} else {
|
|
|
|
if (mandatory) {
|
|
|
|
GST_ELEMENT_ERROR (self, CORE, FAILED, (NULL),
|
|
|
|
("can't instantiate '%s'", factory_name));
|
|
|
|
} else {
|
|
|
|
GST_ELEMENT_WARNING (self, CORE, FAILED, (NULL),
|
|
|
|
("can't instantiate '%s'", factory_name));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (G_UNLIKELY (gst_element_set_state (elt,
|
|
|
|
GST_STATE_READY) != GST_STATE_CHANGE_SUCCESS)) {
|
|
|
|
gst_object_unref (elt);
|
|
|
|
if (mandatory) {
|
|
|
|
GST_ELEMENT_ERROR (self, CORE, STATE_CHANGE, (NULL),
|
|
|
|
("failed to set '%s' to READY", factory_name));
|
|
|
|
} else {
|
|
|
|
GST_WARNING_OBJECT (self, "Failed to set '%s' to READY", factory_name);
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (G_UNLIKELY (!gst_bin_add (GST_BIN_CAST (self), gst_object_ref (elt)))) {
|
|
|
|
gst_element_set_state (elt, GST_STATE_NULL);
|
|
|
|
gst_object_unref (elt);
|
|
|
|
if (mandatory) {
|
|
|
|
GST_ELEMENT_ERROR (self, CORE, FAILED, (NULL),
|
|
|
|
("failed to add '%s' to subtitleoverlay", factory_name));
|
|
|
|
} else {
|
|
|
|
GST_WARNING_OBJECT (self, "Failed to add '%s' to subtitleoverlay",
|
|
|
|
factory_name);
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
gst_element_sync_state_with_parent (elt);
|
|
|
|
*element = elt;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_remove_element (GstSubtitleOverlay * self, GstElement ** element)
|
|
|
|
{
|
|
|
|
if (*element) {
|
|
|
|
gst_bin_remove (GST_BIN_CAST (self), *element);
|
|
|
|
gst_element_set_state (*element, GST_STATE_NULL);
|
|
|
|
gst_object_unref (*element);
|
|
|
|
*element = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-05-16 11:48:11 +00:00
|
|
|
_generate_update_segment_event (GstSegment * segment, GstEvent ** event1)
|
2009-10-13 14:48:34 +00:00
|
|
|
{
|
|
|
|
GstEvent *event;
|
2011-05-10 09:54:30 +00:00
|
|
|
GstStructure *structure;
|
2009-10-13 14:48:34 +00:00
|
|
|
|
2011-05-16 11:48:11 +00:00
|
|
|
event = gst_event_new_segment (segment);
|
|
|
|
structure = gst_event_writable_structure (event);
|
2011-05-10 09:54:30 +00:00
|
|
|
gst_structure_id_set (structure, _subtitle_overlay_event_marker_id,
|
2009-10-13 14:48:34 +00:00
|
|
|
G_TYPE_BOOLEAN, TRUE, NULL);
|
|
|
|
*event1 = event;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
_setup_passthrough (GstSubtitleOverlay * self)
|
|
|
|
{
|
|
|
|
GstPad *src, *sink;
|
|
|
|
GstElement *identity;
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (self, "Doing video passthrough");
|
|
|
|
|
|
|
|
if (self->passthrough_identity) {
|
|
|
|
GST_DEBUG_OBJECT (self, "Already in passthrough mode");
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Unlink & destroy everything */
|
|
|
|
gst_ghost_pad_set_target (GST_GHOST_PAD_CAST (self->srcpad), NULL);
|
|
|
|
gst_ghost_pad_set_target (GST_GHOST_PAD_CAST (self->video_sinkpad), NULL);
|
|
|
|
gst_ghost_pad_set_target (GST_GHOST_PAD_CAST (self->subtitle_sinkpad), NULL);
|
2009-11-07 20:09:53 +00:00
|
|
|
self->silent_property = NULL;
|
2009-10-13 14:48:34 +00:00
|
|
|
_remove_element (self, &self->post_colorspace);
|
|
|
|
_remove_element (self, &self->overlay);
|
|
|
|
_remove_element (self, &self->parser);
|
|
|
|
_remove_element (self, &self->renderer);
|
|
|
|
_remove_element (self, &self->pre_colorspace);
|
|
|
|
_remove_element (self, &self->passthrough_identity);
|
|
|
|
|
|
|
|
if (G_UNLIKELY (!_create_element (self, &self->passthrough_identity,
|
|
|
|
"identity", NULL, "passthrough-identity", TRUE))) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
identity = self->passthrough_identity;
|
|
|
|
g_object_set (G_OBJECT (identity), "silent", TRUE, "signal-handoffs", FALSE,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
/* Set src ghostpad target */
|
|
|
|
src = gst_element_get_static_pad (self->passthrough_identity, "src");
|
|
|
|
if (G_UNLIKELY (!src)) {
|
|
|
|
GST_ELEMENT_ERROR (self, CORE, PAD, (NULL),
|
|
|
|
("Failed to get srcpad from identity"));
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (G_UNLIKELY (!gst_ghost_pad_set_target (GST_GHOST_PAD_CAST (self->srcpad),
|
|
|
|
src))) {
|
|
|
|
GST_ELEMENT_ERROR (self, CORE, PAD, (NULL),
|
|
|
|
("Failed to set srcpad target"));
|
|
|
|
gst_object_unref (src);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
gst_object_unref (src);
|
|
|
|
|
|
|
|
sink = gst_element_get_static_pad (self->passthrough_identity, "sink");
|
|
|
|
if (G_UNLIKELY (!sink)) {
|
|
|
|
GST_ELEMENT_ERROR (self, CORE, PAD, (NULL),
|
|
|
|
("Failed to get sinkpad from identity"));
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Send segment to the identity. This is dropped because identity
|
|
|
|
* is not linked downstream yet */
|
2009-11-07 20:10:27 +00:00
|
|
|
if (self->video_segment.format != GST_FORMAT_UNDEFINED) {
|
2011-05-16 11:48:11 +00:00
|
|
|
GstEvent *event1;
|
2009-10-13 14:48:34 +00:00
|
|
|
|
2011-05-16 11:48:11 +00:00
|
|
|
_generate_update_segment_event (&self->video_segment, &event1);
|
2009-10-13 14:48:34 +00:00
|
|
|
GST_DEBUG_OBJECT (self,
|
2011-05-16 11:48:11 +00:00
|
|
|
"Pushing video segment event: %" GST_PTR_FORMAT, event1);
|
2009-10-13 14:48:34 +00:00
|
|
|
gst_pad_send_event (sink, event1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Link sink ghostpads to identity */
|
|
|
|
if (G_UNLIKELY (!gst_ghost_pad_set_target (GST_GHOST_PAD_CAST
|
|
|
|
(self->video_sinkpad), sink))) {
|
|
|
|
GST_ELEMENT_ERROR (self, CORE, PAD, (NULL),
|
|
|
|
("Failed to set video sinkpad target"));
|
|
|
|
gst_object_unref (sink);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
gst_object_unref (sink);
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (self, "Video passthrough setup successfully");
|
|
|
|
|
|
|
|
out:
|
|
|
|
/* Unblock pads */
|
2011-06-01 17:34:54 +00:00
|
|
|
unblock_video (self);
|
|
|
|
unblock_subtitle (self);
|
2009-10-13 14:48:34 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2009-11-07 10:46:49 +00:00
|
|
|
/* Must be called with subtitleoverlay lock! */
|
|
|
|
static void
|
|
|
|
gst_subtitle_overlay_set_fps (GstSubtitleOverlay * self)
|
|
|
|
{
|
|
|
|
GObjectClass *gobject_class;
|
|
|
|
GParamSpec *pspec;
|
|
|
|
|
|
|
|
if (!self->parser || self->fps_d == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
gobject_class = G_OBJECT_GET_CLASS (self->parser);
|
|
|
|
pspec = g_object_class_find_property (gobject_class, "video-fps");
|
|
|
|
if (!pspec || pspec->value_type != GST_TYPE_FRACTION)
|
|
|
|
return;
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (self, "Updating video-fps property in parser");
|
|
|
|
g_object_set (self->parser, "video-fps", self->fps_n, self->fps_d, NULL);
|
|
|
|
}
|
|
|
|
|
2009-11-07 20:09:53 +00:00
|
|
|
static const gchar *
|
|
|
|
_get_silent_property (GstElement * element, gboolean * invert)
|
|
|
|
{
|
|
|
|
static const struct
|
|
|
|
{
|
|
|
|
const gchar *name;
|
|
|
|
gboolean invert;
|
|
|
|
} properties[] = { {
|
|
|
|
"silent", FALSE}, {
|
|
|
|
"enable", TRUE}};
|
|
|
|
GObjectClass *gobject_class;
|
|
|
|
GParamSpec *pspec;
|
|
|
|
guint i;
|
|
|
|
|
|
|
|
gobject_class = G_OBJECT_GET_CLASS (element);
|
|
|
|
|
|
|
|
for (i = 0; i < G_N_ELEMENTS (properties); i++) {
|
|
|
|
pspec = g_object_class_find_property (gobject_class, properties[i].name);
|
|
|
|
if (pspec && pspec->value_type == G_TYPE_BOOLEAN) {
|
|
|
|
*invert = properties[i].invert;
|
|
|
|
return properties[i].name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2010-02-21 18:52:45 +00:00
|
|
|
static gboolean
|
|
|
|
_has_subtitle_encoding_property (GstElement * element)
|
|
|
|
{
|
|
|
|
GParamSpec *pspec;
|
|
|
|
|
|
|
|
pspec =
|
|
|
|
g_object_class_find_property (G_OBJECT_GET_CLASS (element),
|
|
|
|
"subtitle-encoding");
|
|
|
|
return (pspec && pspec->value_type == G_TYPE_STRING);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
_has_font_desc_property (GstElement * element)
|
|
|
|
{
|
|
|
|
GParamSpec *pspec;
|
|
|
|
|
|
|
|
pspec =
|
|
|
|
g_object_class_find_property (G_OBJECT_GET_CLASS (element), "font-desc");
|
|
|
|
return (pspec && pspec->value_type == G_TYPE_STRING);
|
|
|
|
}
|
|
|
|
|
2011-06-01 17:34:54 +00:00
|
|
|
static GstProbeReturn
|
|
|
|
_pad_blocked_cb (GstPad * pad, GstProbeType type, gpointer type_data,
|
|
|
|
gpointer user_data)
|
2009-10-13 14:48:34 +00:00
|
|
|
{
|
|
|
|
GstSubtitleOverlay *self = GST_SUBTITLE_OVERLAY_CAST (user_data);
|
|
|
|
GstCaps *subcaps;
|
|
|
|
GList *l, *factories = NULL;
|
|
|
|
|
2011-05-30 16:36:14 +00:00
|
|
|
GST_DEBUG_OBJECT (pad, "Pad blocked");
|
2009-10-13 14:48:34 +00:00
|
|
|
|
|
|
|
GST_SUBTITLE_OVERLAY_LOCK (self);
|
|
|
|
if (pad == self->video_block_pad)
|
2011-05-30 16:36:14 +00:00
|
|
|
self->video_sink_blocked = TRUE;
|
2009-10-13 14:48:34 +00:00
|
|
|
else if (pad == self->subtitle_block_pad)
|
2011-05-30 16:36:14 +00:00
|
|
|
self->subtitle_sink_blocked = TRUE;
|
2009-10-13 14:48:34 +00:00
|
|
|
|
|
|
|
/* Now either both or the video sink are blocked */
|
|
|
|
|
|
|
|
/* Get current subtitle caps */
|
|
|
|
subcaps = self->subcaps;
|
|
|
|
if (!subcaps) {
|
|
|
|
GstPad *peer;
|
|
|
|
|
|
|
|
peer = gst_pad_get_peer (self->subtitle_sinkpad);
|
|
|
|
if (peer) {
|
|
|
|
subcaps = gst_pad_get_negotiated_caps (peer);
|
|
|
|
if (!subcaps) {
|
2011-05-16 09:33:12 +00:00
|
|
|
subcaps = gst_pad_get_caps (peer, NULL);
|
2009-10-13 14:48:34 +00:00
|
|
|
if (!gst_caps_is_fixed (subcaps)) {
|
|
|
|
gst_caps_unref (subcaps);
|
|
|
|
subcaps = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
gst_object_unref (peer);
|
|
|
|
}
|
|
|
|
gst_caps_replace (&self->subcaps, subcaps);
|
|
|
|
if (subcaps)
|
|
|
|
gst_caps_unref (subcaps);
|
|
|
|
}
|
|
|
|
GST_DEBUG_OBJECT (self, "Current subtitle caps: %" GST_PTR_FORMAT, subcaps);
|
|
|
|
|
|
|
|
/* If there are no subcaps but the subtitle sink is blocked upstream
|
|
|
|
* must behave wrong as there are no fixed caps set for the first
|
|
|
|
* buffer or in-order event */
|
|
|
|
if (G_UNLIKELY (!subcaps && self->subtitle_sink_blocked)) {
|
|
|
|
GST_ELEMENT_WARNING (self, CORE, NEGOTIATION, (NULL),
|
|
|
|
("Subtitle sink is blocked but we have no subtitle caps"));
|
|
|
|
subcaps = NULL;
|
|
|
|
}
|
|
|
|
|
2009-11-14 12:21:15 +00:00
|
|
|
if (self->subtitle_error || (self->silent && !self->silent_property)) {
|
2009-11-07 20:09:53 +00:00
|
|
|
_setup_passthrough (self);
|
|
|
|
do_async_done (self);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2009-10-13 14:48:34 +00:00
|
|
|
/* Now do something with the caps */
|
|
|
|
if (subcaps && !self->subtitle_flush) {
|
|
|
|
GstPad *target =
|
|
|
|
gst_ghost_pad_get_target (GST_GHOST_PAD_CAST (self->subtitle_sinkpad));
|
|
|
|
|
|
|
|
if (target && gst_pad_accept_caps (target, subcaps)) {
|
|
|
|
GST_DEBUG_OBJECT (pad, "Target accepts caps");
|
|
|
|
|
|
|
|
gst_object_unref (target);
|
|
|
|
|
|
|
|
/* Unblock pads */
|
2011-06-01 17:34:54 +00:00
|
|
|
unblock_video (self);
|
|
|
|
unblock_subtitle (self);
|
2009-10-13 14:48:34 +00:00
|
|
|
|
|
|
|
goto out;
|
|
|
|
} else if (target) {
|
|
|
|
gst_object_unref (target);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (self->subtitle_sink_blocked && !self->video_sink_blocked) {
|
|
|
|
GST_DEBUG_OBJECT (self, "Subtitle sink blocked but video not blocked");
|
2011-06-01 17:34:54 +00:00
|
|
|
block_video (self);
|
2009-10-13 14:48:34 +00:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
self->subtitle_flush = FALSE;
|
|
|
|
|
|
|
|
/* Find our factories */
|
2009-11-10 17:27:15 +00:00
|
|
|
g_mutex_lock (self->factories_lock);
|
|
|
|
gst_subtitle_overlay_update_factory_list (self);
|
2009-10-13 14:48:34 +00:00
|
|
|
if (subcaps) {
|
|
|
|
factories = gst_filter_run (self->factories,
|
|
|
|
(GstFilterFunc) _filter_factories_for_caps, FALSE, subcaps);
|
|
|
|
if (!factories) {
|
|
|
|
GstMessage *msg;
|
|
|
|
|
|
|
|
msg = gst_missing_decoder_message_new (GST_ELEMENT_CAST (self), subcaps);
|
|
|
|
gst_element_post_message (GST_ELEMENT_CAST (self), msg);
|
|
|
|
GST_ELEMENT_WARNING (self, CORE, MISSING_PLUGIN, (NULL),
|
|
|
|
("no suitable subtitle plugin found"));
|
|
|
|
subcaps = NULL;
|
2009-11-14 12:21:15 +00:00
|
|
|
self->subtitle_error = TRUE;
|
2009-10-13 14:48:34 +00:00
|
|
|
}
|
|
|
|
}
|
2009-11-10 17:27:15 +00:00
|
|
|
g_mutex_unlock (self->factories_lock);
|
2009-10-13 14:48:34 +00:00
|
|
|
|
|
|
|
if (!subcaps) {
|
|
|
|
_setup_passthrough (self);
|
|
|
|
do_async_done (self);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Now the interesting parts are done: subtitle overlaying! */
|
|
|
|
|
|
|
|
/* Sort the factories by rank */
|
|
|
|
factories = g_list_sort (factories, (GCompareFunc) _sort_by_ranks);
|
|
|
|
|
|
|
|
for (l = factories; l; l = l->next) {
|
|
|
|
GstElementFactory *factory = l->data;
|
|
|
|
gboolean is_renderer = _is_renderer (factory);
|
|
|
|
GstElement *element;
|
|
|
|
GstPad *sink, *src;
|
|
|
|
|
|
|
|
/* Unlink & destroy everything */
|
|
|
|
|
|
|
|
gst_ghost_pad_set_target (GST_GHOST_PAD_CAST (self->srcpad), NULL);
|
|
|
|
gst_ghost_pad_set_target (GST_GHOST_PAD_CAST (self->video_sinkpad), NULL);
|
|
|
|
gst_ghost_pad_set_target (GST_GHOST_PAD_CAST (self->subtitle_sinkpad),
|
|
|
|
NULL);
|
2009-11-07 20:09:53 +00:00
|
|
|
self->silent_property = NULL;
|
2009-10-13 14:48:34 +00:00
|
|
|
_remove_element (self, &self->post_colorspace);
|
|
|
|
_remove_element (self, &self->overlay);
|
|
|
|
_remove_element (self, &self->parser);
|
|
|
|
_remove_element (self, &self->renderer);
|
|
|
|
_remove_element (self, &self->pre_colorspace);
|
|
|
|
_remove_element (self, &self->passthrough_identity);
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (self, "Trying factory '%s'",
|
|
|
|
GST_STR_NULL (gst_plugin_feature_get_name (GST_PLUGIN_FEATURE_CAST
|
|
|
|
(factory))));
|
|
|
|
|
|
|
|
if (G_UNLIKELY ((is_renderer
|
|
|
|
&& !_create_element (self, &self->renderer, NULL, factory,
|
|
|
|
"renderer", FALSE)) || (!is_renderer
|
|
|
|
&& !_create_element (self, &self->parser, NULL, factory,
|
|
|
|
"parser", FALSE))))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
element = is_renderer ? self->renderer : self->parser;
|
|
|
|
|
|
|
|
/* If this is a parser, create textoverlay and link video and the parser to it
|
|
|
|
* Else link the renderer to the output colorspace */
|
|
|
|
if (!is_renderer) {
|
|
|
|
GstElement *overlay;
|
2009-11-07 10:46:49 +00:00
|
|
|
GstPad *video_peer;
|
|
|
|
|
|
|
|
/* Try to get the latest video framerate */
|
|
|
|
video_peer = gst_pad_get_peer (self->video_sinkpad);
|
|
|
|
if (video_peer) {
|
|
|
|
GstCaps *video_caps;
|
|
|
|
gint fps_n, fps_d;
|
|
|
|
|
|
|
|
video_caps = gst_pad_get_negotiated_caps (video_peer);
|
|
|
|
if (!video_caps) {
|
2011-05-16 09:33:12 +00:00
|
|
|
video_caps = gst_pad_get_caps (video_peer, NULL);
|
2009-11-07 10:46:49 +00:00
|
|
|
if (!gst_caps_is_fixed (video_caps)) {
|
|
|
|
gst_caps_unref (video_caps);
|
|
|
|
video_caps = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (video_caps
|
|
|
|
&& gst_video_parse_caps_framerate (video_caps, &fps_n, &fps_d)) {
|
|
|
|
if (self->fps_n != fps_n || self->fps_d != fps_d) {
|
|
|
|
GST_DEBUG_OBJECT (self, "New video fps: %d/%d", fps_n, fps_d);
|
|
|
|
self->fps_n = fps_n;
|
|
|
|
self->fps_d = fps_d;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (video_caps)
|
|
|
|
gst_caps_unref (video_caps);
|
|
|
|
gst_object_unref (video_peer);
|
|
|
|
}
|
|
|
|
|
2010-02-21 18:52:45 +00:00
|
|
|
if (_has_subtitle_encoding_property (self->parser))
|
|
|
|
g_object_set (self->parser, "subtitle-encoding", self->encoding, NULL);
|
|
|
|
|
2009-11-07 10:46:49 +00:00
|
|
|
/* Try to set video fps on the parser */
|
|
|
|
gst_subtitle_overlay_set_fps (self);
|
2009-10-13 14:48:34 +00:00
|
|
|
|
|
|
|
/* First link everything internally */
|
|
|
|
if (G_UNLIKELY (!_create_element (self, &self->overlay, "textoverlay",
|
|
|
|
NULL, "overlay", FALSE))) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
overlay = self->overlay;
|
2009-11-07 20:09:53 +00:00
|
|
|
self->silent_property = "silent";
|
|
|
|
self->silent_property_invert = FALSE;
|
2009-10-13 14:48:34 +00:00
|
|
|
|
|
|
|
/* Set some properties */
|
|
|
|
g_object_set (G_OBJECT (overlay),
|
|
|
|
"halign", "center", "valign", "bottom", "wait-text", FALSE, NULL);
|
|
|
|
if (self->font_desc)
|
|
|
|
g_object_set (G_OBJECT (overlay), "font-desc", self->font_desc, NULL);
|
|
|
|
|
|
|
|
src = gst_element_get_static_pad (element, "src");
|
|
|
|
if (G_UNLIKELY (!src)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
sink = gst_element_get_static_pad (overlay, "text_sink");
|
|
|
|
if (G_UNLIKELY (!sink)) {
|
|
|
|
GST_WARNING_OBJECT (self, "Can't get text sink from textoverlay");
|
|
|
|
gst_object_unref (src);
|
2009-11-30 09:22:15 +00:00
|
|
|
continue;
|
2009-10-13 14:48:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (G_UNLIKELY (gst_pad_link (src, sink) != GST_PAD_LINK_OK)) {
|
|
|
|
GST_WARNING_OBJECT (self, "Can't link parser to textoverlay");
|
|
|
|
gst_object_unref (sink);
|
|
|
|
gst_object_unref (src);
|
2009-11-30 09:22:15 +00:00
|
|
|
continue;
|
2009-10-13 14:48:34 +00:00
|
|
|
}
|
|
|
|
gst_object_unref (sink);
|
|
|
|
gst_object_unref (src);
|
|
|
|
|
|
|
|
if (G_UNLIKELY (!_create_element (self, &self->post_colorspace,
|
2011-06-15 16:08:32 +00:00
|
|
|
"videoconvert", NULL, "post-colorspace", FALSE))) {
|
2009-10-13 14:48:34 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
src = gst_element_get_static_pad (overlay, "src");
|
|
|
|
if (G_UNLIKELY (!src)) {
|
|
|
|
GST_WARNING_OBJECT (self, "Can't get src pad from overlay");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
sink = gst_element_get_static_pad (self->post_colorspace, "sink");
|
|
|
|
if (G_UNLIKELY (!sink)) {
|
2011-06-15 16:08:32 +00:00
|
|
|
GST_WARNING_OBJECT (self, "Can't get sink pad from videoconvert");
|
2009-10-13 14:48:34 +00:00
|
|
|
gst_object_unref (src);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (G_UNLIKELY (gst_pad_link (src, sink) != GST_PAD_LINK_OK)) {
|
2011-06-15 16:08:32 +00:00
|
|
|
GST_WARNING_OBJECT (self, "Can't link overlay with videoconvert");
|
2009-10-13 14:48:34 +00:00
|
|
|
gst_object_unref (src);
|
|
|
|
gst_object_unref (sink);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
gst_object_unref (src);
|
|
|
|
gst_object_unref (sink);
|
|
|
|
|
|
|
|
if (G_UNLIKELY (!_create_element (self, &self->pre_colorspace,
|
2011-06-15 16:08:32 +00:00
|
|
|
"videoconvert", NULL, "pre-colorspace", FALSE))) {
|
2009-10-13 14:48:34 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
sink = gst_element_get_static_pad (overlay, "video_sink");
|
|
|
|
if (G_UNLIKELY (!sink)) {
|
|
|
|
GST_WARNING_OBJECT (self, "Can't get video sink from textoverlay");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
src = gst_element_get_static_pad (self->pre_colorspace, "src");
|
|
|
|
if (G_UNLIKELY (!src)) {
|
2011-06-15 16:08:32 +00:00
|
|
|
GST_WARNING_OBJECT (self, "Can't get srcpad from videoconvert");
|
2009-10-13 14:48:34 +00:00
|
|
|
gst_object_unref (sink);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (G_UNLIKELY (gst_pad_link (src, sink) != GST_PAD_LINK_OK)) {
|
2011-06-15 16:08:32 +00:00
|
|
|
GST_WARNING_OBJECT (self, "Can't link videoconvert to textoverlay");
|
2009-10-13 14:48:34 +00:00
|
|
|
gst_object_unref (src);
|
|
|
|
gst_object_unref (sink);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
gst_object_unref (src);
|
|
|
|
gst_object_unref (sink);
|
|
|
|
|
|
|
|
/* Set src ghostpad target */
|
|
|
|
src = gst_element_get_static_pad (self->post_colorspace, "src");
|
|
|
|
if (G_UNLIKELY (!src)) {
|
2011-06-15 16:08:32 +00:00
|
|
|
GST_WARNING_OBJECT (self, "Can't get src pad from videoconvert");
|
2009-10-13 14:48:34 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (G_UNLIKELY (!gst_ghost_pad_set_target (GST_GHOST_PAD_CAST
|
|
|
|
(self->srcpad), src))) {
|
|
|
|
GST_WARNING_OBJECT (self, "Can't set srcpad target");
|
|
|
|
gst_object_unref (src);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
gst_object_unref (src);
|
|
|
|
|
|
|
|
/* Send segments to the parser/overlay if necessary. These are not sent
|
|
|
|
* outside this element because of the proxy pad event function */
|
2009-11-07 20:10:27 +00:00
|
|
|
if (self->video_segment.format != GST_FORMAT_UNDEFINED) {
|
2011-05-16 11:48:11 +00:00
|
|
|
GstEvent *event1;
|
2009-10-13 14:48:34 +00:00
|
|
|
|
|
|
|
sink = gst_element_get_static_pad (self->pre_colorspace, "sink");
|
|
|
|
if (G_UNLIKELY (!sink)) {
|
2011-06-15 16:08:32 +00:00
|
|
|
GST_WARNING_OBJECT (self, "Can't get sink pad from videoconvert");
|
2009-10-13 14:48:34 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2011-05-16 11:48:11 +00:00
|
|
|
_generate_update_segment_event (&self->video_segment, &event1);
|
2009-10-13 14:48:34 +00:00
|
|
|
GST_DEBUG_OBJECT (self,
|
2011-05-16 11:48:11 +00:00
|
|
|
"Pushing video segment event: %" GST_PTR_FORMAT, event1);
|
2009-10-13 14:48:34 +00:00
|
|
|
gst_pad_send_event (sink, event1);
|
|
|
|
|
|
|
|
gst_object_unref (sink);
|
|
|
|
}
|
|
|
|
|
2009-11-07 20:10:27 +00:00
|
|
|
if (self->subtitle_segment.format != GST_FORMAT_UNDEFINED) {
|
2011-05-16 11:48:11 +00:00
|
|
|
GstEvent *event1;
|
2009-10-13 14:48:34 +00:00
|
|
|
|
|
|
|
sink = gst_element_get_static_pad (element, "sink");
|
|
|
|
if (G_UNLIKELY (!sink)) {
|
|
|
|
GST_WARNING_OBJECT (self, "Failed to get subpad");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2011-05-16 11:48:11 +00:00
|
|
|
_generate_update_segment_event (&self->subtitle_segment, &event1);
|
2009-10-13 14:48:34 +00:00
|
|
|
GST_DEBUG_OBJECT (self,
|
2011-05-16 11:48:11 +00:00
|
|
|
"Pushing subtitle segment event: %" GST_PTR_FORMAT, event1);
|
2009-10-13 14:48:34 +00:00
|
|
|
gst_pad_send_event (sink, event1);
|
|
|
|
|
|
|
|
gst_object_unref (sink);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set the sink ghostpad targets */
|
|
|
|
sink = gst_element_get_static_pad (self->pre_colorspace, "sink");
|
|
|
|
if (G_UNLIKELY (!sink)) {
|
2011-06-15 16:08:32 +00:00
|
|
|
GST_WARNING_OBJECT (self, "Can't get sink pad from videoconvert");
|
2009-10-13 14:48:34 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (G_UNLIKELY (!gst_ghost_pad_set_target (GST_GHOST_PAD_CAST
|
|
|
|
(self->video_sinkpad), sink))) {
|
|
|
|
GST_WARNING_OBJECT (self, "Can't set video sinkpad target");
|
|
|
|
gst_object_unref (sink);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
gst_object_unref (sink);
|
|
|
|
|
|
|
|
/* Link subtitle identity to subtitle pad of our element */
|
|
|
|
sink = gst_element_get_static_pad (element, "sink");
|
|
|
|
if (G_UNLIKELY (!sink)) {
|
|
|
|
GST_WARNING_OBJECT (self, "Failed to get subpad");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (G_UNLIKELY (!gst_ghost_pad_set_target (GST_GHOST_PAD_CAST
|
|
|
|
(self->subtitle_sinkpad), sink))) {
|
|
|
|
GST_WARNING_OBJECT (self, "Failed to set subtitle sink target");
|
|
|
|
gst_object_unref (sink);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
gst_object_unref (sink);
|
|
|
|
} else {
|
|
|
|
const gchar *name =
|
|
|
|
gst_plugin_feature_get_name (GST_PLUGIN_FEATURE_CAST (factory));
|
|
|
|
|
|
|
|
if (strcmp (name, "textoverlay") == 0) {
|
|
|
|
/* Set some textoverlay specific properties */
|
|
|
|
g_object_set (G_OBJECT (element),
|
|
|
|
"halign", "center", "valign", "bottom", "wait-text", FALSE, NULL);
|
|
|
|
if (self->font_desc)
|
|
|
|
g_object_set (G_OBJECT (element), "font-desc", self->font_desc, NULL);
|
2009-11-07 20:09:53 +00:00
|
|
|
self->silent_property = "silent";
|
|
|
|
self->silent_property_invert = FALSE;
|
|
|
|
} else {
|
|
|
|
self->silent_property =
|
|
|
|
_get_silent_property (element, &self->silent_property_invert);
|
2010-02-21 18:52:45 +00:00
|
|
|
if (_has_subtitle_encoding_property (self->renderer))
|
|
|
|
g_object_set (self->renderer, "subtitle-encoding", self->encoding,
|
|
|
|
NULL);
|
|
|
|
if (_has_font_desc_property (self->renderer))
|
|
|
|
g_object_set (self->renderer, "font-desc", self->font_desc, NULL);
|
2009-10-13 14:48:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* First link everything internally */
|
|
|
|
if (G_UNLIKELY (!_create_element (self, &self->post_colorspace,
|
2011-06-15 16:08:32 +00:00
|
|
|
"videoconvert", NULL, "post-colorspace", FALSE))) {
|
2009-10-13 14:48:34 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
src = gst_element_get_static_pad (element, "src");
|
|
|
|
if (G_UNLIKELY (!src)) {
|
|
|
|
GST_WARNING_OBJECT (self, "Can't get src pad from renderer");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
sink = gst_element_get_static_pad (self->post_colorspace, "sink");
|
|
|
|
if (G_UNLIKELY (!sink)) {
|
2011-06-15 16:08:32 +00:00
|
|
|
GST_WARNING_OBJECT (self, "Can't get sink pad from videoconvert");
|
2009-10-13 14:48:34 +00:00
|
|
|
gst_object_unref (src);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (G_UNLIKELY (gst_pad_link (src, sink) != GST_PAD_LINK_OK)) {
|
2011-06-15 16:08:32 +00:00
|
|
|
GST_WARNING_OBJECT (self, "Can't link renderer with videoconvert");
|
2009-10-13 14:48:34 +00:00
|
|
|
gst_object_unref (src);
|
|
|
|
gst_object_unref (sink);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
gst_object_unref (src);
|
|
|
|
gst_object_unref (sink);
|
|
|
|
|
|
|
|
if (G_UNLIKELY (!_create_element (self, &self->pre_colorspace,
|
2011-06-15 16:08:32 +00:00
|
|
|
"videoconvert", NULL, "pre-colorspace", FALSE))) {
|
2009-10-13 14:48:34 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
sink = _get_video_pad (element);
|
|
|
|
if (G_UNLIKELY (!sink)) {
|
|
|
|
GST_WARNING_OBJECT (self, "Can't get video sink from renderer");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
src = gst_element_get_static_pad (self->pre_colorspace, "src");
|
|
|
|
if (G_UNLIKELY (!src)) {
|
2011-06-15 16:08:32 +00:00
|
|
|
GST_WARNING_OBJECT (self, "Can't get srcpad from videoconvert");
|
2009-10-13 14:48:34 +00:00
|
|
|
gst_object_unref (sink);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (G_UNLIKELY (gst_pad_link (src, sink) != GST_PAD_LINK_OK)) {
|
2011-06-15 16:08:32 +00:00
|
|
|
GST_WARNING_OBJECT (self, "Can't link videoconvert to renderer");
|
2009-10-13 14:48:34 +00:00
|
|
|
gst_object_unref (src);
|
|
|
|
gst_object_unref (sink);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
gst_object_unref (src);
|
|
|
|
gst_object_unref (sink);
|
|
|
|
|
|
|
|
/* Set src ghostpad target */
|
|
|
|
src = gst_element_get_static_pad (self->post_colorspace, "src");
|
|
|
|
if (G_UNLIKELY (!src)) {
|
2011-06-15 16:08:32 +00:00
|
|
|
GST_WARNING_OBJECT (self, "Can't get src pad from videoconvert");
|
2009-10-13 14:48:34 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (G_UNLIKELY (!gst_ghost_pad_set_target (GST_GHOST_PAD_CAST
|
|
|
|
(self->srcpad), src))) {
|
|
|
|
GST_WARNING_OBJECT (self, "Can't set srcpad target");
|
|
|
|
gst_object_unref (src);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
gst_object_unref (src);
|
|
|
|
|
|
|
|
/* Send segments to the renderer if necessary. These are not sent
|
|
|
|
* outside this element because of the proxy pad event handler */
|
2009-11-07 20:10:27 +00:00
|
|
|
if (self->video_segment.format != GST_FORMAT_UNDEFINED) {
|
2011-05-16 11:48:11 +00:00
|
|
|
GstEvent *event1;
|
2009-10-13 14:48:34 +00:00
|
|
|
|
|
|
|
sink = gst_element_get_static_pad (self->pre_colorspace, "sink");
|
|
|
|
if (G_UNLIKELY (!sink)) {
|
2011-06-15 16:08:32 +00:00
|
|
|
GST_WARNING_OBJECT (self, "Can't get sink pad from videoconvert");
|
2009-10-13 14:48:34 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2011-05-16 11:48:11 +00:00
|
|
|
_generate_update_segment_event (&self->video_segment, &event1);
|
2009-10-13 14:48:34 +00:00
|
|
|
GST_DEBUG_OBJECT (self,
|
2011-05-16 11:48:11 +00:00
|
|
|
"Pushing video segment event: %" GST_PTR_FORMAT, event1);
|
2009-10-13 14:48:34 +00:00
|
|
|
gst_pad_send_event (sink, event1);
|
|
|
|
gst_object_unref (sink);
|
|
|
|
}
|
|
|
|
|
2009-11-07 20:10:27 +00:00
|
|
|
if (self->subtitle_segment.format != GST_FORMAT_UNDEFINED) {
|
2011-05-16 11:48:11 +00:00
|
|
|
GstEvent *event1;
|
2009-10-13 14:48:34 +00:00
|
|
|
|
|
|
|
sink = _get_sub_pad (element);
|
|
|
|
if (G_UNLIKELY (!sink)) {
|
|
|
|
GST_WARNING_OBJECT (self, "Failed to get subpad");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2011-05-16 11:48:11 +00:00
|
|
|
_generate_update_segment_event (&self->subtitle_segment, &event1);
|
2009-10-13 14:48:34 +00:00
|
|
|
GST_DEBUG_OBJECT (self,
|
2011-05-16 11:48:11 +00:00
|
|
|
"Pushing subtitle segment event: %" GST_PTR_FORMAT, event1);
|
2009-10-13 14:48:34 +00:00
|
|
|
gst_pad_send_event (sink, event1);
|
|
|
|
gst_object_unref (sink);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set the sink ghostpad targets */
|
|
|
|
sink = gst_element_get_static_pad (self->pre_colorspace, "sink");
|
|
|
|
if (G_UNLIKELY (!sink)) {
|
2011-06-15 16:08:32 +00:00
|
|
|
GST_WARNING_OBJECT (self, "Can't get sink pad from videoconvert");
|
2009-10-13 14:48:34 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (G_UNLIKELY (!gst_ghost_pad_set_target (GST_GHOST_PAD_CAST
|
|
|
|
(self->video_sinkpad), sink))) {
|
|
|
|
GST_WARNING_OBJECT (self, "Can't set video sinkpad target");
|
|
|
|
gst_object_unref (sink);
|
|
|
|
continue;
|
|
|
|
}
|
2009-11-30 09:22:15 +00:00
|
|
|
gst_object_unref (sink);
|
2009-10-13 14:48:34 +00:00
|
|
|
|
|
|
|
sink = _get_sub_pad (element);
|
|
|
|
if (G_UNLIKELY (!sink)) {
|
|
|
|
GST_WARNING_OBJECT (self, "Failed to get subpad");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (G_UNLIKELY (!gst_ghost_pad_set_target (GST_GHOST_PAD_CAST
|
|
|
|
(self->subtitle_sinkpad), sink))) {
|
|
|
|
GST_WARNING_OBJECT (self, "Failed to set subtitle sink target");
|
|
|
|
gst_object_unref (sink);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
gst_object_unref (sink);
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (G_UNLIKELY (l == NULL)) {
|
|
|
|
GST_ELEMENT_WARNING (self, CORE, FAILED, (NULL),
|
|
|
|
("Failed to find any usable factories"));
|
2009-11-14 12:21:15 +00:00
|
|
|
self->subtitle_error = TRUE;
|
2009-10-13 14:48:34 +00:00
|
|
|
_setup_passthrough (self);
|
|
|
|
do_async_done (self);
|
|
|
|
} else {
|
|
|
|
GST_DEBUG_OBJECT (self, "Everything worked, unblocking pads");
|
2011-06-01 17:34:54 +00:00
|
|
|
unblock_video (self);
|
|
|
|
unblock_subtitle (self);
|
2009-10-13 14:48:34 +00:00
|
|
|
do_async_done (self);
|
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
|
|
|
if (factories)
|
2009-11-10 17:27:15 +00:00
|
|
|
gst_plugin_feature_list_free (factories);
|
2009-10-13 14:48:34 +00:00
|
|
|
GST_SUBTITLE_OVERLAY_UNLOCK (self);
|
2011-06-01 17:34:54 +00:00
|
|
|
|
|
|
|
return GST_PROBE_OK;
|
2009-10-13 14:48:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static GstStateChangeReturn
|
|
|
|
gst_subtitle_overlay_change_state (GstElement * element,
|
|
|
|
GstStateChange transition)
|
|
|
|
{
|
|
|
|
GstSubtitleOverlay *self = GST_SUBTITLE_OVERLAY (element);
|
|
|
|
GstStateChangeReturn ret = GST_STATE_CHANGE_SUCCESS;
|
|
|
|
|
|
|
|
switch (transition) {
|
|
|
|
case GST_STATE_CHANGE_NULL_TO_READY:
|
|
|
|
GST_DEBUG_OBJECT (self, "State change NULL->READY");
|
2009-11-10 17:27:15 +00:00
|
|
|
g_mutex_lock (self->factories_lock);
|
|
|
|
if (G_UNLIKELY (!gst_subtitle_overlay_update_factory_list (self))) {
|
|
|
|
g_mutex_unlock (self->factories_lock);
|
2009-10-13 14:48:34 +00:00
|
|
|
return GST_STATE_CHANGE_FAILURE;
|
2009-11-10 17:27:15 +00:00
|
|
|
}
|
|
|
|
g_mutex_unlock (self->factories_lock);
|
2009-10-13 14:48:34 +00:00
|
|
|
|
|
|
|
GST_SUBTITLE_OVERLAY_LOCK (self);
|
|
|
|
/* Set the internal pads to blocking */
|
2011-06-01 17:34:54 +00:00
|
|
|
block_video (self);
|
|
|
|
block_subtitle (self);
|
2009-10-13 14:48:34 +00:00
|
|
|
GST_SUBTITLE_OVERLAY_UNLOCK (self);
|
|
|
|
break;
|
|
|
|
case GST_STATE_CHANGE_READY_TO_PAUSED:
|
|
|
|
GST_DEBUG_OBJECT (self, "State change READY->PAUSED");
|
|
|
|
gst_segment_init (&self->video_segment, GST_FORMAT_UNDEFINED);
|
|
|
|
gst_segment_init (&self->subtitle_segment, GST_FORMAT_UNDEFINED);
|
|
|
|
|
2009-11-07 10:46:49 +00:00
|
|
|
self->fps_n = self->fps_d = 0;
|
|
|
|
|
2009-10-13 14:48:34 +00:00
|
|
|
self->subtitle_flush = FALSE;
|
2009-11-14 12:21:15 +00:00
|
|
|
self->subtitle_error = FALSE;
|
|
|
|
|
|
|
|
self->downstream_chain_error = FALSE;
|
2009-10-13 14:48:34 +00:00
|
|
|
|
|
|
|
do_async_start (self);
|
|
|
|
ret = GST_STATE_CHANGE_ASYNC;
|
|
|
|
|
|
|
|
break;
|
|
|
|
case GST_STATE_CHANGE_PAUSED_TO_PLAYING:
|
|
|
|
GST_DEBUG_OBJECT (self, "State change PAUSED->PLAYING");
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
GstStateChangeReturn bret;
|
|
|
|
|
|
|
|
bret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
|
|
|
|
GST_DEBUG_OBJECT (self, "Base class state changed returned: %d", bret);
|
|
|
|
if (G_UNLIKELY (bret == GST_STATE_CHANGE_FAILURE))
|
|
|
|
return ret;
|
|
|
|
else if (bret == GST_STATE_CHANGE_ASYNC)
|
|
|
|
ret = bret;
|
|
|
|
else if (G_UNLIKELY (bret == GST_STATE_CHANGE_NO_PREROLL)) {
|
|
|
|
do_async_done (self);
|
|
|
|
ret = bret;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (transition) {
|
|
|
|
case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
|
|
|
|
GST_DEBUG_OBJECT (self, "State change PLAYING->PAUSED");
|
|
|
|
break;
|
|
|
|
case GST_STATE_CHANGE_PAUSED_TO_READY:
|
|
|
|
GST_DEBUG_OBJECT (self, "State change PAUSED->READY");
|
|
|
|
do_async_done (self);
|
|
|
|
|
|
|
|
break;
|
2011-06-01 17:34:54 +00:00
|
|
|
case GST_STATE_CHANGE_READY_TO_NULL:
|
2009-10-13 14:48:34 +00:00
|
|
|
GST_DEBUG_OBJECT (self, "State change READY->NULL");
|
|
|
|
|
|
|
|
GST_SUBTITLE_OVERLAY_LOCK (self);
|
|
|
|
gst_caps_replace (&self->subcaps, NULL);
|
|
|
|
|
|
|
|
/* Unlink ghost pads */
|
|
|
|
gst_ghost_pad_set_target (GST_GHOST_PAD_CAST (self->srcpad), NULL);
|
|
|
|
gst_ghost_pad_set_target (GST_GHOST_PAD_CAST (self->video_sinkpad), NULL);
|
|
|
|
gst_ghost_pad_set_target (GST_GHOST_PAD_CAST (self->subtitle_sinkpad),
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
/* Unblock pads */
|
2011-06-01 17:34:54 +00:00
|
|
|
unblock_video (self);
|
|
|
|
unblock_subtitle (self);
|
2009-10-13 14:48:34 +00:00
|
|
|
|
|
|
|
/* Remove elements */
|
2009-11-07 20:09:53 +00:00
|
|
|
self->silent_property = NULL;
|
2009-10-13 14:48:34 +00:00
|
|
|
_remove_element (self, &self->post_colorspace);
|
|
|
|
_remove_element (self, &self->overlay);
|
|
|
|
_remove_element (self, &self->parser);
|
|
|
|
_remove_element (self, &self->renderer);
|
|
|
|
_remove_element (self, &self->pre_colorspace);
|
|
|
|
_remove_element (self, &self->passthrough_identity);
|
|
|
|
GST_SUBTITLE_OVERLAY_UNLOCK (self);
|
|
|
|
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2009-11-14 12:21:15 +00:00
|
|
|
static void
|
|
|
|
gst_subtitle_overlay_handle_message (GstBin * bin, GstMessage * message)
|
|
|
|
{
|
|
|
|
GstSubtitleOverlay *self = GST_SUBTITLE_OVERLAY_CAST (bin);
|
|
|
|
|
|
|
|
if (GST_MESSAGE_TYPE (message) == GST_MESSAGE_ERROR) {
|
|
|
|
GstObject *src = GST_MESSAGE_SRC (message);
|
|
|
|
|
|
|
|
/* Convert error messages from the subtitle pipeline to
|
|
|
|
* warnings and switch to passthrough mode */
|
|
|
|
if (src && (
|
|
|
|
(self->overlay
|
|
|
|
&& gst_object_has_ancestor (src,
|
|
|
|
GST_OBJECT_CAST (self->overlay))) || (self->parser
|
|
|
|
&& gst_object_has_ancestor (src,
|
|
|
|
GST_OBJECT_CAST (self->parser))) || (self->renderer
|
|
|
|
&& gst_object_has_ancestor (src,
|
|
|
|
GST_OBJECT_CAST (self->renderer))))) {
|
|
|
|
GError *err = NULL;
|
|
|
|
gchar *debug = NULL;
|
|
|
|
GstMessage *wmsg;
|
|
|
|
|
|
|
|
gst_message_parse_error (message, &err, &debug);
|
|
|
|
GST_DEBUG_OBJECT (self,
|
|
|
|
"Got error message from subtitle element %s: %s (%s)",
|
|
|
|
GST_MESSAGE_SRC_NAME (message), GST_STR_NULL (err->message),
|
|
|
|
GST_STR_NULL (debug));
|
|
|
|
|
|
|
|
wmsg = gst_message_new_warning (src, err, debug);
|
|
|
|
gst_message_unref (message);
|
|
|
|
g_error_free (err);
|
|
|
|
g_free (debug);
|
|
|
|
message = wmsg;
|
|
|
|
|
|
|
|
GST_SUBTITLE_OVERLAY_LOCK (self);
|
|
|
|
self->subtitle_error = TRUE;
|
|
|
|
|
2011-06-01 17:34:54 +00:00
|
|
|
block_subtitle (self);
|
|
|
|
block_video (self);
|
2009-11-14 12:21:15 +00:00
|
|
|
GST_SUBTITLE_OVERLAY_UNLOCK (self);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_BIN_CLASS (parent_class)->handle_message (bin, message);
|
|
|
|
}
|
|
|
|
|
2009-11-07 20:09:53 +00:00
|
|
|
static void
|
|
|
|
gst_subtitle_overlay_get_property (GObject * object, guint prop_id,
|
|
|
|
GValue * value, GParamSpec * pspec)
|
|
|
|
{
|
|
|
|
GstSubtitleOverlay *self = GST_SUBTITLE_OVERLAY_CAST (object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
case PROP_SILENT:
|
|
|
|
g_value_set_boolean (value, self->silent);
|
|
|
|
break;
|
|
|
|
case PROP_FONT_DESC:
|
|
|
|
GST_SUBTITLE_OVERLAY_LOCK (self);
|
|
|
|
g_value_set_string (value, self->font_desc);
|
|
|
|
GST_SUBTITLE_OVERLAY_UNLOCK (self);
|
|
|
|
break;
|
2010-02-21 18:52:45 +00:00
|
|
|
case PROP_SUBTITLE_ENCODING:
|
|
|
|
GST_SUBTITLE_OVERLAY_LOCK (self);
|
|
|
|
g_value_set_string (value, self->encoding);
|
|
|
|
GST_SUBTITLE_OVERLAY_UNLOCK (self);
|
|
|
|
break;
|
2009-11-07 20:09:53 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-13 14:48:34 +00:00
|
|
|
static void
|
|
|
|
gst_subtitle_overlay_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec)
|
|
|
|
{
|
|
|
|
GstSubtitleOverlay *self = GST_SUBTITLE_OVERLAY_CAST (object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
2009-11-07 20:09:53 +00:00
|
|
|
case PROP_SILENT:
|
|
|
|
GST_SUBTITLE_OVERLAY_LOCK (self);
|
|
|
|
self->silent = g_value_get_boolean (value);
|
|
|
|
if (self->silent_property) {
|
|
|
|
gboolean silent = self->silent;
|
|
|
|
|
|
|
|
if (self->silent_property_invert)
|
|
|
|
silent = !silent;
|
|
|
|
|
|
|
|
if (self->overlay)
|
|
|
|
g_object_set (self->overlay, self->silent_property, silent, NULL);
|
|
|
|
else if (self->renderer)
|
|
|
|
g_object_set (self->renderer, self->silent_property, silent, NULL);
|
|
|
|
} else {
|
2011-06-01 17:34:54 +00:00
|
|
|
block_subtitle (self);
|
|
|
|
block_video (self);
|
2009-11-07 20:09:53 +00:00
|
|
|
}
|
|
|
|
GST_SUBTITLE_OVERLAY_UNLOCK (self);
|
|
|
|
break;
|
2009-10-13 14:48:34 +00:00
|
|
|
case PROP_FONT_DESC:
|
|
|
|
GST_SUBTITLE_OVERLAY_LOCK (self);
|
|
|
|
g_free (self->font_desc);
|
|
|
|
self->font_desc = g_value_dup_string (value);
|
2010-02-21 18:52:45 +00:00
|
|
|
if (self->overlay)
|
|
|
|
g_object_set (self->overlay, "font-desc", self->font_desc, NULL);
|
|
|
|
else if (self->renderer && _has_font_desc_property (self->renderer))
|
|
|
|
g_object_set (self->renderer, "font-desc", self->font_desc, NULL);
|
|
|
|
GST_SUBTITLE_OVERLAY_UNLOCK (self);
|
|
|
|
break;
|
|
|
|
case PROP_SUBTITLE_ENCODING:
|
|
|
|
GST_SUBTITLE_OVERLAY_LOCK (self);
|
|
|
|
g_free (self->encoding);
|
|
|
|
self->encoding = g_value_dup_string (value);
|
|
|
|
if (self->renderer && _has_subtitle_encoding_property (self->renderer))
|
|
|
|
g_object_set (self->renderer, "subtitle-encoding", self->encoding,
|
|
|
|
NULL);
|
|
|
|
if (self->parser && _has_subtitle_encoding_property (self->parser))
|
|
|
|
g_object_set (self->parser, "subtitle-encoding", self->encoding, NULL);
|
2009-10-13 14:48:34 +00:00
|
|
|
GST_SUBTITLE_OVERLAY_UNLOCK (self);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_subtitle_overlay_class_init (GstSubtitleOverlayClass * klass)
|
|
|
|
{
|
|
|
|
GObjectClass *gobject_class = (GObjectClass *) klass;
|
|
|
|
GstElementClass *element_class = (GstElementClass *) klass;
|
2009-11-14 12:21:15 +00:00
|
|
|
GstBinClass *bin_class = (GstBinClass *) klass;
|
2009-10-13 14:48:34 +00:00
|
|
|
|
|
|
|
gobject_class->finalize = gst_subtitle_overlay_finalize;
|
|
|
|
gobject_class->set_property = gst_subtitle_overlay_set_property;
|
2009-11-07 20:09:53 +00:00
|
|
|
gobject_class->get_property = gst_subtitle_overlay_get_property;
|
|
|
|
|
|
|
|
g_object_class_install_property (gobject_class, PROP_SILENT,
|
|
|
|
g_param_spec_boolean ("silent",
|
|
|
|
"Silent",
|
|
|
|
"Whether to show subtitles", FALSE,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2009-10-13 14:48:34 +00:00
|
|
|
|
|
|
|
g_object_class_install_property (gobject_class, PROP_FONT_DESC,
|
|
|
|
g_param_spec_string ("font-desc",
|
|
|
|
"Subtitle font description",
|
|
|
|
"Pango font description of font "
|
|
|
|
"to be used for subtitle rendering", NULL,
|
2009-11-07 20:09:53 +00:00
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2009-10-13 14:48:34 +00:00
|
|
|
|
2010-02-21 18:52:45 +00:00
|
|
|
g_object_class_install_property (gobject_class, PROP_SUBTITLE_ENCODING,
|
|
|
|
g_param_spec_string ("subtitle-encoding", "subtitle encoding",
|
|
|
|
"Encoding to assume if input subtitles are not in UTF-8 encoding. "
|
|
|
|
"If not set, the GST_SUBTITLE_ENCODING environment variable will "
|
|
|
|
"be checked for an encoding to use. If that is not set either, "
|
|
|
|
"ISO-8859-15 will be assumed.", NULL,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
|
|
|
|
2011-04-19 09:35:53 +00:00
|
|
|
gst_element_class_add_pad_template (element_class,
|
|
|
|
gst_static_pad_template_get (&srctemplate));
|
|
|
|
|
|
|
|
gst_element_class_add_pad_template (element_class,
|
|
|
|
gst_static_pad_template_get (&video_sinktemplate));
|
|
|
|
gst_element_class_add_pad_template (element_class,
|
|
|
|
gst_static_pad_template_get (&subtitle_sinktemplate));
|
|
|
|
|
|
|
|
gst_element_class_set_details_simple (element_class, "Subtitle Overlay",
|
|
|
|
"Video/Overlay/Subtitle",
|
|
|
|
"Overlays a video stream with subtitles",
|
|
|
|
"Sebastian Dröge <sebastian.droege@collabora.co.uk>");
|
|
|
|
|
2009-10-13 14:48:34 +00:00
|
|
|
element_class->change_state =
|
|
|
|
GST_DEBUG_FUNCPTR (gst_subtitle_overlay_change_state);
|
2009-11-14 12:21:15 +00:00
|
|
|
|
|
|
|
bin_class->handle_message =
|
|
|
|
GST_DEBUG_FUNCPTR (gst_subtitle_overlay_handle_message);
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstFlowReturn
|
|
|
|
gst_subtitle_overlay_src_proxy_chain (GstPad * proxypad, GstBuffer * buffer)
|
|
|
|
{
|
|
|
|
GstPad *ghostpad;
|
|
|
|
GstSubtitleOverlay *self;
|
|
|
|
GstFlowReturn ret;
|
|
|
|
|
|
|
|
ghostpad = GST_PAD_CAST (gst_pad_get_parent (proxypad));
|
|
|
|
if (G_UNLIKELY (!ghostpad)) {
|
|
|
|
gst_buffer_unref (buffer);
|
|
|
|
return GST_FLOW_ERROR;
|
|
|
|
}
|
|
|
|
self = GST_SUBTITLE_OVERLAY_CAST (gst_pad_get_parent (ghostpad));
|
|
|
|
if (G_UNLIKELY (!self || self->srcpad != ghostpad)) {
|
|
|
|
gst_buffer_unref (buffer);
|
|
|
|
gst_object_unref (ghostpad);
|
|
|
|
return GST_FLOW_ERROR;
|
|
|
|
}
|
|
|
|
|
2011-05-06 15:01:53 +00:00
|
|
|
ret = gst_proxy_pad_chain_default (proxypad, buffer);
|
2009-11-14 12:21:15 +00:00
|
|
|
|
|
|
|
if (IS_VIDEO_CHAIN_IGNORE_ERROR (ret)) {
|
|
|
|
GST_ERROR_OBJECT (self, "Downstream chain error: %s",
|
|
|
|
gst_flow_get_name (ret));
|
|
|
|
self->downstream_chain_error = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
gst_object_unref (self);
|
|
|
|
gst_object_unref (ghostpad);
|
|
|
|
|
|
|
|
return ret;
|
2009-10-13 14:48:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_subtitle_overlay_src_proxy_event (GstPad * proxypad, GstEvent * event)
|
|
|
|
{
|
|
|
|
GstPad *ghostpad = NULL;
|
|
|
|
GstSubtitleOverlay *self = NULL;
|
|
|
|
gboolean ret = FALSE;
|
|
|
|
const GstStructure *s;
|
|
|
|
|
|
|
|
ghostpad = GST_PAD_CAST (gst_pad_get_parent (proxypad));
|
|
|
|
if (G_UNLIKELY (!ghostpad))
|
|
|
|
goto out;
|
|
|
|
self = GST_SUBTITLE_OVERLAY_CAST (gst_pad_get_parent (ghostpad));
|
|
|
|
if (G_UNLIKELY (!self || self->srcpad != ghostpad))
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
s = gst_event_get_structure (event);
|
|
|
|
if (s && gst_structure_id_has_field (s, _subtitle_overlay_event_marker_id)) {
|
|
|
|
GST_DEBUG_OBJECT (ghostpad, "Dropping event with marker: %" GST_PTR_FORMAT,
|
2011-05-10 09:54:30 +00:00
|
|
|
event);
|
2009-10-13 14:48:34 +00:00
|
|
|
gst_event_unref (event);
|
|
|
|
event = NULL;
|
|
|
|
ret = TRUE;
|
|
|
|
} else {
|
2011-05-06 15:01:53 +00:00
|
|
|
ret = gst_proxy_pad_event_default (proxypad, event);
|
2009-10-13 14:48:34 +00:00
|
|
|
event = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
|
|
|
if (event)
|
|
|
|
gst_event_unref (event);
|
|
|
|
if (self)
|
|
|
|
gst_object_unref (self);
|
|
|
|
if (ghostpad)
|
|
|
|
gst_object_unref (ghostpad);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2009-11-07 10:46:49 +00:00
|
|
|
static gboolean
|
2011-06-03 11:12:31 +00:00
|
|
|
gst_subtitle_overlay_video_sink_setcaps (GstSubtitleOverlay * self,
|
|
|
|
GstCaps * caps)
|
2009-11-07 10:46:49 +00:00
|
|
|
{
|
|
|
|
gboolean ret = TRUE;
|
|
|
|
gint fps_n, fps_d;
|
|
|
|
|
2011-06-03 11:12:31 +00:00
|
|
|
GST_DEBUG_OBJECT (self, "Setting caps: %" GST_PTR_FORMAT, caps);
|
2009-11-07 10:46:49 +00:00
|
|
|
|
|
|
|
if (!gst_video_parse_caps_framerate (caps, &fps_n, &fps_d)) {
|
2011-06-03 11:12:31 +00:00
|
|
|
GST_ERROR_OBJECT (self, "Failed to parse framerate from caps");
|
2009-11-07 10:46:49 +00:00
|
|
|
ret = FALSE;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_SUBTITLE_OVERLAY_LOCK (self);
|
|
|
|
if (self->fps_n != fps_n || self->fps_d != fps_d) {
|
|
|
|
GST_DEBUG_OBJECT (self, "New video fps: %d/%d", fps_n, fps_d);
|
|
|
|
self->fps_n = fps_n;
|
|
|
|
self->fps_d = fps_d;
|
|
|
|
gst_subtitle_overlay_set_fps (self);
|
|
|
|
}
|
|
|
|
GST_SUBTITLE_OVERLAY_UNLOCK (self);
|
|
|
|
|
|
|
|
out:
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2009-10-13 14:48:34 +00:00
|
|
|
static gboolean
|
|
|
|
gst_subtitle_overlay_video_sink_event (GstPad * pad, GstEvent * event)
|
|
|
|
{
|
|
|
|
GstSubtitleOverlay *self = GST_SUBTITLE_OVERLAY (gst_pad_get_parent (pad));
|
|
|
|
gboolean ret;
|
2009-11-07 20:10:27 +00:00
|
|
|
|
2011-06-03 11:12:31 +00:00
|
|
|
switch (GST_EVENT_TYPE (event)) {
|
|
|
|
case GST_EVENT_FLUSH_STOP:
|
|
|
|
{
|
|
|
|
GST_DEBUG_OBJECT (pad,
|
|
|
|
"Resetting video segment because of flush-stop event");
|
|
|
|
gst_segment_init (&self->video_segment, GST_FORMAT_UNDEFINED);
|
|
|
|
self->fps_n = self->fps_d = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case GST_EVENT_CAPS:
|
|
|
|
{
|
|
|
|
GstCaps *caps;
|
|
|
|
|
|
|
|
gst_event_parse_caps (event, &caps);
|
|
|
|
ret = gst_subtitle_overlay_video_sink_setcaps (self, caps);
|
|
|
|
if (!ret)
|
|
|
|
goto done;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
break;
|
2009-11-07 20:10:27 +00:00
|
|
|
}
|
|
|
|
|
2011-05-06 15:01:53 +00:00
|
|
|
ret = gst_proxy_pad_event_default (pad, gst_event_ref (event));
|
2009-10-13 14:48:34 +00:00
|
|
|
|
2011-05-16 11:48:11 +00:00
|
|
|
if (GST_EVENT_TYPE (event) == GST_EVENT_SEGMENT) {
|
|
|
|
GST_DEBUG_OBJECT (pad, "segment event: %" GST_PTR_FORMAT, event);
|
2011-05-18 15:23:18 +00:00
|
|
|
gst_event_copy_segment (event, &self->video_segment);
|
2009-10-13 14:48:34 +00:00
|
|
|
|
2011-06-03 11:12:31 +00:00
|
|
|
if (self->video_segment.format != GST_FORMAT_TIME)
|
|
|
|
goto invalid_format;
|
2009-10-13 14:48:34 +00:00
|
|
|
}
|
|
|
|
|
2011-06-03 11:12:31 +00:00
|
|
|
done:
|
2009-11-07 20:10:27 +00:00
|
|
|
gst_event_unref (event);
|
2009-10-13 14:48:34 +00:00
|
|
|
gst_object_unref (self);
|
2011-06-03 11:12:31 +00:00
|
|
|
|
2009-10-13 14:48:34 +00:00
|
|
|
return ret;
|
2011-06-03 11:12:31 +00:00
|
|
|
|
|
|
|
/* ERRORS */
|
|
|
|
invalid_format:
|
|
|
|
{
|
|
|
|
GST_ERROR_OBJECT (pad, "Newsegment event in non-time format: %s",
|
|
|
|
gst_format_get_name (self->video_segment.format));
|
|
|
|
ret = FALSE;
|
|
|
|
goto done;
|
|
|
|
}
|
2009-10-13 14:48:34 +00:00
|
|
|
}
|
|
|
|
|
2009-11-14 12:21:15 +00:00
|
|
|
static GstFlowReturn
|
|
|
|
gst_subtitle_overlay_video_sink_chain (GstPad * pad, GstBuffer * buffer)
|
|
|
|
{
|
|
|
|
GstSubtitleOverlay *self = GST_SUBTITLE_OVERLAY (GST_PAD_PARENT (pad));
|
2011-05-06 15:01:53 +00:00
|
|
|
GstFlowReturn ret = gst_proxy_pad_chain_default (pad, buffer);
|
2009-11-14 12:21:15 +00:00
|
|
|
|
|
|
|
if (G_UNLIKELY (self->downstream_chain_error) || self->passthrough_identity) {
|
|
|
|
return ret;
|
|
|
|
} else if (IS_VIDEO_CHAIN_IGNORE_ERROR (ret)) {
|
|
|
|
GST_DEBUG_OBJECT (self, "Subtitle renderer produced chain error: %s",
|
|
|
|
gst_flow_get_name (ret));
|
|
|
|
GST_SUBTITLE_OVERLAY_LOCK (self);
|
|
|
|
self->subtitle_error = TRUE;
|
2011-06-01 17:34:54 +00:00
|
|
|
block_subtitle (self);
|
|
|
|
block_video (self);
|
2009-11-14 12:21:15 +00:00
|
|
|
GST_SUBTITLE_OVERLAY_UNLOCK (self);
|
|
|
|
|
|
|
|
return GST_FLOW_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstFlowReturn
|
|
|
|
gst_subtitle_overlay_subtitle_sink_chain (GstPad * pad, GstBuffer * buffer)
|
|
|
|
{
|
|
|
|
GstSubtitleOverlay *self = GST_SUBTITLE_OVERLAY (GST_PAD_PARENT (pad));
|
|
|
|
|
|
|
|
if (self->subtitle_error) {
|
|
|
|
gst_buffer_unref (buffer);
|
|
|
|
return GST_FLOW_OK;
|
|
|
|
} else {
|
2011-05-06 15:01:53 +00:00
|
|
|
GstFlowReturn ret = gst_proxy_pad_chain_default (pad, buffer);
|
2009-11-14 12:21:15 +00:00
|
|
|
|
|
|
|
if (IS_SUBTITLE_CHAIN_IGNORE_ERROR (ret)) {
|
|
|
|
GST_DEBUG_OBJECT (self, "Subtitle chain error: %s",
|
|
|
|
gst_flow_get_name (ret));
|
|
|
|
GST_SUBTITLE_OVERLAY_LOCK (self);
|
|
|
|
self->subtitle_error = TRUE;
|
2011-06-01 17:34:54 +00:00
|
|
|
block_subtitle (self);
|
|
|
|
block_video (self);
|
2009-11-14 12:21:15 +00:00
|
|
|
GST_SUBTITLE_OVERLAY_UNLOCK (self);
|
|
|
|
|
|
|
|
return GST_FLOW_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-13 14:48:34 +00:00
|
|
|
static GstCaps *
|
2011-05-16 09:33:12 +00:00
|
|
|
gst_subtitle_overlay_subtitle_sink_getcaps (GstPad * pad, GstCaps * filter)
|
2009-10-13 14:48:34 +00:00
|
|
|
{
|
|
|
|
GstSubtitleOverlay *self = GST_SUBTITLE_OVERLAY (gst_pad_get_parent (pad));
|
|
|
|
GstCaps *ret;
|
|
|
|
|
2009-11-10 17:27:15 +00:00
|
|
|
g_mutex_lock (self->factories_lock);
|
|
|
|
if (G_UNLIKELY (!gst_subtitle_overlay_update_factory_list (self)))
|
2009-10-13 14:48:34 +00:00
|
|
|
ret = GST_CAPS_NONE;
|
2011-05-16 09:33:12 +00:00
|
|
|
else if (filter)
|
|
|
|
ret =
|
|
|
|
gst_caps_intersect_full (filter, self->factory_caps,
|
|
|
|
GST_CAPS_INTERSECT_FIRST);
|
2009-10-13 14:48:34 +00:00
|
|
|
else
|
|
|
|
ret = gst_caps_ref (self->factory_caps);
|
2009-11-10 17:27:15 +00:00
|
|
|
g_mutex_unlock (self->factories_lock);
|
2009-10-13 14:48:34 +00:00
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (pad, "Returning subtitle caps %" GST_PTR_FORMAT, ret);
|
|
|
|
|
|
|
|
gst_object_unref (self);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_subtitle_overlay_subtitle_sink_acceptcaps (GstPad * pad, GstCaps * caps)
|
|
|
|
{
|
2011-05-16 09:33:12 +00:00
|
|
|
GstCaps *othercaps = gst_subtitle_overlay_subtitle_sink_getcaps (pad, NULL);
|
2009-10-13 14:48:34 +00:00
|
|
|
gboolean ret = gst_caps_can_intersect (caps, othercaps);
|
|
|
|
|
|
|
|
gst_caps_unref (othercaps);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2011-06-03 11:12:31 +00:00
|
|
|
gst_subtitle_overlay_subtitle_sink_setcaps (GstSubtitleOverlay * self,
|
|
|
|
GstCaps * caps)
|
2009-10-13 14:48:34 +00:00
|
|
|
{
|
|
|
|
gboolean ret = TRUE;
|
|
|
|
GstPad *target = NULL;;
|
|
|
|
|
2011-06-03 11:12:31 +00:00
|
|
|
GST_DEBUG_OBJECT (self, "Setting caps: %" GST_PTR_FORMAT, caps);
|
2009-10-13 14:48:34 +00:00
|
|
|
|
|
|
|
target =
|
|
|
|
gst_ghost_pad_get_target (GST_GHOST_PAD_CAST (self->subtitle_sinkpad));
|
|
|
|
|
|
|
|
GST_SUBTITLE_OVERLAY_LOCK (self);
|
|
|
|
gst_caps_replace (&self->subcaps, caps);
|
|
|
|
|
|
|
|
if (target && gst_pad_accept_caps (target, caps)) {
|
2011-06-03 11:12:31 +00:00
|
|
|
GST_DEBUG_OBJECT (self, "Target accepts caps");
|
2009-10-13 14:48:34 +00:00
|
|
|
GST_SUBTITLE_OVERLAY_UNLOCK (self);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2011-06-03 11:12:31 +00:00
|
|
|
GST_DEBUG_OBJECT (self, "Target did not accept caps");
|
2009-10-13 14:48:34 +00:00
|
|
|
|
2009-11-14 12:21:15 +00:00
|
|
|
self->subtitle_error = FALSE;
|
2011-06-01 17:34:54 +00:00
|
|
|
block_subtitle (self);
|
|
|
|
block_video (self);
|
2009-10-13 14:48:34 +00:00
|
|
|
GST_SUBTITLE_OVERLAY_UNLOCK (self);
|
|
|
|
|
|
|
|
out:
|
|
|
|
if (target)
|
|
|
|
gst_object_unref (target);
|
2011-06-03 11:12:31 +00:00
|
|
|
|
2009-10-13 14:48:34 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstPadLinkReturn
|
|
|
|
gst_subtitle_overlay_subtitle_sink_link (GstPad * pad, GstPad * peer)
|
|
|
|
{
|
|
|
|
GstSubtitleOverlay *self = GST_SUBTITLE_OVERLAY (gst_pad_get_parent (pad));
|
|
|
|
GstPadLinkReturn ret;
|
|
|
|
GstCaps *caps;
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (pad, "Linking pad to peer %" GST_PTR_FORMAT, peer);
|
|
|
|
|
|
|
|
caps = gst_pad_get_negotiated_caps (peer);
|
|
|
|
if (!caps) {
|
2011-05-16 09:33:12 +00:00
|
|
|
caps = gst_pad_get_caps (peer, NULL);
|
2009-10-13 14:48:34 +00:00
|
|
|
if (!gst_caps_is_fixed (caps)) {
|
|
|
|
gst_caps_unref (caps);
|
|
|
|
caps = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (caps) {
|
|
|
|
GST_SUBTITLE_OVERLAY_LOCK (self);
|
|
|
|
GST_DEBUG_OBJECT (pad, "Have fixed peer caps: %" GST_PTR_FORMAT, caps);
|
|
|
|
gst_caps_replace (&self->subcaps, caps);
|
|
|
|
|
2009-11-14 12:21:15 +00:00
|
|
|
self->subtitle_error = FALSE;
|
|
|
|
|
2011-06-01 17:34:54 +00:00
|
|
|
block_subtitle (self);
|
|
|
|
block_video (self);
|
2009-10-13 14:48:34 +00:00
|
|
|
GST_SUBTITLE_OVERLAY_UNLOCK (self);
|
|
|
|
gst_caps_unref (caps);
|
|
|
|
}
|
|
|
|
|
2011-05-06 15:01:53 +00:00
|
|
|
ret = gst_ghost_pad_link_default (pad, peer);
|
2009-10-13 14:48:34 +00:00
|
|
|
|
|
|
|
gst_object_unref (self);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_subtitle_overlay_subtitle_sink_unlink (GstPad * pad)
|
|
|
|
{
|
|
|
|
GstSubtitleOverlay *self =
|
|
|
|
GST_SUBTITLE_OVERLAY (gst_object_ref (GST_PAD_PARENT (pad)));
|
|
|
|
|
|
|
|
/* FIXME: Can't use gst_pad_get_parent() here because this is called with
|
|
|
|
* the object lock from state changes
|
|
|
|
*/
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (pad, "Pad unlinking");
|
|
|
|
gst_caps_replace (&self->subcaps, NULL);
|
|
|
|
|
2011-05-06 15:01:53 +00:00
|
|
|
gst_ghost_pad_unlink_default (pad);
|
2009-10-13 14:48:34 +00:00
|
|
|
|
|
|
|
GST_SUBTITLE_OVERLAY_LOCK (self);
|
2009-11-14 12:21:15 +00:00
|
|
|
self->subtitle_error = FALSE;
|
|
|
|
|
2011-06-01 17:34:54 +00:00
|
|
|
block_subtitle (self);
|
|
|
|
block_video (self);
|
2009-10-13 14:48:34 +00:00
|
|
|
GST_SUBTITLE_OVERLAY_UNLOCK (self);
|
|
|
|
|
|
|
|
gst_object_unref (self);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_subtitle_overlay_subtitle_sink_event (GstPad * pad, GstEvent * event)
|
|
|
|
{
|
|
|
|
GstSubtitleOverlay *self = GST_SUBTITLE_OVERLAY (gst_pad_get_parent (pad));
|
|
|
|
gboolean ret;
|
|
|
|
|
2009-11-07 20:10:27 +00:00
|
|
|
if (GST_EVENT_TYPE (event) == GST_EVENT_CUSTOM_DOWNSTREAM_OOB &&
|
2011-05-10 09:54:30 +00:00
|
|
|
gst_event_has_name (event, "subtitleoverlay-flush-subtitle")) {
|
2009-10-13 14:48:34 +00:00
|
|
|
GST_DEBUG_OBJECT (pad, "Custom subtitle flush event");
|
|
|
|
GST_SUBTITLE_OVERLAY_LOCK (self);
|
|
|
|
self->subtitle_flush = TRUE;
|
2009-11-14 12:21:15 +00:00
|
|
|
self->subtitle_error = FALSE;
|
2011-06-01 17:34:54 +00:00
|
|
|
block_subtitle (self);
|
|
|
|
block_video (self);
|
2009-10-13 14:48:34 +00:00
|
|
|
GST_SUBTITLE_OVERLAY_UNLOCK (self);
|
|
|
|
|
|
|
|
gst_event_unref (event);
|
|
|
|
event = NULL;
|
|
|
|
ret = TRUE;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (GST_EVENT_TYPE (event)) {
|
2011-06-03 11:12:31 +00:00
|
|
|
case GST_EVENT_CAPS:
|
|
|
|
{
|
|
|
|
GstCaps *caps;
|
|
|
|
|
|
|
|
gst_event_parse_caps (event, &caps);
|
|
|
|
ret = gst_subtitle_overlay_subtitle_sink_setcaps (self, caps);
|
|
|
|
if (!ret)
|
|
|
|
goto out;
|
|
|
|
break;
|
|
|
|
}
|
2009-10-13 14:48:34 +00:00
|
|
|
case GST_EVENT_FLUSH_STOP:
|
|
|
|
GST_DEBUG_OBJECT (pad,
|
|
|
|
"Resetting subtitle segment because of flush-stop");
|
|
|
|
gst_segment_init (&self->subtitle_segment, GST_FORMAT_UNDEFINED);
|
|
|
|
/* fall through */
|
|
|
|
case GST_EVENT_FLUSH_START:
|
2011-05-16 11:48:11 +00:00
|
|
|
case GST_EVENT_SEGMENT:
|
2009-10-13 14:48:34 +00:00
|
|
|
case GST_EVENT_EOS:
|
2011-05-10 09:54:30 +00:00
|
|
|
{
|
|
|
|
GstStructure *structure;
|
|
|
|
|
2009-10-13 14:48:34 +00:00
|
|
|
/* Add our event marker to make sure no events from here go ever outside
|
|
|
|
* the element, they're only interesting for our internal elements */
|
2011-05-10 09:54:30 +00:00
|
|
|
event = GST_EVENT_CAST (gst_event_make_writable (event));
|
|
|
|
structure = gst_event_writable_structure (event);
|
|
|
|
|
|
|
|
gst_structure_id_set (structure, _subtitle_overlay_event_marker_id,
|
2009-10-13 14:48:34 +00:00
|
|
|
G_TYPE_BOOLEAN, TRUE, NULL);
|
|
|
|
break;
|
2011-05-10 09:54:30 +00:00
|
|
|
}
|
2009-10-13 14:48:34 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2011-05-06 15:01:53 +00:00
|
|
|
ret = gst_proxy_pad_event_default (pad, gst_event_ref (event));
|
2009-11-07 20:10:27 +00:00
|
|
|
|
2011-05-16 11:48:11 +00:00
|
|
|
if (GST_EVENT_TYPE (event) == GST_EVENT_SEGMENT) {
|
|
|
|
GST_DEBUG_OBJECT (pad, "segment event: %" GST_PTR_FORMAT, event);
|
2011-05-18 15:23:18 +00:00
|
|
|
gst_event_copy_segment (event, &self->subtitle_segment);
|
2009-11-07 20:10:27 +00:00
|
|
|
GST_DEBUG_OBJECT (pad, "New subtitle segment: %" GST_SEGMENT_FORMAT,
|
|
|
|
&self->subtitle_segment);
|
|
|
|
}
|
|
|
|
gst_event_unref (event);
|
2009-10-13 14:48:34 +00:00
|
|
|
|
|
|
|
out:
|
|
|
|
gst_object_unref (self);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-04-19 09:35:53 +00:00
|
|
|
gst_subtitle_overlay_init (GstSubtitleOverlay * self)
|
2009-10-13 14:48:34 +00:00
|
|
|
{
|
|
|
|
GstPadTemplate *templ;
|
|
|
|
GstPad *proxypad = NULL;
|
|
|
|
|
|
|
|
self->lock = g_mutex_new ();
|
2009-11-10 17:27:15 +00:00
|
|
|
self->factories_lock = g_mutex_new ();
|
2009-10-13 14:48:34 +00:00
|
|
|
|
|
|
|
templ = gst_static_pad_template_get (&srctemplate);
|
|
|
|
self->srcpad = gst_ghost_pad_new_no_target_from_template ("src", templ);
|
2011-05-06 15:01:53 +00:00
|
|
|
|
|
|
|
proxypad =
|
|
|
|
GST_PAD_CAST (gst_proxy_pad_get_internal (GST_PROXY_PAD (self->srcpad)));
|
|
|
|
gst_pad_set_event_function (proxypad,
|
|
|
|
GST_DEBUG_FUNCPTR (gst_subtitle_overlay_src_proxy_event));
|
|
|
|
gst_pad_set_chain_function (proxypad,
|
|
|
|
GST_DEBUG_FUNCPTR (gst_subtitle_overlay_src_proxy_chain));
|
|
|
|
gst_object_unref (proxypad);
|
2009-10-13 14:48:34 +00:00
|
|
|
|
|
|
|
gst_element_add_pad (GST_ELEMENT_CAST (self), self->srcpad);
|
|
|
|
|
|
|
|
templ = gst_static_pad_template_get (&video_sinktemplate);
|
|
|
|
self->video_sinkpad =
|
|
|
|
gst_ghost_pad_new_no_target_from_template ("video_sink", templ);
|
|
|
|
gst_pad_set_event_function (self->video_sinkpad,
|
|
|
|
GST_DEBUG_FUNCPTR (gst_subtitle_overlay_video_sink_event));
|
2009-11-14 12:21:15 +00:00
|
|
|
gst_pad_set_chain_function (self->video_sinkpad,
|
|
|
|
GST_DEBUG_FUNCPTR (gst_subtitle_overlay_video_sink_chain));
|
2009-10-13 14:48:34 +00:00
|
|
|
|
2011-05-06 15:01:53 +00:00
|
|
|
proxypad =
|
|
|
|
GST_PAD_CAST (gst_proxy_pad_get_internal (GST_PROXY_PAD
|
|
|
|
(self->video_sinkpad)));
|
2009-10-13 14:48:34 +00:00
|
|
|
self->video_block_pad = proxypad;
|
2011-05-16 15:06:22 +00:00
|
|
|
|
2009-10-13 14:48:34 +00:00
|
|
|
gst_element_add_pad (GST_ELEMENT_CAST (self), self->video_sinkpad);
|
|
|
|
|
|
|
|
templ = gst_static_pad_template_get (&subtitle_sinktemplate);
|
|
|
|
self->subtitle_sinkpad =
|
|
|
|
gst_ghost_pad_new_no_target_from_template ("subtitle_sink", templ);
|
|
|
|
gst_pad_set_link_function (self->subtitle_sinkpad,
|
|
|
|
GST_DEBUG_FUNCPTR (gst_subtitle_overlay_subtitle_sink_link));
|
|
|
|
gst_pad_set_unlink_function (self->subtitle_sinkpad,
|
|
|
|
GST_DEBUG_FUNCPTR (gst_subtitle_overlay_subtitle_sink_unlink));
|
|
|
|
gst_pad_set_event_function (self->subtitle_sinkpad,
|
|
|
|
GST_DEBUG_FUNCPTR (gst_subtitle_overlay_subtitle_sink_event));
|
2009-11-14 12:21:15 +00:00
|
|
|
gst_pad_set_chain_function (self->subtitle_sinkpad,
|
|
|
|
GST_DEBUG_FUNCPTR (gst_subtitle_overlay_subtitle_sink_chain));
|
2009-10-13 14:48:34 +00:00
|
|
|
gst_pad_set_getcaps_function (self->subtitle_sinkpad,
|
|
|
|
GST_DEBUG_FUNCPTR (gst_subtitle_overlay_subtitle_sink_getcaps));
|
|
|
|
gst_pad_set_acceptcaps_function (self->subtitle_sinkpad,
|
|
|
|
GST_DEBUG_FUNCPTR (gst_subtitle_overlay_subtitle_sink_acceptcaps));
|
|
|
|
|
2011-05-06 15:01:53 +00:00
|
|
|
proxypad =
|
|
|
|
GST_PAD_CAST (gst_proxy_pad_get_internal (GST_PROXY_PAD
|
|
|
|
(self->subtitle_sinkpad)));
|
2009-10-13 14:48:34 +00:00
|
|
|
self->subtitle_block_pad = proxypad;
|
|
|
|
|
|
|
|
gst_element_add_pad (GST_ELEMENT_CAST (self), self->subtitle_sinkpad);
|
2009-11-07 10:46:49 +00:00
|
|
|
|
|
|
|
self->fps_n = 0;
|
|
|
|
self->fps_d = 0;
|
2009-10-13 14:48:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
gst_subtitle_overlay_plugin_init (GstPlugin * plugin)
|
|
|
|
{
|
|
|
|
GST_DEBUG_CATEGORY_INIT (subtitle_overlay_debug, "subtitleoverlay", 0,
|
|
|
|
"Subtitle Overlay");
|
|
|
|
|
|
|
|
_subtitle_overlay_event_marker_id =
|
|
|
|
g_quark_from_static_string ("gst-subtitle-overlay-event-marker");
|
|
|
|
|
|
|
|
return gst_element_register (plugin, "subtitleoverlay", GST_RANK_NONE,
|
|
|
|
GST_TYPE_SUBTITLE_OVERLAY);
|
|
|
|
}
|