mirror of
https://github.com/Serial-ATA/lofty-rs
synced 2025-03-04 14:57:17 +00:00
MPEG: Fix unclear comments in BITRATES constant
This commit is contained in:
parent
49007a2a23
commit
ddffb169f7
1 changed files with 8 additions and 6 deletions
|
@ -1,28 +1,30 @@
|
|||
pub const BITRATES: [[[u32; 16]; 3]; 2] = [
|
||||
// Order:
|
||||
// Layer 1
|
||||
// Layer 2
|
||||
// Layer 3
|
||||
// Version 1
|
||||
[
|
||||
// Version 1
|
||||
// Layer 1
|
||||
[
|
||||
0, 32, 64, 96, 128, 160, 192, 224, 256, 288, 320, 352, 384, 416, 448, 0,
|
||||
],
|
||||
// Layer 2
|
||||
[
|
||||
0, 32, 48, 56, 64, 80, 96, 112, 128, 160, 192, 224, 256, 320, 384, 0,
|
||||
],
|
||||
// Layer 3
|
||||
[
|
||||
0, 32, 40, 48, 56, 64, 80, 96, 112, 128, 160, 192, 224, 256, 320, 0,
|
||||
],
|
||||
],
|
||||
// Version 2/2.5
|
||||
[
|
||||
// Version 2/2.5
|
||||
// Layer 1
|
||||
[
|
||||
0, 32, 48, 56, 64, 80, 96, 112, 128, 144, 160, 176, 192, 224, 256, 0,
|
||||
],
|
||||
// Layer 2
|
||||
[
|
||||
0, 8, 16, 24, 32, 40, 48, 56, 64, 80, 96, 112, 128, 144, 160, 0,
|
||||
],
|
||||
// Layer 3
|
||||
[
|
||||
0, 8, 16, 24, 32, 40, 48, 56, 64, 80, 96, 112, 128, 144, 160, 0,
|
||||
],
|
||||
|
|
Loading…
Add table
Reference in a new issue