diff --git a/src/wp-includes/ID3/module.audio-video.quicktime.php b/src/wp-includes/ID3/module.audio-video.quicktime.php
index 6f29ca4e87..0b55adc7db 100644
a
|
b
|
class getid3_quicktime extends getid3_handler |
679 | 679 | $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); |
680 | 680 | $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); // hardcoded: 0x0000 |
681 | 681 | $atom_structure['language_id'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 2)); |
| 682 | // $atom_structure['track_id'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 2)); // from old block |
682 | 683 | |
683 | 684 | $atom_structure['language'] = $this->QuicktimeLanguageLookup($atom_structure['language_id']); |
684 | 685 | if (empty($info['comments']['language']) || (!in_array($atom_structure['language'], $info['comments']['language']))) { |
… |
… |
class getid3_quicktime extends getid3_handler |
686 | 687 | } |
687 | 688 | break; |
688 | 689 | |
689 | | |
690 | | case 'rmla': // Reference Movie Language Atom |
691 | | $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); |
692 | | $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); // hardcoded: 0x0000 |
693 | | $atom_structure['track_id'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 2)); |
694 | | break; |
695 | | |
696 | | |
697 | 690 | case 'ptv ': // Print To Video - defines a movie's full screen mode |
698 | 691 | // http://developer.apple.com/documentation/QuickTime/APIREF/SOURCESIV/at_ptv-_pg.htm |
699 | 692 | $atom_structure['display_size_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 2)); |