GStreamer multimedia framework
Go to file
Erik Walthinsen 04c360e39f Changed the way things are scheduled, especially sources. A Src used to have a push() function, and optionally a pus...
Original commit message from CVS:
Changed the way things are scheduled, especially sources.  A Src used to
have a push() function, and optionally a pushregion() to deal with async
reads, etc.  That whole thing has gone away, in favor of providing a
pull() function for the output (Src) pad instead, ala chain functions.
This makes constructing cothreaded schedules out of non-loop elements
somewhat easier.  Basically there was always a question as to which pad
was being dealt with.  In the pullregion case, cothread-specific data was
used to try to pass the region struct to the right place, which is a slow
hack.  And in general, the push function severely limited the kind of
tricks that could be played when there's more than one output pad, such as
a multi-out file reader with async capabilities on each pad independently.

This changes the way cothread scheduling occurs.  Instead of the hack to
deal with Src's by calling their push() function (or optionally the
pushregion(), in certain cases), we now are working towards a general
mechanism where pads are the only thing that are dealt with directly.

An optimization was made in the process of doing this: the loopfunction
actually run as the outer [stack] frame of the cothread is now set more
intelligently in create_plan() based on what kind of element it is.  We
now have:

loopfunc_wrapper: used for loop-based elements, it simply calls the
loopfunc in a loop, paying attention to COTHREAD_STOPPING (see
below).  It currently does other, soon to be depracated, stuff.

pullsrc_wrapper: wraps a Src that's not loop-based (since your options
are now loop- or pull-based)

There will be a couple more to deal with other cases, such as Connections
and chain-based elements.  The general idea is that it's a lot more
efficient to make the decisions once in create_plan than to keep doing
this huge if/else chain in the wrapper.  Just choose the right wrapper up
front.  It'll be most apparent performance-wise in the case of whichever
element context is switched to first for each iteration, since the whole
wrapper setup is done for every iteration.

The tricky part is that there is now a bit of overloading of the function
pointers in a pad.  The current meanings (possibly to change a bit more
soon) are:

chainfunc: as always, chainfunc pointer is mirrored between peer pads
(this may change, and the chain func may end up in pushfunc)
pushfunc: SrcPad: gst_pad_pushfunc_proxy, cothread_switch to peer
SinkPad: none (may take over chainfunc, see below) pullfunc:
SrcPad: Src or Connection's function to construct buffers
SinkPad: gst_pad_pullfunc_proxy, cothread_switch to peer

There are a number of issues remaining with the scheduling, not the least
of which is the fact that Connections are still dealt with the old way,
with _push() functions and such.  I'm trying to figure out a way to unify
the system so it makes sense.  Following the scheduling system is hard
enough, trying to change it is murder.


Another useful scheduling addition, mentioned above, is COTHREAD_STOPPING.
It's an element flag that's used to signal whatever code is running in
cothread context that it should be finishing up and exiting soon.  An
example of this is in plugins/cobin/spindentity.c.  All the loops should
now be composed of do/while loops, rather than while(1) loops:

do {
buf = gst_pad_pull(spindentity->sinkpad);
gst_pad_push(spindentity->srcpad,buf);
} while (!GST_ELEMENT_IS_COTHREAD_STOPPING(element));

The reason for this is that COTHREAD_STOPPING may be set before the above
loop ever gets started.  It wouldn't do for the body of the loop to never
once get called, that would simply stall the pipeline. Note that only the
core library code is ever responsible for setting and unsetting this flag.
All elements have to do is respond to it by cleanly exiting the loop and
the function holding it.

This is needed primarily to allow iterations to occur properly.
Basically, there's a single entry point in the cothread scheduling loop,
gst_bin_iterate_func() simply switches to this cothread.  If the element
in this context is allowed to loop infinitely, nothing would even switch
back to the context from which the iterate() was originally called.  This
is a bit of a problem.  The solution is for there to be an implicit switch
back to the originating context.  Now, even I'm not sure exactly how this
works, but if the cothread that's switched to actually returns, execution
returns back to the calling context, i.e. iterate_func().

COTHREAD_STOPPING is therefore set just before switching into this
(currently randomly chosen) context, on the assumption that it will return
promptly after finishing its duties.  The burden of clearing the flag
falls to the various wrapper functions provided by the Bin code, thus
element writers don't have to worry about doing that at all (and simply
shouldn't).


Related changes:
All the sources in elements/ have been changed to reflect the new system.


