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 | e8bd9ddc9fc99d31659db1121622bef0f3303fc1 (patch) | |
tree | a9fea2466a207ca957fe47c6a0881e957ba2aad5 /src/Makefile.am | |
parent | 6104e9690e75046b793c0abe6fc20576fb3da19b (diff) | |
download | mpd-e8bd9ddc9fc99d31659db1121622bef0f3303fc1.tar.gz mpd-e8bd9ddc9fc99d31659db1121622bef0f3303fc1.tar.xz mpd-e8bd9ddc9fc99d31659db1121622bef0f3303fc1.zip |
moved code to player_thread.c
Move code which runs in the player thread to player_thread.c. Having
a lot of player thread code in decode.c isn't easy to understand.
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 b097e904c..006ccf214 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -68,6 +68,7 @@ mpd_headers = \ pcm_utils.h \ permission.h \ player.h \ + player_thread.h \ playerData.h \ playlist.h \ replayGain.h \ @@ -128,6 +129,7 @@ mpd_SOURCES = \ pcm_utils.c \ permission.c \ player.c \ + player_thread.c \ playerData.c \ playlist.c \ replayGain.c \ |