diff options
author | Eric Wong <normalperson@yhbt.net> | 2008-04-13 01:15:50 +0000 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2008-04-13 01:15:50 +0000 |
commit | 98acfa8ac5bac09ca49a7c21938b5a5801e01ca5 (patch) | |
tree | de558a803467d34d97bf695978a4f0c2cd65d126 /src/inputPlugins | |
parent | ae1335753adb5bcc49badf98ccbe6ca38152dc2c (diff) | |
download | mpd-98acfa8ac5bac09ca49a7c21938b5a5801e01ca5.tar.gz mpd-98acfa8ac5bac09ca49a7c21938b5a5801e01ca5.tar.xz mpd-98acfa8ac5bac09ca49a7c21938b5a5801e01ca5.zip |
Get rid of PlayerControl inside the PlayerData struct
It actually increases our image size a small bit and may even
hurt performance a very small bit, but makes the code less
verbose and easier to manage.
I don't see a reason for mpd to ever support playing multiple
files at the same time (users can run multiple instances of mpd
if they really want to play Zaireeka, but that's such an edge
case it's not worth ever supporting in our code).
git-svn-id: https://svn.musicpd.org/mpd/trunk@7352 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/inputPlugins')
-rw-r--r-- | src/inputPlugins/wavpack_plugin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inputPlugins/wavpack_plugin.c b/src/inputPlugins/wavpack_plugin.c index 113889d2a..c46cdeb75 100644 --- a/src/inputPlugins/wavpack_plugin.c +++ b/src/inputPlugins/wavpack_plugin.c @@ -465,7 +465,7 @@ static int wavpack_streamdecode(OutputBuffer *cb, DecoderControl *dc, * As we use dc->utf8url, this function will be bad for * single files. utf8url is not absolute file path :/ */ - utf8url = get_song_url(tmp, getPlayerData()->playerControl.current_song); + utf8url = get_song_url(tmp, pc.current_song); if (utf8url == NULL) { break; } |