|
@@ 421-423 (lines=3) @@
|
| 418 |
|
$atom_structure['data'] = substr($atom_data, 4); |
| 419 |
|
|
| 420 |
|
$atom_structure['language'] = $this->QuicktimeLanguageLookup($atom_structure['language_id']); |
| 421 |
|
if (empty($info['comments']['language']) || (!in_array($atom_structure['language'], $info['comments']['language']))) { |
| 422 |
|
$info['comments']['language'][] = $atom_structure['language']; |
| 423 |
|
} |
| 424 |
|
} else { |
| 425 |
|
// Apple item list box atom handler |
| 426 |
|
$atomoffset = 0; |
|
@@ 713-715 (lines=3) @@
|
| 710 |
|
$atom_structure['language_id'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 2)); |
| 711 |
|
|
| 712 |
|
$atom_structure['language'] = $this->QuicktimeLanguageLookup($atom_structure['language_id']); |
| 713 |
|
if (empty($info['comments']['language']) || (!in_array($atom_structure['language'], $info['comments']['language']))) { |
| 714 |
|
$info['comments']['language'][] = $atom_structure['language']; |
| 715 |
|
} |
| 716 |
|
break; |
| 717 |
|
|
| 718 |
|
|
|
@@ 1188-1190 (lines=3) @@
|
| 1185 |
|
$atom_structure['modify_time_unix'] = getid3_lib::DateMac2Unix($atom_structure['modify_time']); |
| 1186 |
|
$atom_structure['playtime_seconds'] = $atom_structure['duration'] / $atom_structure['time_scale']; |
| 1187 |
|
$atom_structure['language'] = $this->QuicktimeLanguageLookup($atom_structure['language_id']); |
| 1188 |
|
if (empty($info['comments']['language']) || (!in_array($atom_structure['language'], $info['comments']['language']))) { |
| 1189 |
|
$info['comments']['language'][] = $atom_structure['language']; |
| 1190 |
|
} |
| 1191 |
|
$info['quicktime']['timestamps_unix']['create'][$atom_structure['hierarchy']] = $atom_structure['creation_time_unix']; |
| 1192 |
|
$info['quicktime']['timestamps_unix']['modify'][$atom_structure['hierarchy']] = $atom_structure['modify_time_unix']; |
| 1193 |
|
break; |