2006-08-20 13:06:44 +00:00
|
|
|
<plugin>
|
2006-08-27 17:14:06 +00:00
|
|
|
<name>audiofx</name>
|
2006-08-20 13:06:44 +00:00
|
|
|
<description>Audio effects plugin</description>
|
2006-08-27 17:14:06 +00:00
|
|
|
<filename>../../gst/audiofx/.libs/libgstaudiofx.so</filename>
|
|
|
|
<basename>libgstaudiofx.so</basename>
|
2007-06-19 10:24:55 +00:00
|
|
|
<version>0.10.6</version>
|
2006-08-20 13:06:44 +00:00
|
|
|
<license>LGPL</license>
|
|
|
|
<source>gst-plugins-good</source>
|
|
|
|
<package>GStreamer</package>
|
|
|
|
<origin>http://gstreamer.net/</origin>
|
|
|
|
<elements>
|
gst/audiofx/: Add new element "audioamplify". This allows scaling of raw audio samples, similar to the "volume" eleme...
Original commit message from CVS:
reviewed by: Stefan Kost <ensonic@users.sf.net>
* gst/audiofx/Makefile.am:
* gst/audiofx/audioamplify.c:
(gst_audio_amplify_clipping_method_get_type),
(gst_audio_amplify_base_init), (gst_audio_amplify_class_init),
(gst_audio_amplify_init), (gst_audio_amplify_set_process_function),
(gst_audio_amplify_set_property), (gst_audio_amplify_get_property),
(gst_audio_amplify_set_caps),
(gst_audio_amplify_transform_int_clip),
(gst_audio_amplify_transform_int_wrap_negative),
(gst_audio_amplify_transform_int_wrap_positive),
(gst_audio_amplify_transform_float_clip),
(gst_audio_amplify_transform_float_wrap_negative),
(gst_audio_amplify_transform_float_wrap_positive),
(gst_audio_amplify_transform_ip):
* gst/audiofx/audioamplify.h:
* gst/audiofx/audiofx.c: (plugin_init):
Add new element "audioamplify". This allows scaling of raw audio
samples, similar to the "volume" element, but provides different modes
for clipping and allows unlimited amplification. It's mainly targeted
for creative sound design and not as a replacement of the "volume"
element. Fixes #397162
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-good-plugins-docs.sgml:
* docs/plugins/gst-plugins-good-plugins-sections.txt:
* docs/plugins/gst-plugins-good-plugins.args:
* docs/plugins/inspect/plugin-audiofx.xml:
Add docs for audioamplify and integrate them into the build system
* tests/check/Makefile.am:
* tests/check/elements/audioamplify.c: (setup_amplify),
(cleanup_amplify), (GST_START_TEST), (amplify_suite), (main):
Add fairly extensive unit test suite for audioamplify
2007-01-24 12:41:03 +00:00
|
|
|
<element>
|
|
|
|
<name>audioamplify</name>
|
|
|
|
<longname>AudioAmplify</longname>
|
|
|
|
<class>Filter/Effect/Audio</class>
|
|
|
|
<description>Amplifies an audio stream by a given factor</description>
|
|
|
|
<author>Sebastian Dröge <slomo@circular-chaos.org></author>
|
|
|
|
</element>
|
gst/audiofx/: Add new audiodynamic element which can act as a compressor or expander. Supported are hard-knee and sof...
Original commit message from CVS:
reviewed by: Stefan Kost <ensonic@users.sf.net>
* gst/audiofx/Makefile.am:
* gst/audiofx/audiodynamic.c:
(gst_audio_dynamic_characteristics_get_type),
(gst_audio_dynamic_mode_get_type),
(gst_audio_dynamic_set_process_function),
(gst_audio_dynamic_base_init), (gst_audio_dynamic_class_init),
(gst_audio_dynamic_init), (gst_audio_dynamic_set_property),
(gst_audio_dynamic_get_property), (gst_audio_dynamic_setup),
(gst_audio_dynamic_transform_hard_knee_compressor_int),
(gst_audio_dynamic_transform_hard_knee_compressor_float),
(gst_audio_dynamic_transform_soft_knee_compressor_int),
(gst_audio_dynamic_transform_soft_knee_compressor_float),
(gst_audio_dynamic_transform_hard_knee_expander_int),
(gst_audio_dynamic_transform_hard_knee_expander_float),
(gst_audio_dynamic_transform_soft_knee_expander_int),
(gst_audio_dynamic_transform_soft_knee_expander_float),
(gst_audio_dynamic_transform_ip):
* gst/audiofx/audiodynamic.h:
* gst/audiofx/audiofx.c: (plugin_init):
Add new audiodynamic element which can act as a compressor or
expander. Supported are hard-knee and soft-knee operation modes with
user-specified ratio and threshold.
Attack and release parameters are not yet implemented but will follow.
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-good-plugins-docs.sgml:
* docs/plugins/gst-plugins-good-plugins-sections.txt:
* docs/plugins/gst-plugins-good-plugins.args:
* docs/plugins/inspect/plugin-audiofx.xml:
Integrate audiodynamic into the docs.
* tests/check/Makefile.am:
* tests/check/elements/audiodynamic.c: (setup_dynamic),
(cleanup_dynamic), (GST_START_TEST), (dynamic_suite), (main):
Add unit test for audiodynamic.
2007-03-08 10:02:12 +00:00
|
|
|
<element>
|
|
|
|
<name>audiodynamic</name>
|
|
|
|
<longname>AudioDynamic</longname>
|
|
|
|
<class>Filter/Effect/Audio</class>
|
|
|
|
<description>Compressor and Expander</description>
|
|
|
|
<author>Sebastian Dröge <slomo@circular-chaos.org></author>
|
|
|
|
</element>
|
gst/audiofx/: Add new audiofx element "audioinvert". This element swaps the upper and lower half of samples and can b...
Original commit message from CVS:
reviewed by: Stefan Kost <ensonic@users.sf.net>
* gst/audiofx/Makefile.am:
* gst/audiofx/audiofx.c: (plugin_init):
* gst/audiofx/audioinvert.c: (gst_audio_invert_base_init),
(gst_audio_invert_class_init), (gst_audio_invert_init),
(gst_audio_invert_set_property), (gst_audio_invert_get_property),
(gst_audio_invert_set_caps), (gst_audio_invert_transform_int),
(gst_audio_invert_transform_float),
(gst_audio_invert_transform_ip):
* gst/audiofx/audioinvert.h:
Add new audiofx element "audioinvert". This element swaps the upper
and lower half of samples and can be used for example for a
wide-stereo effect. Fixes #396057
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-good-plugins-docs.sgml:
* docs/plugins/gst-plugins-good-plugins-sections.txt:
* docs/plugins/gst-plugins-good-plugins.args:
* docs/plugins/inspect/plugin-audiofx.xml:
Add docs for the audioinvert element and add them to the build system.
* tests/check/Makefile.am:
* tests/check/elements/audioinvert.c: (setup_invert),
(cleanup_invert), (GST_START_TEST), (invert_suite), (main):
Add unit test suite for the audioinvert element.
2007-01-23 18:16:09 +00:00
|
|
|
<element>
|
|
|
|
<name>audioinvert</name>
|
|
|
|
<longname>AudioInvert</longname>
|
|
|
|
<class>Filter/Effect/Audio</class>
|
|
|
|
<description>Swaps upper and lower half of audio samples</description>
|
|
|
|
<author>Sebastian Dröge <slomo@circular-chaos.org></author>
|
|
|
|
</element>
|
2006-08-20 13:06:44 +00:00
|
|
|
<element>
|
|
|
|
<name>audiopanorama</name>
|
|
|
|
<longname>AudioPanorama</longname>
|
|
|
|
<class>Filter/Effect/Audio</class>
|
|
|
|
<description>Positions audio streams in the stereo panorama</description>
|
|
|
|
<author>Stefan Kost <ensonic@users.sf.net></author>
|
|
|
|
</element>
|
|
|
|
</elements>
|
|
|
|
</plugin>
|