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:
253035d
)
caps: Fix gst_static_caps_get(GST_STATIC_CAPS_NONE)
author
Sebastian Dröge
<sebastian.droege@collabora.co.uk>
Mon, 25 Mar 2013 08:19:24 +0000
(09:19 +0100)
committer
Sebastian Dröge
<sebastian.droege@collabora.co.uk>
Mon, 25 Mar 2013 08:22:49 +0000
(09:22 +0100)
https://bugzilla.gnome.org/show_bug.cgi?id=696435
gst/gstcaps.c
patch
|
blob
|
history
diff --git
a/gst/gstcaps.c
b/gst/gstcaps.c
index
b17c929
..
3a64a0d
100644
(file)
--- a/
gst/gstcaps.c
+++ b/
gst/gstcaps.c
@@
-1807,7
+1807,7
@@
gst_caps_from_string_inplace (GstCaps * caps, const gchar * string)
GST_CAPS_FLAGS (caps) = GST_CAPS_FLAG_ANY;
return TRUE;
}
- if (strcmp ("EMPTY", string) == 0) {
+ if (strcmp ("EMPTY", string) == 0
|| strcmp ("NONE", string) == 0
) {
return TRUE;
}