mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-20 07:16:55 +00:00
playsink: Fix subpicture overlay when deinterlacing disabled.
Fix a bug when reconfiguring the playsink where the subpicture stream is broken by attempting to connect it through streamsynchroniser and second time.
This commit is contained in:
parent
79020ae3f6
commit
ee303c441d
1 changed files with 16 additions and 14 deletions
|
@ -2489,6 +2489,7 @@ gst_play_sink_reconfigure (GstPlaySink * playsink)
|
||||||
NULL);
|
NULL);
|
||||||
add_chain (GST_PLAY_CHAIN (playsink->textchain), TRUE);
|
add_chain (GST_PLAY_CHAIN (playsink->textchain), TRUE);
|
||||||
|
|
||||||
|
if (!playsink->text_sinkpad_stream_synchronizer) {
|
||||||
playsink->text_sinkpad_stream_synchronizer =
|
playsink->text_sinkpad_stream_synchronizer =
|
||||||
gst_element_get_request_pad (GST_ELEMENT_CAST
|
gst_element_get_request_pad (GST_ELEMENT_CAST
|
||||||
(playsink->stream_synchronizer), "sink_%d");
|
(playsink->stream_synchronizer), "sink_%d");
|
||||||
|
@ -2504,6 +2505,7 @@ gst_play_sink_reconfigure (GstPlaySink * playsink)
|
||||||
playsink->text_sinkpad_stream_synchronizer);
|
playsink->text_sinkpad_stream_synchronizer);
|
||||||
gst_pad_link_full (playsink->text_srcpad_stream_synchronizer,
|
gst_pad_link_full (playsink->text_srcpad_stream_synchronizer,
|
||||||
playsink->textchain->textsinkpad, GST_PAD_LINK_CHECK_NOTHING);
|
playsink->textchain->textsinkpad, GST_PAD_LINK_CHECK_NOTHING);
|
||||||
|
}
|
||||||
|
|
||||||
if (need_vis) {
|
if (need_vis) {
|
||||||
GstPad *srcpad;
|
GstPad *srcpad;
|
||||||
|
|
Loading…
Reference in a new issue