summaryrefslogtreecommitdiffstats
path: root/tools/README.filterstamp
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2002-02-22 15:09:23 +0000
committerAndy Wingo <wingo@pobox.com>2002-02-22 15:09:23 +0000
commit9672e6094305208e6951c4f2e6aa875986e3c979 (patch)
tree53add5c55cdaf0295bd720f5cf388b9ada53ba74 /tools/README.filterstamp
parentc06adb6eac86b4249f9c8873425df983180334c7 (diff)
pull good old filterstamp back out of the attic
Original commit message from CVS: pull good old filterstamp back out of the attic
Diffstat (limited to 'tools/README.filterstamp')
-rw-r--r--tools/README.filterstamp24
1 files changed, 24 insertions, 0 deletions
diff --git a/tools/README.filterstamp b/tools/README.filterstamp
new file mode 100644
index 00000000..a7b3d21e
--- /dev/null
+++ b/tools/README.filterstamp
@@ -0,0 +1,24 @@
+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.
+