mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-31 03:29:50 +00:00
parse: use GST_PARSE_FLAG_NONE instead of 0
Fixes warning #188: enumerated type mixed with another type reported by ICC.
This commit is contained in:
parent
b26c5b99f2
commit
1db007e5bb
1 changed files with 3 additions and 2 deletions
|
@ -223,7 +223,7 @@ _gst_parse_escape (const gchar * str)
|
||||||
GstElement *
|
GstElement *
|
||||||
gst_parse_launchv (const gchar ** argv, GError ** error)
|
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 *
|
GstElement *
|
||||||
gst_parse_launch (const gchar * pipeline_description, GError ** error)
|
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);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue