summaryrefslogtreecommitdiff
path: root/gst/gstparse.c
diff options
context:
space:
mode:
Diffstat (limited to 'gst/gstparse.c')
-rw-r--r--gst/gstparse.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/gst/gstparse.c b/gst/gstparse.c
index 80a169eb0c..839d08eaac 100644
--- a/gst/gstparse.c
+++ b/gst/gstparse.c
@@ -223,7 +223,7 @@ _gst_parse_escape (const gchar * str)
GstElement *
gst_parse_launchv (const gchar ** argv, GError ** error)
{
- return gst_parse_launchv_full (argv, NULL, 0, error);
+ return gst_parse_launchv_full (argv, NULL, GST_PARSE_FLAG_NONE, error);
}
/**
@@ -299,7 +299,8 @@ gst_parse_launchv_full (const gchar ** argv, GstParseContext * context,
GstElement *
gst_parse_launch (const gchar * pipeline_description, GError ** error)
{
- return gst_parse_launch_full (pipeline_description, NULL, 0, error);
+ return gst_parse_launch_full (pipeline_description, NULL, GST_PARSE_FLAG_NONE,
+ error);
}
/**