mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-04 16:39:39 +00:00
dfb5b3011f
Original commit message from CVS: * ext/libvisual/visual.c: (gst_vis_src_negotiate), (gst_visual_chain), (gst_visual_change_state): update to work also with libvisual 0.4 API * tools/gst-launch-ext.1.in: * tools/gst-visualise.1.in: remove references to old man-pages * tests/examples/seek/seek.c: (main): add real meadi-buttons, add tool-tips for the seek-options, arrange seek options in a table |
||
---|---|---|
.. | ||
.gitignore | ||
filterstamp.sh | ||
gst-launch-ext.1.in | ||
gst-visualise-m.m | ||
gst-visualise.1.in | ||
Makefile.am | ||
README.filterstamp |
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.