aboutsummaryrefslogtreecommitdiffstats
path: root/src/decode.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-08-26 08:44:12 +0200
committerMax Kellermann <max@duempel.org>2008-08-26 08:44:12 +0200
commitdff8c6450b8e3bd4dbc19fcce52faa8c5950b662 (patch)
tree04f98f71807789e86e627d9f7466c466326bd5b4 /src/decode.c
parent4255bba0f7cbd4a1ac24859a65f8d974d1fb5a9b (diff)
downloadmpd-dff8c6450b8e3bd4dbc19fcce52faa8c5950b662.tar.gz
mpd-dff8c6450b8e3bd4dbc19fcce52faa8c5950b662.tar.xz
mpd-dff8c6450b8e3bd4dbc19fcce52faa8c5950b662.zip
renamed decode.c to decoder_thread.c
It should be obvious in which thread or context a function is being executed at runtime. The code which was left in decode.c is for the decoder thread itself; give the file a better name.
Diffstat (limited to '')
-rw-r--r--src/decoder_thread.c (renamed from src/decode.c)2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/decode.c b/src/decoder_thread.c
index 3362077ac..4104b585f 100644
--- a/src/decode.c
+++ b/src/decoder_thread.c
@@ -1,5 +1,6 @@
/* the Music Player Daemon (MPD)
* Copyright (C) 2003-2007 by Warren Dukes (warren.dukes@gmail.com)
+ * Copyright (C) 2008 Max Kellermann <max@duempel.org>
* This project's homepage is: http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
@@ -16,6 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
+#include "decoder_thread.h"
#include "decode.h"
#include "decoder_internal.h"
#include "player.h"