mirror of
https://github.com/Serial-ATA/lofty-rs
synced 2024-12-12 21:52:33 +00:00
bit_depth test
This commit is contained in:
parent
81efcb0271
commit
23cf587940
1 changed files with 4 additions and 3 deletions
|
@ -13,19 +13,19 @@ const AIFF_PROPERTIES: FileProperties = FileProperties::new(
|
||||||
Some(1542),
|
Some(1542),
|
||||||
Some(1536),
|
Some(1536),
|
||||||
Some(48000),
|
Some(48000),
|
||||||
None,
|
Some(16),
|
||||||
Some(2),
|
Some(2),
|
||||||
);
|
);
|
||||||
|
|
||||||
const APE_PROPERTIES: ApeProperties =
|
const APE_PROPERTIES: ApeProperties =
|
||||||
ApeProperties::new(3990, Duration::from_millis(1428), 360, 360, 48000, 2);
|
ApeProperties::new(3990, Duration::from_millis(1428), 360, 360, 48000, 16, 2);
|
||||||
|
|
||||||
const FLAC_PROPERTIES: FileProperties = FileProperties::new(
|
const FLAC_PROPERTIES: FileProperties = FileProperties::new(
|
||||||
Duration::from_millis(1428),
|
Duration::from_millis(1428),
|
||||||
Some(321),
|
Some(321),
|
||||||
Some(275),
|
Some(275),
|
||||||
Some(48000),
|
Some(48000),
|
||||||
None,
|
Some(16),
|
||||||
Some(2),
|
Some(2),
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -70,6 +70,7 @@ const WAV_PROPERTIES: WavProperties = WavProperties::new(
|
||||||
1542,
|
1542,
|
||||||
1536,
|
1536,
|
||||||
48000,
|
48000,
|
||||||
|
16,
|
||||||
2,
|
2,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue