diff options
author | Max Kellermann <max@duempel.org> | 2008-08-26 08:27:09 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-08-26 08:27:09 +0200 |
commit | 6104e9690e75046b793c0abe6fc20576fb3da19b (patch) | |
tree | 16b21f06297c6936206d32878b1d532c1b8f1dbd /src/Makefile.am | |
parent | 2650b9eb318a9eec0c45757624debf363aa156f9 (diff) | |
download | mpd-6104e9690e75046b793c0abe6fc20576fb3da19b.tar.gz mpd-6104e9690e75046b793c0abe6fc20576fb3da19b.tar.xz mpd-6104e9690e75046b793c0abe6fc20576fb3da19b.zip |
moved code to crossfade.c
decode.c should be a lot smaller; start by moving all code which
handles cross-fading to crossfade.c. Also includes camelCase
conversion.
Diffstat (limited to 'src/Makefile.am')
-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 216261ae9..b097e904c 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -38,6 +38,7 @@ mpd_headers = \ command.h \ condition.h \ conf.h \ + crossfade.h \ dbUtils.h \ decode.h \ decoder_api.h \ @@ -102,6 +103,7 @@ mpd_SOURCES = \ command.c \ condition.c \ conf.c \ + crossfade.c \ dbUtils.c \ decode.c \ decoder_api.c \ |