|
@@ 307-309 (lines=3) @@
|
| 304 |
|
$atom_structure['data'] = substr($atom_data, 4); |
| 305 |
|
|
| 306 |
|
$atom_structure['language'] = $this->QuicktimeLanguageLookup($atom_structure['language_id']); |
| 307 |
|
if (empty($info['comments']['language']) || (!in_array($atom_structure['language'], $info['comments']['language']))) { |
| 308 |
|
$info['comments']['language'][] = $atom_structure['language']; |
| 309 |
|
} |
| 310 |
|
} else { |
| 311 |
|
// Apple item list box atom handler |
| 312 |
|
$atomoffset = 0; |
|
@@ 566-568 (lines=3) @@
|
| 563 |
|
$atom_structure['language_id'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 2)); |
| 564 |
|
|
| 565 |
|
$atom_structure['language'] = $this->QuicktimeLanguageLookup($atom_structure['language_id']); |
| 566 |
|
if (empty($info['comments']['language']) || (!in_array($atom_structure['language'], $info['comments']['language']))) { |
| 567 |
|
$info['comments']['language'][] = $atom_structure['language']; |
| 568 |
|
} |
| 569 |
|
break; |
| 570 |
|
|
| 571 |
|
|
|
@@ 1013-1015 (lines=3) @@
|
| 1010 |
|
$atom_structure['modify_time_unix'] = getid3_lib::DateMac2Unix($atom_structure['modify_time']); |
| 1011 |
|
$atom_structure['playtime_seconds'] = $atom_structure['duration'] / $atom_structure['time_scale']; |
| 1012 |
|
$atom_structure['language'] = $this->QuicktimeLanguageLookup($atom_structure['language_id']); |
| 1013 |
|
if (empty($info['comments']['language']) || (!in_array($atom_structure['language'], $info['comments']['language']))) { |
| 1014 |
|
$info['comments']['language'][] = $atom_structure['language']; |
| 1015 |
|
} |
| 1016 |
|
break; |
| 1017 |
|
|
| 1018 |
|
|