wavpack: ignore ext_int flag when comparing headers
authorKostya Shishkov <kostya.shishkov@gmail.com>
Wed, 7 Oct 2020 12:36:49 +0000 (14:36 +0200)
committerKostya Shishkov <kostya.shishkov@gmail.com>
Wed, 7 Oct 2020 12:36:49 +0000 (14:36 +0200)
nihav-llaudio/src/codecs/wavpack.rs
nihav-llaudio/src/demuxers/wavpack.rs

index 07aef40873a37700a8185477d50db4264355722c..3d1f4117f7cd87b0567e8ca727b69aad72ece700 100644 (file)
@@ -22,7 +22,7 @@ const WV_FLAG_END_BLOCK: u32    = 1 << 12;
 const WV_FLAG_FALSE_STEREO: u32 = 1 << 30;
 const WV_FLAG_DSD_AUDIO: u32    = 1 << 31;
 
-const WV_STREAM_FLAGS: u32 = 0x8000018B;
+const WV_STREAM_FLAGS: u32 = 0x8000008B;
 
 #[derive(Clone,Copy,Default)]
 struct WVHeader {
index 9cd50fa76e807ee6fb2db59312c518f670cd30b5..e54ad7e68a3bed760499dfbdbe2050f92680fa8e 100644 (file)
@@ -20,7 +20,7 @@ const WV_FLAG_END_BLOCK: u32    = 1 << 12;
 const WV_FLAG_FALSE_STEREO: u32 = 1 << 30;
 //const WV_FLAG_DSD_AUDIO: u32    = 1 << 31;
 
-const WV_STREAM_FLAGS: u32 = 0x8000018B;
+const WV_STREAM_FLAGS: u32 = 0x8000008B;
 
 #[derive(Clone,Copy,Default)]
 struct WVHeader {