mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
baseparse: put the arguments of g_return_val_if_fail in the proper order
This commit is contained in:
parent
1db007e5bb
commit
ab3c6173b3
1 changed files with 3 additions and 3 deletions
|
@ -3289,9 +3289,9 @@ gst_base_parse_find_frame (GstBaseParse * parse, gint64 * pos,
|
|||
GstBuffer *buf = NULL;
|
||||
GstBaseParseFrame frame;
|
||||
|
||||
g_return_val_if_fail (GST_FLOW_ERROR, pos != NULL);
|
||||
g_return_val_if_fail (GST_FLOW_ERROR, time != NULL);
|
||||
g_return_val_if_fail (GST_FLOW_ERROR, duration != NULL);
|
||||
g_return_val_if_fail (pos != NULL, GST_FLOW_ERROR);
|
||||
g_return_val_if_fail (time != NULL, GST_FLOW_ERROR);
|
||||
g_return_val_if_fail (duration != NULL, GST_FLOW_ERROR);
|
||||
|
||||
klass = GST_BASE_PARSE_GET_CLASS (parse);
|
||||
|
||||
|
|
Loading…
Reference in a new issue