cue_parser: support file types "MP3", "AIFF"
These two strings are common "FILE" types.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user