diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-05-31 11:42:46 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-05-31 11:42:46 +0000 |
commit | 000e053ce73f6f87bc7c3797caceb1b60e467dcf (patch) | |
tree | 2411ee50bcd20c53cb8ed6f82bfb76ee5227d77b /src/inputPlugin.h | |
parent | b4a91d574fb3ad8ffdacab792a46cc668010c7d6 (diff) | |
download | mpd-000e053ce73f6f87bc7c3797caceb1b60e467dcf.tar.gz mpd-000e053ce73f6f87bc7c3797caceb1b60e467dcf.tar.xz mpd-000e053ce73f6f87bc7c3797caceb1b60e467dcf.zip |
icynames are now copied to title of streams
git-svn-id: https://svn.musicpd.org/mpd/trunk@1258 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/inputPlugin.h')
-rw-r--r-- | src/inputPlugin.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/inputPlugin.h b/src/inputPlugin.h index fe59b722a..9d77262c6 100644 --- a/src/inputPlugin.h +++ b/src/inputPlugin.h @@ -13,7 +13,8 @@ typedef int (* InputPlugin_streamDecodeFunc) (OutputBuffer *, DecoderControl *, InputStream *); -typedef int (* InputPlugin_fileDecodeFunc) (OutputBuffer *, DecoderControl *); +typedef int (* InputPlugin_fileDecodeFunc) (OutputBuffer *, DecoderControl *, + char * path); /* file should be the full path! */ typedef MpdTag * (* InputPlugin_tagDupFunc) (char * file); |