diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-11-09 22:07:01 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-11-09 22:07:01 +0000 |
commit | 598db0d296a8c16e181b488040a324f9ae20cc33 (patch) | |
tree | f42184b12895cd9fad298f0db6808fa262c1e5c9 /src/decode.c | |
parent | 4abf1b7d56425be009c8d6826a753b8682bc7c22 (diff) | |
download | mpd-598db0d296a8c16e181b488040a324f9ae20cc33.tar.gz mpd-598db0d296a8c16e181b488040a324f9ae20cc33.tar.xz mpd-598db0d296a8c16e181b488040a324f9ae20cc33.zip |
work in progress
git-svn-id: https://svn.musicpd.org/mpd/branches/r2562-metadata-handling-rewrite@2566 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r-- | src/decode.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/decode.c b/src/decode.c index 52923ce87..893e1a55c 100644 --- a/src/decode.c +++ b/src/decode.c @@ -158,10 +158,6 @@ int waitOnDecode(PlayerControl * pc, DecoderControl * dc, OutputBuffer * cb, } if((tag = metadataChunkToMpdTagDup(&(pc->fileMetadataChunk)))) { - /* lets put the filename in the title if no tag info */ - if(!tag->title && !tag->artist && !tag->album) { - tag->title = strdup(pc->currentUrl); - } sendMetadataToAudioDevice(tag); freeMpdTag(tag); } |