winmm: Revert "Handle playing of files containing a '+' as part of the filename.".

This reverts commit ed593fdf2f.
This commit is contained in:
Alexander Puzankov 2010-11-29 21:15:16 +03:00 committed by Alexandre Julliard
parent 6a1f4eb724
commit cc5f2b2c76
1 changed files with 24 additions and 23 deletions

View File

@ -383,39 +383,40 @@ static FOURCC MMIO_ParseExtA(LPCSTR szFileName)
LPSTR extEnd;
LPSTR extStart;
CHAR ext[5];
TRACE("(%s)\n", debugstr_a(szFileName));
if (!szFileName)
return ret;
/* Find the last '.' */
extStart = strrchr(szFileName,'.');
/* Find the last '+' */
extEnd = strrchr(szFileName,'+');
if (!extStart) {
ERR("No . in szFileName: %s\n", debugstr_a(szFileName));
if (!extEnd) {
/* No + so just an extension */
return ret;
} else {
CHAR ext[5];
/* Find the '+' afterwards */
extEnd = strchr(extStart,'+');
if (extEnd) {
/* Find the first '.' before '+' */
extStart = extEnd - 1;
while (*extStart != '.') {
if (extStart == szFileName) {
ERR("No extension in szFileName: %s\n", debugstr_a(szFileName));
return ret;
}
extStart--;
}
}
if (extEnd - extStart - 1 > 4)
WARN("Extension length > 4\n");
lstrcpynA(ext, extStart + 1, min(extEnd-extStart,5));
} else {
/* No + so just an extension */
if (strlen(extStart) > 4) {
WARN("Extension length > 4\n");
}
lstrcpynA(ext, extStart + 1, 5);
}
TRACE("Got extension: %s\n", debugstr_a(ext));
/* FOURCC codes identifying file-extensions must be uppercase */
ret = mmioStringToFOURCCA(ext, MMIO_TOUPPER);
}
return ret;
}