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:
702e5d1
)
pad: Minor code cleanup
author
Sebastian Dröge
<sebastian@centricular.com>
Wed, 22 Jan 2014 10:10:01 +0000
(11:10 +0100)
committer
Sebastian Dröge
<sebastian@centricular.com>
Wed, 22 Jan 2014 10:10:01 +0000
(11:10 +0100)
!check_sticky()==GST_FLOW_OK is a bit confusing, compared to
check_sticky()!=GST_FLOW_OK.
gst/gstpad.c
patch
|
blob
|
history
diff --git
a/gst/gstpad.c
b/gst/gstpad.c
index
509f682
..
4b9f2a7
100644
(file)
--- a/
gst/gstpad.c
+++ b/
gst/gstpad.c
@@
-3635,7
+3635,7
@@
gst_pad_peer_query (GstPad * pad, GstQuery * query)
if (GST_PAD_IS_SRC (pad) && serialized) {
/* all serialized queries on the srcpad trigger push of
* sticky events */
- if (
!check_sticky (pad, NULL) =
= GST_FLOW_OK)
+ if (
check_sticky (pad, NULL) !
= GST_FLOW_OK)
goto sticky_failed;
}