projects
/
platform
/
upstream
/
gstreamer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1db007e
)
baseparse: put the arguments of g_return_val_if_fail in the proper order
author
Josep Torra
<n770galaxy@gmail.com>
Thu, 25 Aug 2011 21:06:56 +0000
(23:06 +0200)
committer
Josep Torra
<n770galaxy@gmail.com>
Fri, 26 Aug 2011 12:11:15 +0000
(14:11 +0200)
libs/gst/base/gstbaseparse.c
patch
|
blob
|
history
diff --git
a/libs/gst/base/gstbaseparse.c
b/libs/gst/base/gstbaseparse.c
index a5a2cd00bd982c9a3a2f16f9892eb68eefff51bf..d2c0da5bd32b7c6558e2c34b613a86e14f409801 100644
(file)
--- a/
libs/gst/base/gstbaseparse.c
+++ b/
libs/gst/base/gstbaseparse.c
@@
-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);