mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-19 05:45:58 +00:00
gst/playback/gstplaybin2.c: Error out with a missing-plugin error when the input-selector was not found.
Original commit message from CVS: * gst/playback/gstplaybin2.c: (pad_added_cb): Error out with a missing-plugin error when the input-selector was not found. * gst/playback/gstplaysink.c: (gst_play_sink_reconfigure): Indentation.
This commit is contained in:
parent
1bfdc87815
commit
172e478fd1
3 changed files with 18 additions and 4 deletions
|
@ -1,3 +1,12 @@
|
|||
2008-12-10 Wim Taymans <wim.taymans@collabora.co.uk>
|
||||
|
||||
* gst/playback/gstplaybin2.c: (pad_added_cb):
|
||||
Error out with a missing-plugin error when the input-selector was not
|
||||
found.
|
||||
|
||||
* gst/playback/gstplaysink.c: (gst_play_sink_reconfigure):
|
||||
Indentation.
|
||||
|
||||
2008-12-10 Wim Taymans <wim.taymans@collabora.co.uk>
|
||||
|
||||
* gst/playback/gstplaysink.c: (gst_play_sink_class_init),
|
||||
|
|
|
@ -1767,9 +1767,14 @@ unknown_type:
|
|||
}
|
||||
no_selector:
|
||||
{
|
||||
GST_ERROR_OBJECT (playbin, "could not create selector for pad %s:%s",
|
||||
GST_DEBUG_PAD_NAME (pad));
|
||||
GST_SOURCE_GROUP_UNLOCK (group);
|
||||
|
||||
gst_element_post_message (GST_ELEMENT_CAST (playbin),
|
||||
gst_missing_element_message_new (GST_ELEMENT_CAST (playbin),
|
||||
"input-selector"));
|
||||
GST_ELEMENT_ERROR (playbin, CORE, MISSING_PLUGIN,
|
||||
(_("Missing element '%s' - check your GStreamer installation."),
|
||||
"input-selector"), (NULL));
|
||||
return;
|
||||
}
|
||||
link_failed:
|
||||
|
|
|
@ -1306,8 +1306,8 @@ gst_play_sink_reconfigure (GstPlaySink * playsink)
|
|||
GST_DEBUG_OBJECT (playsink, "adding visualisation");
|
||||
|
||||
srcpad =
|
||||
gst_element_get_static_pad (GST_ELEMENT_CAST (playsink->vischain->chain.
|
||||
bin), "src");
|
||||
gst_element_get_static_pad (GST_ELEMENT_CAST (playsink->vischain->
|
||||
chain.bin), "src");
|
||||
add_chain (GST_PLAY_CHAIN (playsink->vischain), TRUE);
|
||||
gst_pad_link (playsink->audio_tee_vissrc, playsink->vischain->sinkpad);
|
||||
gst_pad_link (srcpad, playsink->videochain->sinkpad);
|
||||
|
|
Loading…
Reference in a new issue