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/main.c | |
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/main.c')
-rw-r--r-- | src/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c index 7f66fd6bd..53b204e7e 100644 --- a/src/main.c +++ b/src/main.c @@ -20,7 +20,7 @@ #include "command.h" #include "playlist.h" #include "directory.h" -#include "player.h" +#include "player_thread.h" #include "listen.h" #include "conf.h" #include "path.h" @@ -432,7 +432,7 @@ int main(int argc, char *argv[]) openVolumeDevice(); decoderInit(); - playerInit(); + player_create(); read_state_file(); while (COMMAND_RETURN_KILL != doIOForInterfaces() && |