Changeset 13b03068c18b87aa201b53492d64244757875332
- Timestamp:
- 13/02/06 23:44:24
(3 years ago)
- Author:
- Sigmund Augdal Helberg <sigmunau@videolan.org>
- git-committer:
- Sigmund Augdal Helberg <sigmunau@videolan.org> 1139870664 +0000
- git-parent:
[cb386f1fe9825ae1677f4e5ddc8ffb2099be3b25]
- git-author:
- Sigmund Augdal Helberg <sigmunau@videolan.org> 1139870664 +0000
- Message:
all: parametric equalizer by Antti Huovilainen (adapted for vlc by me)
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rfdb9560 |
r13b0306 |
|
| 524 | 524 | ]) |
|---|
| 525 | 525 | AC_CHECK_LIB(m,pow,[ |
|---|
| 526 | | VLC_ADD_LDFLAGS([ffmpeg ffmpegaltivec stream_out_transrate i420_rgb faad twolame equalizer vlc freetype mpc],[-lm]) |
|---|
| | 526 | VLC_ADD_LDFLAGS([ffmpeg ffmpegaltivec stream_out_transrate i420_rgb faad twolame equalizer param_eq vlc freetype mpc],[-lm]) |
|---|
| 527 | 527 | ]) |
|---|
| 528 | 528 | AC_CHECK_LIB(m,sqrt,[ |
|---|
| … | … | |
| 1070 | 1070 | VLC_ADD_PLUGINS([aout_file linear_resampler bandlimited_resampler]) |
|---|
| 1071 | 1071 | VLC_ADD_PLUGINS([float32_mixer spdif_mixer simple_channel_mixer]) |
|---|
| 1072 | | VLC_ADD_PLUGINS([dolby_surround_decoder headphone_channel_mixer normvol equalizer]) |
|---|
| | 1072 | VLC_ADD_PLUGINS([dolby_surround_decoder headphone_channel_mixer normvol equalizer param_eq]) |
|---|
| 1073 | 1073 | VLC_ADD_PLUGINS([fixed32tofloat32 float32tos16 float32tos8 float32tou16 float32tou8 a52tospdif dtstospdif s16tofloat32 s16tofloat32swab s8tofloat32 u8tofloat32 audio_format]) |
|---|
| 1074 | 1074 | fi |
|---|
| ra846831 |
r13b0306 |
|
| 2 | 2 | SOURCES_normvol = normvol.c |
|---|
| 3 | 3 | SOURCES_audio_format = format.c |
|---|
| | 4 | SOURCES_param_eq = param_eq.c |
|---|