Changeset d81d5e5fcee94d98880b89ca9c539070af0a6150
- Timestamp:
- 11/26/06 19:59:52
(2 years ago)
- Author:
- Clément Stenac <zorglub@videolan.org>
- git-committer:
- Clément Stenac <zorglub@videolan.org> 1164567592 +0000
- git-parent:
[1c808907903f9539e0469c1289dd50fae5885f5d]
- git-author:
- Clément Stenac <zorglub@videolan.org> 1164567592 +0000
- Message:
Merge all fixed-point and floating-point audio format converters
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rd3fe7f2 |
rd81d5e5 |
|
| 1109 | 1109 | VLC_ADD_PLUGINS([cvdsub svcdsub spudec subsdec dvbsub mpeg_audio lpcm a52 dts cinepak flac]) |
|---|
| 1110 | 1110 | VLC_ADD_PLUGINS([deinterlace invert adjust transform wave ripple psychedelic gradient motionblur rv32 rotate noise]) |
|---|
| 1111 | | VLC_ADD_PLUGINS([fixed32tos16 s16tofixed32 u8tofixed32 mono]) |
|---|
| | 1111 | VLC_ADD_PLUGINS([converter_fixed mono]) |
|---|
| 1112 | 1112 | VLC_ADD_PLUGINS([trivial_resampler ugly_resampler]) |
|---|
| 1113 | 1113 | VLC_ADD_PLUGINS([trivial_channel_mixer trivial_mixer]) |
|---|
| … | … | |
| 1129 | 1129 | VLC_ADD_PLUGINS([float32_mixer spdif_mixer simple_channel_mixer]) |
|---|
| 1130 | 1130 | VLC_ADD_PLUGINS([dolby_surround_decoder headphone_channel_mixer normvol equalizer param_eq]) |
|---|
| 1131 | | VLC_ADD_PLUGINS([fixed32tofloat32 float32tos16 float32tos8 float32tou16 float32tou8 a52tospdif dtstospdif s16tofloat32 s16tofloat32swab s8tofloat32 u8tofloat32 audio_format]) |
|---|
| | 1131 | VLC_ADD_PLUGINS([converter_float a52tospdif dtstospdif audio_format]) |
|---|
| 1132 | 1132 | fi |
|---|
| 1133 | 1133 | |
|---|
| rbdfdc20 |
rd81d5e5 |
|
| 1 | | SOURCES_float32tos16 = float32tos16.c |
|---|
| 2 | | SOURCES_float32tos8 = float32tos8.c |
|---|
| 3 | | SOURCES_float32tou16 = float32tou16.c |
|---|
| 4 | | SOURCES_float32tou8 = float32tou8.c |
|---|
| | 1 | SOURCES_converter_fixed = fixed.c |
|---|
| | 2 | SOURCES_converter_float = float.c |
|---|
| 5 | 3 | SOURCES_a52tospdif = a52tospdif.c |
|---|
| 6 | 4 | SOURCES_a52tofloat32 = a52tofloat32.c |
|---|
| 7 | 5 | SOURCES_dtstospdif = dtstospdif.c |
|---|
| 8 | 6 | SOURCES_dtstofloat32 = dtstofloat32.c |
|---|
| 9 | | SOURCES_fixed32tos16 = fixed32tos16.c |
|---|
| 10 | | SOURCES_s16tofixed32 = s16tofixed32.c |
|---|
| 11 | | SOURCES_fixed32tofloat32 = fixed32tofloat32.c |
|---|
| 12 | | SOURCES_s16tofloat32 = s16tofloat32.c |
|---|
| 13 | | SOURCES_s16tofloat32swab = s16tofloat32swab.c |
|---|
| 14 | | SOURCES_s8tofloat32 = s8tofloat32.c |
|---|
| 15 | | SOURCES_u8tofixed32 = u8tofixed32.c |
|---|
| 16 | | SOURCES_u8tofloat32 = u8tofloat32.c |
|---|
| 17 | 7 | SOURCES_mpgatofixed32 = mpgatofixed32.c |
|---|