mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
gst/gstpad.c: Reverting my change according to what we agreed with david.
Original commit message from CVS: 2004-02-17 Julien MOUTTE <julien@moutte.net> * gst/gstpad.c: (gst_pad_try_set_caps): Reverting my change according to what we agreed with david. * gst/gstpad.h: adding GST_PAD_IS_NEGOTIATING macro.
This commit is contained in:
parent
2f3be462a6
commit
6aeaab9643
3 changed files with 8 additions and 5 deletions
|
@ -1,3 +1,9 @@
|
|||
2004-02-17 Julien MOUTTE <julien@moutte.net>
|
||||
|
||||
* gst/gstpad.c: (gst_pad_try_set_caps): Reverting my change according
|
||||
to what we agreed with david.
|
||||
* gst/gstpad.h: adding GST_PAD_IS_NEGOTIATING macro.
|
||||
|
||||
2004-02-17 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* po/nl.po: update translation
|
||||
|
|
|
@ -1408,10 +1408,7 @@ gst_pad_try_set_caps (GstPad *pad, const GstCaps *caps)
|
|||
|
||||
g_return_val_if_fail (pad != NULL, GST_PAD_LINK_REFUSED);
|
||||
g_return_val_if_fail (GST_IS_REAL_PAD (pad), GST_PAD_LINK_REFUSED);
|
||||
|
||||
/* If the pad is negotiating we refuse this try */
|
||||
if (GST_FLAG_IS_SET (pad, GST_PAD_NEGOTIATING))
|
||||
return GST_PAD_LINK_REFUSED;
|
||||
g_return_val_if_fail (!GST_PAD_IS_NEGOTIATING (pad), GST_PAD_LINK_REFUSED);
|
||||
|
||||
/* setting non-fixed caps on a pad is not allowed */
|
||||
if (!gst_caps_is_fixed (caps)) {
|
||||
|
|
|
@ -279,6 +279,7 @@ struct _GstGhostPadClass {
|
|||
/* Some check functions (unused?) */
|
||||
#define GST_PAD_IS_LINKED(pad) (GST_PAD_PEER(pad) != NULL)
|
||||
#define GST_PAD_IS_ACTIVE(pad) (!GST_FLAG_IS_SET(GST_PAD_REALIZE(pad), GST_PAD_DISABLED))
|
||||
#define GST_PAD_IS_NEGOTIATING(pad) (GST_FLAG_IS_SET (pad, GST_PAD_NEGOTIATING))
|
||||
#define GST_PAD_IS_USABLE(pad) (GST_PAD_IS_LINKED (pad) && \
|
||||
GST_PAD_IS_ACTIVE(pad) && GST_PAD_IS_ACTIVE(GST_PAD_PEER (pad)))
|
||||
#define GST_PAD_CAN_PULL(pad) (GST_IS_REAL_PAD(pad) && GST_REAL_PAD(pad)->gethandler != NULL)
|
||||
|
@ -516,4 +517,3 @@ G_END_DECLS
|
|||
|
||||
|
||||
#endif /* __GST_PAD_H__ */
|
||||
|
||||
|
|
Loading…
Reference in a new issue