File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
Source/Lib/Uncompressed/WAV Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -267,6 +267,7 @@ Formats/WAV/Features/4ExtraNullBytesInFmtChunk/4ExtraNullBytesInFmtChunk.wav pas
267267Formats/WAV/Features/ChannelMask/48000_24_1_LE_0x00000000.wav pass
268268Formats/WAV/Features/ChannelMask/48000_24_2_LE_0x00000000.wav pass
269269Formats/WAV/Features/ChannelMask/48000_24_6_LE_0x00000000.wav pass
270+ Formats/WAV/Features/ChannelMask/48000_24_8_LE_0x000000FF.wav pass
270271Formats/WAV/Features/RF64/rf64_data_size.wav pass
271272Formats/WAV/Features/RF64/rf64_extra_after_RIFF.wav pass
272273Formats/WAV/Features/RF64/rf64_normal.wav pass
Original file line number Diff line number Diff line change @@ -517,7 +517,7 @@ void wav::WAVE_fmt_()
517517 && (Channels != 2 || (ChannelMask != 0x00000000 && ChannelMask != 0x00000003 ))
518518 && (Channels != 4 || (ChannelMask != 0x00000000 && ChannelMask != 0x00000107 ))
519519 && (Channels != 6 || (ChannelMask != 0x00000000 && ChannelMask != 0x0000003F && ChannelMask != 0x0000060F ))
520- && (Channels != 8 || (ChannelMask != 0x00000000 && ChannelMask != 0x0000063F )))
520+ && (Channels != 8 || (ChannelMask != 0x00000000 && ChannelMask != 0x0000063F && ChannelMask != 0x000000FF )))
521521 Unsupported (unsupported::fmt__ChannelMask);
522522 FormatTag = Get_L4 ();
523523 uint32_t SubFormat2 = Get_L4 ();
You can’t perform that action at this time.
0 commit comments