summaryrefslogtreecommitdiffstats
path: root/gst/audiofx/audioecho.c
Commit message (Collapse)AuthorAgeFilesLines
* Update Since: tags in autodetect srcs and audioechoJan Schmidt2009-02-191-1/+1
|
* Use guint64 instead of guint for storing guint64Sebastian Dröge2009-02-031-3/+2
|
* Limit the delay by a new max-delay propertySebastian Dröge2009-01-281-41/+55
| | | | | | | | | | | | | Introduce a new max-delay property that can only be set before going to PLAYING or PAUSED. This is used to limit the maximum delay and is set to the current delay by default. Using this will make sure that we have enough data in our internal ringbuffer for the echo. With dynamic reallocation of the ringbuffer as used before silence could've been used as the echo directly after setting a new delay.
* Update and add documentation for plugins with no deps (gst).Stefan Kost2009-01-281-9/+7
| | | | Link to properties. Correct titles for examples. Document a few trivial cases. Keep lists in section file and docs/plugins/Makefile.am alphabetically ordered.
* Save some allocations if the echo delay is increased oftenSebastian Dröge2009-01-241-3/+11
| | | | | | | Save some allocations if the echo delay is increased often during playback by always allocating enough memory to hold data up to the next complete second, i.e. in the worst case allocate memory for one additional second.
* Add note that audioecho's reverb sounds metallicSebastian Dröge2009-01-241-1/+6
| | | | | | | | | Add a note to the docs that audioecho's reverb will sound metallic. This happens because for a real reverb filter additional filtering is necessary. Also note which values should be used for the delay property to get an echo effect.
* Rename audioreverb to audioecho. Fixes bug #568395.Sebastian Dröge2009-01-221-0/+367
The element can add an echo and a simple reverb effect to an audio stream but for a real reverb filter it would need some additional filtering to prevent a metallic-sounding result.