Changeset d81d5e5fcee94d98880b89ca9c539070af0a6150

Show
Ignore:
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
  • configure.ac

    rd3fe7f2 rd81d5e5  
    11091109VLC_ADD_PLUGINS([cvdsub svcdsub spudec subsdec dvbsub mpeg_audio lpcm a52 dts cinepak flac]) 
    11101110VLC_ADD_PLUGINS([deinterlace invert adjust transform wave ripple psychedelic gradient motionblur rv32 rotate noise]) 
    1111 VLC_ADD_PLUGINS([fixed32tos16 s16tofixed32 u8tofixed32 mono]) 
     1111VLC_ADD_PLUGINS([converter_fixed mono]) 
    11121112VLC_ADD_PLUGINS([trivial_resampler ugly_resampler]) 
    11131113VLC_ADD_PLUGINS([trivial_channel_mixer trivial_mixer]) 
     
    11291129  VLC_ADD_PLUGINS([float32_mixer spdif_mixer simple_channel_mixer]) 
    11301130  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]) 
    11321132fi 
    11331133 
  • modules/audio_filter/converter/Modules.am

    rbdfdc20 rd81d5e5  
    1 SOURCES_float32tos16 = float32tos16.c 
    2 SOURCES_float32tos8 = float32tos8.c 
    3 SOURCES_float32tou16 = float32tou16.c 
    4 SOURCES_float32tou8 = float32tou8.c 
     1SOURCES_converter_fixed = fixed.c 
     2SOURCES_converter_float = float.c 
    53SOURCES_a52tospdif = a52tospdif.c 
    64SOURCES_a52tofloat32 = a52tofloat32.c 
    75SOURCES_dtstospdif = dtstospdif.c 
    86SOURCES_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 
    177SOURCES_mpgatofixed32 = mpgatofixed32.c