mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-30 12:49:40 +00:00
rtsp-media-factory: Don't create a pipeline for the media pipeline string
We're going to put a pipeline into a pipeline otherwise, which is not exactly ideal.
This commit is contained in:
parent
09e499387d
commit
708fd3c325
1 changed files with 3 additions and 1 deletions
|
@ -1414,7 +1414,9 @@ default_create_element (GstRTSPMediaFactory * factory, const GstRTSPUrl * url)
|
|||
goto no_launch;
|
||||
|
||||
/* parse the user provided launch line */
|
||||
element = gst_parse_launch (priv->launch, &error);
|
||||
element =
|
||||
gst_parse_launch_full (priv->launch, NULL, GST_PARSE_FLAG_PLACE_IN_BIN,
|
||||
&error);
|
||||
if (element == NULL)
|
||||
goto parse_error;
|
||||
|
||||
|
|
Loading…
Reference in a new issue