mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
dmusic: Ignore some known wave chunks.
This commit is contained in:
parent
f65cf1ed6d
commit
347fb8bc8e
1 changed files with 5 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue