From 7537722a44df34411a2c23ea393a1143d88681d3 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Thu, 26 Jul 2012 23:01:40 +0200 Subject: cue_parser: support file types "MP3", "AIFF" These two strings are common "FILE" types. --- NEWS | 2 ++ src/cue/cue_parser.c | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 60dabb301..85bee6bd6 100644 --- a/NEWS +++ b/NEWS @@ -3,6 +3,8 @@ ver 0.17.1 (2012/??/??) - require appropriate permissions for searchadd{,pl} * tags: - aiff: support the AIFC format +* playlist: + - cue: support file types "MP3", "AIFF" * output: - fix noisy playback with conversion and software volume diff --git a/src/cue/cue_parser.c b/src/cue/cue_parser.c index 034d4a1f9..868aed094 100644 --- a/src/cue/cue_parser.c +++ b/src/cue/cue_parser.c @@ -235,7 +235,9 @@ cue_parser_feed2(struct cue_parser *parser, char *p) if (type == NULL) return; - if (strcmp(type, "WAVE") != 0) { + if (strcmp(type, "WAVE") != 0 && + strcmp(type, "MP3") != 0 && + strcmp(type, "AIFF") != 0) { parser->state = IGNORE_FILE; return; } -- cgit v1.2.3