diff options
author | Eric Wong <normalperson@yhbt.net> | 2008-04-12 04:08:12 +0000 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2008-04-12 04:08:12 +0000 |
commit | 45ebb851f4d0bd136b7c246a6a1b71561a6e5800 (patch) | |
tree | 5200c82fbe3489507fe84cbf2b11645dc4a1ad1b /src/player.h | |
parent | 9cf66d0e8a7875026d7009d5df331fabf614ac55 (diff) | |
download | mpd-45ebb851f4d0bd136b7c246a6a1b71561a6e5800.tar.gz mpd-45ebb851f4d0bd136b7c246a6a1b71561a6e5800.tar.xz mpd-45ebb851f4d0bd136b7c246a6a1b71561a6e5800.zip |
Drop metadata updates from HTTP for now (input HTTP, and shout)
It is way more complicated than it should be; and
locking it for thread-safety is too difficult.
[merged r7183 from branches/ew]
git-svn-id: https://svn.musicpd.org/mpd/trunk@7241 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r-- | src/player.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/player.h b/src/player.h index 71b0e9094..605a25a80 100644 --- a/src/player.h +++ b/src/player.h @@ -24,7 +24,6 @@ #include "decode.h" #include "mpd_types.h" #include "song.h" -#include "metadataChunk.h" #include "os_compat.h" #define PLAYER_STATE_STOP 0 @@ -51,9 +50,6 @@ #define PLAYER_QUEUE_UNLOCKED 0 #define PLAYER_QUEUE_LOCKED 1 -#define PLAYER_METADATA_STATE_READ 1 -#define PLAYER_METADATA_STATE_WRITE 2 - typedef struct _PlayerControl { volatile mpd_sint8 stop; volatile mpd_sint8 play; @@ -80,9 +76,6 @@ typedef struct _PlayerControl { volatile float crossFade; volatile mpd_uint16 softwareVolume; volatile double totalPlayTime; - volatile mpd_sint8 metadataState; - MetadataChunk metadataChunk; - MetadataChunk fileMetadataChunk; } PlayerControl; void wakeup_main_task(void); |