mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-09 00:45:56 +00:00
gst/gstutils.c: No, an element is not a pad.
Original commit message from CVS: * gst/gstutils.c: (gst_element_query_position): No, an element is not a pad.
This commit is contained in:
parent
e805d1b78b
commit
e5f4d65005
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2005-05-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||
|
||||
* gst/gstutils.c: (gst_element_query_position):
|
||||
No, an element is not a pad.
|
||||
|
||||
2005-05-12 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||
|
||||
* gst/gstbin.c: (gst_bin_add_func), (cb_parent_unset),
|
||||
|
|
|
@ -1170,7 +1170,7 @@ gst_element_query_position (GstElement * element, GstFormat * format,
|
|||
GstQuery *query;
|
||||
gboolean ret;
|
||||
|
||||
g_return_val_if_fail (GST_IS_PAD (element), FALSE);
|
||||
g_return_val_if_fail (GST_IS_ELEMENT (element), FALSE);
|
||||
g_return_val_if_fail (format != NULL, FALSE);
|
||||
|
||||
query = gst_query_new_position (*format);
|
||||
|
|
Loading…
Reference in a new issue