gstreamer/tools
Thomas Vander Stichele c98b59c7b8 updating tools generation
Original commit message from CVS:
updating tools generation
2004-03-10 12:35:44 +00:00
..
.gitignore add cvsignore so we don't have to look at generated gst-launch-ext file 2003-09-19 06:27:55 +00:00
filterstamp.sh pull good old filterstamp back out of the attic 2002-02-22 15:09:23 +00:00
gst-launch-ext-m.m updating tools generation 2004-03-10 12:35:44 +00:00
gst-launch-ext.1 Fix some weirdities in the man page, see #114060 2003-06-08 13:55:42 +00:00
gst-launch-ext.1.in updating tools generation 2004-03-10 12:35:44 +00:00
gst-launch-ext.in fix ogg pipeline in gst-launch-ext 2004-03-08 22:07:06 +00:00
gst-visualise goom takes stereo data 2003-03-04 22:22:56 +00:00
gst-visualise-m.m updating tools generation 2004-03-10 12:35:44 +00:00
gst-visualise.1.in updating tools generation 2004-03-10 12:35:44 +00:00
Makefile.am updating tools generation 2004-03-10 12:35:44 +00:00
Makefile.in updating tools generation 2004-03-10 12:35:44 +00:00
README.filterstamp pull good old filterstamp back out of the attic 2002-02-22 15:09:23 +00:00

filterstamp.sh is a script to copy a filter and change filenames and all
occurrences of the old name to the new name.

This is used for writing new audio filters. The best one to copy for now is
passthrough; it works on raw/audio int or float data.

If your new filter is called StereoPan, for example, then do this :

cd gst
../tools/filterstamp.sh Passthrough StereoPan
cd stereopan
make

(Please note the upper- and lower-case !)

You should also add a line to configure.ac to make sure the Makefiles are built
correctly. Just search for "passthrough" and add corresponding "stereopan" (or
whatever your plugin is) lines.

Register it, then try it out.  It shouldn't do anything !

Now edit the filter.func in the new directory; this file contains the body
of the main processing loop.