gst/: Hi, I'm outdated. Please shoot me.
authorRonald S. Bultje <rbultje@ronald.bitfreak.net>
Thu, 19 May 2005 14:52:16 +0000 (14:52 +0000)
committerRonald S. Bultje <rbultje@ronald.bitfreak.net>
Thu, 19 May 2005 14:52:16 +0000 (14:52 +0000)
Original commit message from CVS:
* gst/Makefile.am:
* gst/ROADMAP:
Hi, I'm outdated. Please shoot me.

ChangeLog
gst/Makefile.am
gst/ROADMAP [deleted file]

index 9d3514c98a785b4e5164e276d455deaadf2a1bbb..68cebebb15a85702770a98d842f7b37a558eda04 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2005-05-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
+
+       * gst/Makefile.am:
+       * gst/ROADMAP:
+         Hi, I'm outdated. Please shoot me.
+
 2005-05-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
 
        * gst/gstpipeline.c: (gst_pipeline_send_event):
index 322c83e0604eb49e257d70102dd7d6cefaf0c8b8..02737b3a781a84c8836c3fa52aa3635587b2203c 100644 (file)
@@ -236,6 +236,3 @@ gstenumtypes.c: $(gst_headers)
        --vprod "      { @VALUENAME@, \"@VALUENAME@\", \"@valuenick@\" }," \
        --vtail "      { 0, NULL, NULL }\n    };\n    etype = g_@type@_register_static (\"@EnumName@\", values);\n  }\n  return etype;\n}\n" \
        $^ > gstenumtypes.c
-
-EXTRA_DIST = ROADMAP
-
diff --git a/gst/ROADMAP b/gst/ROADMAP
deleted file mode 100644 (file)
index 821f04a..0000000
+++ /dev/null
@@ -1,82 +0,0 @@
-***** Core *****
-gst.c
-       Contains initialization functions, etc.
-
-gstobject.c
-       The core object type for all of the Gst objects.  Handles
-       refcounting, parenting, etc.
-
-gsttype.c
-       Media type registry, keeping track of all registered media types.
-       Each type has an ID, MIME type, and a list of elements that will
-       either source or sink the type.
-
-gstmeta.c
-       Provides some common routines for dealing with metadata.
-
-gstplugin.c
-       Plugin operations, finding and loading shared library plugins, as
-       well as a simple plugin registry.
-
-[gstregistry.c]
-[      Maintains an on-disk cache of elements installed on system,
-       provides for full searching across various tidbits per plugin. ]
-
-***** Major object types *****
-gstelement.c
-       All pipeline elements are based on this type, which defines the
-       padlist, etc.
-
-gstelementfactory.c
-       A simple object used to generate new elements from plugins.
-
-gstbuffer.c
-       Defines the data buffers that are passed between elements.
-       Buffers have a type (see gsttype.c), flags, as well as data and
-       metadata information.  Metadata comes in list form.
-
-gstpad.c
-       The connective pads for elements.  Keeps track of media type and
-       direction.  Connects to a peer pad and swaps chain [and push]
-       function[s], allowing buffers to be passed with two function
-       calls.  Allows ghostparenting to bins.
-
-***** Element tpoes ***
-gstbin.c
-       Contains any number of elements, and can be operated on as an
-       element itself.  Contains a list of child elements, and enables
-       ghostparenting of pads.
-
-gstpipeline.c
-       Special case of gstbin that handles the whole pipeline concept.
-
-gstthread.c
-       Special case of gstbin that creates a thread and iterates in that,
-       allowing for fully threaded operation.
-
-gstsrc.c
-       Special case of gstelement that provides a generic push()
-       function.
-
-gstfilter.c
-       Special case of gstelement mostly for administrative purposes.
-
-gstsink.c
-       Special case of gstelement mostly for administrative purposes.
-
-gsttee.c
-       Pipe fitting.
-
-
-
-***** elements/ *****
-gstdisksrc.c
-gstfakefilter.c
-gstfakesink.c
-gstfakesrc.c
-gsthttpsrc.c
-gststdinsrc.c
-gstxa.c
-gstaudiosink.c
-
-etc.etc.etc. (FIXME!)