Skip to content

Commit 455eb86

Browse files
fix(mp3info): Drop CODEC_UNDEFINED which is invalid
1 parent 694c3de commit 455eb86

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/Mp3Info.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,6 @@ private function readMpegFrame($fp) {
373373

374374
switch ($header_bytes[1] >> 3 & 0b11) {
375375
case 0b00: $this->codecVersion = self::MPEG_25; break;
376-
case 0b01: $this->codecVersion = self::CODEC_UNDEFINED; break;
377376
case 0b10: $this->codecVersion = self::MPEG_2; break;
378377
case 0b11: $this->codecVersion = self::MPEG_1; break;
379378
}

0 commit comments

Comments
 (0)