Changeset 3c5f3a24ced2212136529fb8637072070d5ca58f
- Timestamp:
- 06/28/08 11:37:26
(2 months ago)
- Author:
- Rémi Denis-Courmont <rdenis@simphalempin.com>
- git-committer:
- Rémi Denis-Courmont <rdenis@simphalempin.com> 1214645846 +0300
- git-parent:
[10eab32c8fa2c23467bb2efb3c9c30b077bc47fa]
- git-author:
- Rov Juvano <rovjuvano@users.sourceforge.net> 1214150967 -0400
- Message:
Add Scaletempo audio filter
Scaletempo maintains the audio pitch when playback rate != 1.0 (i.e.
no chipmunk effect). This fixes the pitch scaling caused by using the
resampler to handle playback rate.
Ported from GStreamer. Inspired by SoundTouch? library by Olli Parviainen.
Signed-off-by: Rémi Denis-Courmont <rdenis@simphalempin.com>
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| re6ea3dd |
r3c5f3a2 |
|
| 1217 | 1217 | VLC_ADD_PLUGIN([equalizer]) |
|---|
| 1218 | 1218 | VLC_ADD_PLUGIN([param_eq]) |
|---|
| | 1219 | VLC_ADD_PLUGIN([scaletempo]) |
|---|
| 1219 | 1220 | VLC_ADD_PLUGIN([converter_float]) |
|---|
| 1220 | 1221 | VLC_ADD_PLUGIN([a52tospdif]) |
|---|
| r5d6e797 |
r3c5f3a2 |
|
| 4 | 4 | SOURCES_audio_format = format.c |
|---|
| 5 | 5 | SOURCES_param_eq = param_eq.c |
|---|
| | 6 | SOURCES_scaletempo = scaletempo.c |
|---|