FIXMEs:
1) gstpipeline.c calls gst_src_push at some point, dunno why, it's
commented out now.
2) any other sources, including vcdsrc, dvdsrc, and v4lsrc will break
badly and need to be modified to work as pull-based sources.
2000-12-04 10:52:30 +00:00
components/bonobo-gstmediaplay Reworked AC3 decoder. No seeking yet but at least we do not need ac3parse anymore. 2000-11-20 19:04:32 +00:00
docs First pass at an outline for the Filter Writer's Guide. Mostly complete, though the structure needs some work. Just... 2000-12-02 10:07:50 +00:00
editor Removed the hardcoded pipeline setup is gstplay in favor of the autoplugging features. Still in a rought shape... 2000-10-12 19:41:30 +00:00
examples Some code cleanup 2000-11-01 22:11:48 +00:00
gst Changed the way things are scheduled, especially sources. A Src used to have a push() function, and optionally a pus... 2000-12-04 10:52:30 +00:00
gstplay Something was wrong with SSE initialisation in mpeg2dec 2000-11-20 22:05:30 +00:00
include I'm too lazy to comment this 2000-11-04 18:55:01 +00:00
libs Added seeking to the avi decoder by implementing pull_region. 2000-11-06 00:15:51 +00:00
plugins/elements Changed the way things are scheduled, especially sources. A Src used to have a push() function, and optionally a pus... 2000-12-04 10:52:30 +00:00
test Remove cothreads.[ch] from tests/cothreads/ and replace then with a rule in the Makefile.am to generate symlinks to t... 2000-12-03 15:02:24 +00:00
tests More test cases. 2000-12-03 20:15:24 +00:00
tools Changes to gstreamer-config to include gtk+ libs manual changes: queues, threads, programs gsteditor does not crash a... 2000-09-09 16:36:10 +00:00
.gitignore Fix on x86 architectures - was just checking for 386, D'oh. 2000-09-15 23:04:31 +00:00
acconfig.h Changes made to the DEBUG system. New header file gstdebug.h holds the stuff to keep it out of gst.h's hair. DEBUG ... 2000-12-04 09:35:08 +00:00
AUTHORS Patch from Chris Emerson for PPC. cothreads stuff was causing segfaults, because the stack needs to be initialised w... 2000-09-21 00:57:09 +00:00
autogen.sh Fix compile problem due to DEBUG being redefined in libs/getbits/gstgetbits.h. Also fix several small typos in the d... 2000-09-18 22:19:57 +00:00
ChangeLog initial checkin 2000-01-30 09:03:00 +00:00
configure.in Changes made to the DEBUG system. New header file gstdebug.h holds the stuff to keep it out of gst.h's hair. DEBUG ... 2000-12-04 09:35:08 +00:00
COPYING initial checkin 2000-01-30 09:03:00 +00:00
COPYING.LIB initial checkin 2000-01-30 09:03:00 +00:00
gstreamer-config.in A first attempt to fix the queues in a cothreaded pipeline. 2000-09-22 23:35:14 +00:00
gstreamer.m4 A bunch more changes to clean up build/make dist issues, as well as a spec file, -config file, .m4, etc. Next step... 2000-01-31 06:46:18 +00:00
gstreamer.spec.in More incremental updates. I can now successfully produce an rpm simply by typing ./autogen.sh;make rpm. This is g... 2000-01-31 09:43:08 +00:00
INSTALL initial checkin 2000-01-30 09:03:00 +00:00
install-sh initial checkin 2000-01-30 09:03:00 +00:00
LICENSE Adding explicit license information, since quite a large number of source files don't have the LGPL header. This is ... 2000-08-05 03:53:00 +00:00
Makefile.am Don't compile editor if havn't got libglade-gnome. 2000-10-06 02:38:11 +00:00
missing initial checkin 2000-01-30 09:03:00 +00:00
mkinstalldirs initial checkin 2000-01-30 09:03:00 +00:00
NEWS initial checkin 2000-01-30 09:03:00 +00:00
README Various fixes for the build/install problems update to the docs/manual. Added a simple helloworld example. 2000-08-18 20:35:48 +00:00
stamp.h.in initial checkin 2000-01-30 09:03:00 +00:00

This is gnome-streamer, a framework for streaming media in GNOME.  The
fundamental design comes from the video pipeline at Oregon Graduate
Institute, as well as some ideas from DirectMedia.  It's based on plug-ins
that will provide the various codec and other functionality.  The
interface hopefully is generic enough for various companies (ahem, Apple)
to release binary codecs for Linux, until such time as they get a clue and
release the source.