mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-22 07:08:23 +00:00
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:
parent
5adea0d2f9
commit
d8e67497f9
2 changed files with 7 additions and 0 deletions
|
@ -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:
|
||||
|
|
|
@ -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");
|
||||
|
|
Loading…
Reference in a new issue