diff options
author | Max Kellermann <max@duempel.org> | 2009-01-07 18:53:36 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-01-07 18:53:36 +0100 |
commit | b40428b3fd284f172da0ae630559176727026599 (patch) | |
tree | fd5399b38e5bf251e5459e01483bbc3cda01f832 /src/Makefile.am | |
parent | 8b19c74e8eb0036c697010d56ed1ee9b92facb72 (diff) | |
download | mpd-b40428b3fd284f172da0ae630559176727026599.tar.gz mpd-b40428b3fd284f172da0ae630559176727026599.tar.xz mpd-b40428b3fd284f172da0ae630559176727026599.zip |
pcm_utils: moved conversion code to pcm_convert.c
All what's left in pcm_utils.h is the pcm_range() utility function,
which is only used internally by pcm_volume and pcm_mix.
Diffstat (limited to '')
-rw-r--r-- | src/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 00891cfc0..75380ef2d 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -50,6 +50,7 @@ mpd_headers = \ path.h \ mapper.h \ pcm_utils.h \ + pcm_convert.h \ pcm_volume.h \ pcm_mix.h \ pcm_channels.h \ @@ -131,7 +132,7 @@ mpd_SOURCES = \ pipe.c \ path.c \ mapper.c \ - pcm_utils.c \ + pcm_convert.c \ pcm_volume.c \ pcm_mix.c \ pcm_channels.c \ |