GStreamer multimedia framework
Go to file
Erik Walthinsen e4de736962 Merged from HEAD into INCSCHED on 200105251
Original commit message from CVS:
Merged from HEAD into INCSCHED on 200105251
2001-05-25 20:50:09 +00:00
components Merge from HEAD into INCSCHED1 at 200105231. 2001-05-24 00:46:45 +00:00
debian Merge from HEAD into INCSCHED1 at 200105231. 2001-05-24 00:46:45 +00:00
docs Merged from HEAD into INCSCHED on 200105251 2001-05-25 20:50:09 +00:00
editor Merge from HEAD into INCSCHED1 at 200105231. 2001-05-24 00:46:45 +00:00
examples Merge from HEAD into INCSCHED1 at 200105231. 2001-05-24 00:46:45 +00:00
gst Merged from HEAD into INCSCHED on 200105251 2001-05-25 20:50:09 +00:00
gstplay If the arg looks like a URI, gnomevfs is used, if gnomevfs is not found and the URI starts with file:/, disksrc is used. 2001-05-25 10:43:04 +00:00
include Merged HEAD from BRANCH-INCSCHED1-200104161 into BRANCH-INCSCHED1. 2001-04-16 21:43:28 +00:00
libs Merged from HEAD into INCSCHED on 200105251 2001-05-25 20:50:09 +00:00
plugins/elements Merged from HEAD into INCSCHED on 200105251 2001-05-25 20:50:09 +00:00
test Merged from HEAD into INCSCHED on 200105251 2001-05-25 20:50:09 +00:00
tests Merge from HEAD into INCSCHED1 at 200105231. 2001-05-24 00:46:45 +00:00
testsuite Added thread refcounting and module test case 2001-05-16 22:09:29 +00:00
tools Merge from HEAD into INCSCHED1 at 200105231. 2001-05-24 00:46:45 +00:00
.gitignore Added gstreamer-uninstalled.pc.in in prep for future changes to pkg-config. 2001-05-19 06:39:25 +00:00
acconfig.h Merge from HEAD into INCSCHED1 at 200105231. 2001-05-24 00:46:45 +00:00
acinclude.m4 Slight tweak: now I just need to send the modified version off to the alsa people. 2001-01-07 15:31:19 +00:00
AUTHORS Merge from HEAD into INCSCHED1 at 200105231. 2001-05-24 00:46:45 +00:00
autogen.sh Merged from HEAD into INCSCHED on 200105251 2001-05-25 20:50:09 +00:00
ChangeLog Updated ChangeLog :-) 2001-01-12 20:54:04 +00:00
configure.in Merge from HEAD into INCSCHED1 at 200105231. 2001-05-24 00:46:45 +00:00
configure.in.ac250 Merged from HEAD into INCSCHED on 200105251 2001-05-25 20:50:09 +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.1 Merged HEAD from BRANCH-INCSCHED1-200104161 into BRANCH-INCSCHED1. 2001-04-16 21:43:28 +00:00
gstreamer-config.in Merged HEAD from BRANCH-INCSCHED1-200104161 into BRANCH-INCSCHED1. 2001-04-16 21:43:28 +00:00
gstreamer-uninstalled.pc.in Added gstreamer-uninstalled.pc.in in prep for future changes to pkg-config. 2001-05-19 06:39:25 +00:00
gstreamer.m4 Merged HEAD from BRANCH-INCSCHED1-200104161 into BRANCH-INCSCHED1. 2001-04-16 21:43:28 +00:00
gstreamer.pc.in - fixed configure.in %VAR stuff 2001-05-01 21:41:40 +00:00
gstreamer.spec.in Merged HEAD from BRANCH-INCSCHED1-200104161 into BRANCH-INCSCHED1. 2001-04-16 21:43:28 +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 Added gstreamer-uninstalled.pc.in in prep for future changes to pkg-config. 2001-05-19 06:39:25 +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 Merge from HEAD into INCSCHED1 at 200105231. 2001-05-24 00:46:45 +00:00
REQUIREMENTS Merge from HEAD into INCSCHED1 at 200105231. 2001-05-24 00:46:45 +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.


Developer note:  When building from CVS sources, you will need to run
autogen.sh to generate the build system files.

Unfortunately, there is a bug in automake which causes it to use a large
amount of memory when generating plugins/Makefile.in.  The following patch,
which you may wish to apply to automake (version 1.4), fixes this problem.
Alternatively, ensure that you have at least 128Mb of memory on your system,
and be prepared to wait a little while when running automake (or autogen.sh).


@@ -2383,8 +2383,8 @@
 	# to all possible directories, and use it.  If DIST_SUBDIRS is
 	# defined, just use it.
 	local ($dist_subdir_name);
-	if (&variable_conditions ('SUBDIRS')
-	    || &variable_defined ('DIST_SUBDIRS'))
+	if (&variable_defined ('DIST_SUBDIRS')
+	    || &variable_conditions ('SUBDIRS'))
 	{
 	    $dist_subdir_name = 'DIST_SUBDIRS';
 	    if (! &variable_defined ('DIST_SUBDIRS'))


The automake developers have been notified of this problem, and supplied with
an equivalent patch against CVS head.