diff options
author | Max Kellermann <max@duempel.org> | 2010-01-15 09:23:36 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2010-01-16 23:44:54 +0100 |
commit | 1abfcc56af7de73c2088d7971f744778b5842ed8 (patch) | |
tree | cee3e0021348270f86402b9cb7b016e4b820827d /Makefile.am | |
parent | da47afe7d1aa6b59bf04764d0bd7d0b91dfac94b (diff) | |
download | mpd-1abfcc56af7de73c2088d7971f744778b5842ed8.tar.gz mpd-1abfcc56af7de73c2088d7971f744778b5842ed8.tar.xz mpd-1abfcc56af7de73c2088d7971f744778b5842ed8.zip |
audio_format: support packed 24 bit samples
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index f9e6a86fa..1197483e9 100644 --- a/Makefile.am +++ b/Makefile.am @@ -279,6 +279,7 @@ src_mpd_SOURCES = \ src/pcm_mix.c \ src/pcm_byteswap.c \ src/pcm_channels.c \ + src/pcm_pack.c \ src/pcm_format.c \ src/pcm_resample.c \ src/pcm_resample_fallback.c \ @@ -888,6 +889,7 @@ test_run_filter_SOURCES = test/run_filter.c \ src/conf.c src/tokenizer.c src/utils.c \ src/pcm_volume.c src/pcm_convert.c src/pcm_byteswap.c \ src/pcm_format.c src/pcm_channels.c src/pcm_dither.c \ + src/pcm_pack.c \ src/pcm_resample.c src/pcm_resample_fallback.c \ src/audio_check.c \ src/audio_format.c \ @@ -935,6 +937,7 @@ test_run_convert_SOURCES = test/run_convert.c \ src/audio_parser.c \ src/pcm_channels.c \ src/pcm_format.c \ + src/pcm_pack.c \ src/pcm_dither.c \ src/pcm_byteswap.c \ src/pcm_resample.c \ |