diff options
author | Max Kellermann <max@duempel.org> | 2009-01-07 18:06:22 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-01-07 18:06:22 +0100 |
commit | 3fd1fa31ca26c0cbf0f74a1f11dbaeaa176ab6ff (patch) | |
tree | c753a6d701a53ba73050b9f19acae1150e9ca870 /src/Makefile.am | |
parent | 9d0579996c66273b87baae5ef1bde433f5c1ff71 (diff) | |
download | mpd-3fd1fa31ca26c0cbf0f74a1f11dbaeaa176ab6ff.tar.gz mpd-3fd1fa31ca26c0cbf0f74a1f11dbaeaa176ab6ff.tar.xz mpd-3fd1fa31ca26c0cbf0f74a1f11dbaeaa176ab6ff.zip |
pcm_utils: moved code to pcm_mix.c
Moved the software mixing code (used by crossfading) to a separate
library.
Diffstat (limited to '')
-rw-r--r-- | src/Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 2c2b14665..c5259b155 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -51,6 +51,7 @@ mpd_headers = \ mapper.h \ pcm_utils.h \ pcm_volume.h \ + pcm_mix.h \ pcm_channels.h \ pcm_resample.h \ pcm_dither.h \ @@ -131,6 +132,7 @@ mpd_SOURCES = \ mapper.c \ pcm_utils.c \ pcm_volume.c \ + pcm_mix.c \ pcm_channels.c \ pcm_resample.c \ pcm_dither.c \ |