We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad0cc80 commit be52551Copy full SHA for be52551
MetadataExtractor/Formats/Mpeg/Mp3Reader.cs
@@ -60,8 +60,7 @@ public Directory Extract(SequentialReader reader)
60
break;
61
}
62
63
-
64
- int protectionBit = (header & 0x00010000) >> 16;
+ // int protectionBit = (header & 0x00010000) >> 16;
65
66
// Bitrate: depends on ID and Layer
67
int bitrate = (header & 0x0000F000) >> 12;
@@ -86,8 +85,7 @@ public Directory Extract(SequentialReader reader)
86
85
frequency = frequencyMapping[1, frequency];
87
88
89
90
- int paddingBit = (header & 0x00000200) >> 9;
+ // int paddingBit = (header & 0x00000200) >> 9;
91
92
// Encoding type: Stereo, Joint Stereo, Dual Channel, or Mono
93
int mode = (header & 0x000000C0) >> 6;
0 commit comments