From: Mark Nauwelaerts Date: Fri, 11 May 2012 08:58:45 +0000 (+0200) Subject: playbin2: default text element is now subtitleoverlay X-Git-Tag: 1.19.3~511^2~6480 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4ce453de9730a2fc490343e3678a369eb663ad18;p=platform%2Fupstream%2Fgstreamer.git playbin2: default text element is now subtitleoverlay ... and not so much textoverlay, though the former also uses the latter. --- diff --git a/gst/playback/gstplaybin2.c b/gst/playback/gstplaybin2.c index c997104..d35d29e 100644 --- a/gst/playback/gstplaybin2.c +++ b/gst/playback/gstplaybin2.c @@ -767,7 +767,7 @@ gst_play_bin_class_init (GstPlayBinClass * klass) GST_TYPE_ELEMENT, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); g_object_class_install_property (gobject_klass, PROP_TEXT_SINK, g_param_spec_object ("text-sink", "Text plugin", - "the text output element to use (NULL = default textoverlay)", + "the text output element to use (NULL = default subtitleoverlay)", GST_TYPE_ELEMENT, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); /** diff --git a/gst/playback/gstplaysink.c b/gst/playback/gstplaysink.c index 33ca446..bd66def 100644 --- a/gst/playback/gstplaysink.c +++ b/gst/playback/gstplaysink.c @@ -502,7 +502,7 @@ gst_play_sink_class_init (GstPlaySinkClass * klass) */ g_object_class_install_property (gobject_klass, PROP_TEXT_SINK, g_param_spec_object ("text-sink", "Text sink", - "the text output element to use (NULL = default textoverlay)", + "the text output element to use (NULL = default subtitleoverlay)", GST_TYPE_ELEMENT, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); /** @@ -1923,7 +1923,7 @@ gen_text_chain (GstPlaySink * playsink) if (textsinkpad == NULL) { GST_ELEMENT_WARNING (playsink, CORE, MISSING_PLUGIN, (_("Custom text sink element is not usable.")), - ("fallback to default textoverlay")); + ("fallback to default subtitleoverlay")); } }