gstreamer/tools
Steve Baker 6c10726435 this script runs gst-inspect on all built elements and checks for warnings or bad exit codes.
Original commit message from CVS:
this script runs gst-inspect on all built elements and checks for warnings or bad exit codes.

It requires a gst-inspect to be in your PATH. more checking is probably needed for valid gst-inspect output.
The output format of gst-inspect will be changed slightly to make parsing the output possible.
2002-04-14 09:55:20 +00:00
..
filterstamp.sh pull good old filterstamp back out of the attic 2002-02-22 15:09:23 +00:00
gst-inspect-check this script runs gst-inspect on all built elements and checks for warnings or bad exit codes. 2002-04-14 09:55:20 +00:00
gst-launch-ext spec fixes gst-launch-ext additions trying to fix up ieeetest but failed function collision in avifile dir 2002-04-13 00:46:23 +00:00
gst-launch-ext.1 Fix a small typo in gst-launch-ext. 2002-03-02 16:24:00 +00:00
gst-visualise Use stereo2mono plugin for scopes which require mono input. 2002-03-03 17:27:41 +00:00
gst-visualise.1 Fix a small typo in gst-launch-ext. 2002-03-02 16:24:00 +00:00
Makefile.am Fix a small typo in gst-launch-ext. 2002-03-02 16:24:00 +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.