diff options
-rw-r--r-- | src/inputPlugins/mp3_plugin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/inputPlugins/mp3_plugin.c b/src/inputPlugins/mp3_plugin.c index ef82c7122..b122a0b23 100644 --- a/src/inputPlugins/mp3_plugin.c +++ b/src/inputPlugins/mp3_plugin.c @@ -660,7 +660,7 @@ int mp3_decode(OutputBuffer * cb, DecoderControl * dc, InputStream * inStream) { dc->totalTime = data.totalTime; - if(inStream->metaTitle) { + /*if(inStream->metaTitle) { if(tag) freeMpdTag(tag); tag = newMpdTag(); tag->title = strdup(inStream->metaTitle); @@ -687,7 +687,7 @@ int mp3_decode(OutputBuffer * cb, DecoderControl * dc, InputStream * inStream) { } copyMpdTagToOutputBuffer(cb, tag); freeMpdTag(tag); - } + }*/ dc->state = DECODE_STATE_DECODE; |