gst/gstpad.c: Add check that the pad on which the push is performed is not a get-based pad (#150546).

Original commit message from CVS:
* gst/gstpad.c: (gst_pad_push):
Add check that the pad on which the push is performed is not a
get-based pad (#150546).
This commit is contained in:
Ronald S. Bultje 2005-01-29 13:38:44 +00:00
parent 5adea0d2f9
commit d8e67497f9
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,9 @@
2005-01-29 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
* gst/gstpad.c: (gst_pad_push):
Add check that the pad on which the push is performed is not a
get-based pad (#150546).
2005-01-28 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
* gst/elements/gsttypefindelement.c:

View file

@ -3242,6 +3242,7 @@ gst_pad_push (GstPad * pad, GstData * data)
g_return_if_fail (GST_IS_PAD (pad));
g_return_if_fail (GST_PAD_DIRECTION (pad) == GST_PAD_SRC);
g_return_if_fail (GST_RPAD_GETFUNC (pad) == NULL);
g_return_if_fail (data != NULL);
DEBUG_DATA (pad, data, "gst_pad_push");