2001-06-01 16:57:14 +00:00
|
|
|
This is GStreamer, a framework for streaming media. The
|
2000-01-30 09:03:00 +00:00
|
|
|
fundamental design comes from the video pipeline at Oregon Graduate
|
2000-08-18 20:35:48 +00:00
|
|
|
Institute, as well as some ideas from DirectMedia. It's based on plug-ins
|
2000-01-30 09:03:00 +00:00
|
|
|
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.
|
2001-04-29 17:59:40 +00:00
|
|
|
|
|
|
|
|
|
|
|
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.
|
2001-05-30 15:16:58 +00:00
|
|
|
It is also fixed in versions of automake 1.4f and later.
|
|
|
|
Alternatively, ensure that you have at least 512Mb of memory on your system,
|
2001-04-29 17:59:40 +00:00
|
|
|
and be prepared to wait a little while when running automake (or autogen.sh).
|
|
|
|
|
2001-05-30 15:16:58 +00:00
|
|
|
The autogen.sh script will automatically detect an unpatched automake and give
|
|
|
|
a warning. It will also generate a patched version of automake in the top
|
|
|
|
build directory, which you can use by putting it in a directory in your $PATH
|
|
|
|
ahead of the unpatched version of automake.
|
2001-04-29 17:59:40 +00:00
|
|
|
|
|
|
|
@@ -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'))
|