dmusic: Ignore some known wave chunks.

This commit is contained in:
Rémi Bernon 2023-09-19 08:56:18 +02:00 committed by Alexandre Julliard
parent f65cf1ed6d
commit 347fb8bc8e

View file

@ -159,6 +159,11 @@ static HRESULT parse_wave_chunk(struct wave *This, IStream *stream, struct chunk
hr = parse_wsmp_chunk(This, stream, &chunk);
break;
case mmioFOURCC('w','a','v','u'):
case mmioFOURCC('s','m','p','l'):
case MAKE_IDTYPE(FOURCC_LIST, DMUS_FOURCC_INFO_LIST):
break;
default:
FIXME("Ignoring chunk %s %s\n", debugstr_fourcc(chunk.id), debugstr_fourcc(chunk.type));
break;