gstreamer/libs/gst/base
Andy Wingo a173768706 libs/gst/base/gstbasetransform.c (_GstBaseTransformPrivate): (gst_base_transform_init, gst_base_transform_sink_activa...
Original commit message from CVS:
2007-01-12  Andy Wingo  <wingo@pobox.com>

* libs/gst/base/gstbasetransform.c (_GstBaseTransformPrivate):
(gst_base_transform_init, gst_base_transform_sink_activate_push)
(gst_base_transform_src_activate_pull):
Track the activation mode.
(gst_base_transform_setcaps): In pull mode, when activating the
src pad, after activating the sink pad, activate the sink pad's
peer, as discussed in part-negotiation.txt.

* libs/gst/base/gstbasesrc.h:
* libs/gst/base/gstbasesrc.c (gst_base_src_fixate): Add fixate
vmethod, as in basesink.

* libs/gst/base/gstbasesink.h: Reformat docs, add fixate vmethod.

* libs/gst/base/gstbasesink.c (gst_base_sink_pad_setcaps): In pull
mode, first proxy the setcaps to the peer pad.
(gst_base_sink_pad_fixate): Add a fixate function that calls the
new fixate vmethod.
(gst_base_sink_default_activate_pull): Rename from
gst_base_sink_activate_pull.
(gst_base_sink_negotiate_pull): New function, performs negotiation
in pull mode before calling ::activate_pull().
(gst_base_sink_pad_activate_pull): Actually call the activate_pull
vmethod instead of the default implementation. I have no idea how
this worked before. Negotiate before calling activate_pull.
2007-01-12 15:56:00 +00:00
..
.gitignore moap ignore 2006-07-02 00:39:28 +00:00
gstadapter.c libs/gst/base/gstadapter.c: Fix format string to use all its arguments. 2006-11-10 10:50:19 +00:00
gstadapter.h Do some optimisation work in GstAdapter to avoid copies in more cases. 2006-11-09 14:37:38 +00:00
gstbasesink.c libs/gst/base/gstbasetransform.c (_GstBaseTransformPrivate): (gst_base_transform_init, gst_base_transform_sink_activa... 2007-01-12 15:56:00 +00:00
gstbasesink.h libs/gst/base/gstbasetransform.c (_GstBaseTransformPrivate): (gst_base_transform_init, gst_base_transform_sink_activa... 2007-01-12 15:56:00 +00:00
gstbasesrc.c libs/gst/base/gstbasetransform.c (_GstBaseTransformPrivate): (gst_base_transform_init, gst_base_transform_sink_activa... 2007-01-12 15:56:00 +00:00
gstbasesrc.h libs/gst/base/gstbasetransform.c (_GstBaseTransformPrivate): (gst_base_transform_init, gst_base_transform_sink_activa... 2007-01-12 15:56:00 +00:00
gstbasetransform.c libs/gst/base/gstbasetransform.c (_GstBaseTransformPrivate): (gst_base_transform_init, gst_base_transform_sink_activa... 2007-01-12 15:56:00 +00:00
gstbasetransform.h docs/libs/gstreamer-libs-sections.txt: make sure GstBaseTransformClass shows up in the docs 2006-05-03 16:45:11 +00:00
gstcollectpads.c libs/gst/base/gstcollectpads.c: unref data at the end when we are done with the pad. 2007-01-09 12:34:45 +00:00
gstcollectpads.h libs/gst/base/gstcollectpads.*: Add refcounting to the collectpads data so we can track when it's safe to free the da... 2006-12-16 15:17:54 +00:00
gstdataqueue.c libs/gst/base/: New GstDataQueue object for threadsafe queueing. Most useful for elements that need some queueing fun... 2006-11-28 12:07:06 +00:00
gstdataqueue.h libs/gst/base/: New GstDataQueue object for threadsafe queueing. Most useful for elements that need some queueing fun... 2006-11-28 12:07:06 +00:00
gstpushsrc.c libs/gst/base/gstpushsrc.c: Add some more docs here and there. 2006-07-05 18:20:58 +00:00
gstpushsrc.h Fix broken GObject macros 2006-04-08 18:05:16 +00:00
gsttypefindhelper.c libs/gst/base/gsttypefindhelper.c: Fix off-by-one bug that would only allow peeks of N-1 bytes from the start even if... 2006-05-24 17:11:06 +00:00
gsttypefindhelper.h New API: gst_type_find_helper_get_range() (#333042). 2006-03-02 13:45:32 +00:00
Makefile.am libs/gst/base/: New GstDataQueue object for threadsafe queueing. Most useful for elements that need some queueing fun... 2006-11-28 12:07:06 +00:00
README add short/long description docs to base classes add pushsrc to the docs remove consolidated doc fragments 2005-08-03 13:30:18 +00:00

Base classes
------------

GstBaseSink
  FIXME: not much point making it operate in pull mode as a generic
  base class I guess...