| Conditions | 347 |
| Paths | 639 |
| Total Lines | 1305 |
| Code Lines | 970 |
| Lines | 167 |
| Ratio | 12.8 % |
| Changes | 0 | ||
Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.
For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.
Commonly applied refactorings include:
If many parameters/temporary variables are present:
| 1 | <?php |
||
| 121 | public function QuicktimeParseAtom($atomname, $atomsize, $atom_data, $baseoffset, &$atomHierarchy, $ParseAllPossibleAtoms) { |
||
| 122 | // http://developer.apple.com/techpubs/quicktime/qtdevdocs/APIREF/INDEX/atomalphaindex.htm |
||
| 123 | |||
| 124 | $info = &$this->getid3->info; |
||
| 125 | |||
| 126 | $atom_parent = end($atomHierarchy); // not array_pop($atomHierarchy); see http://www.getid3.org/phpBB3/viewtopic.php?t=1717 |
||
| 127 | array_push($atomHierarchy, $atomname); |
||
| 128 | $atom_structure['hierarchy'] = implode(' ', $atomHierarchy); |
||
| 129 | $atom_structure['name'] = $atomname; |
||
| 130 | $atom_structure['size'] = $atomsize; |
||
| 131 | $atom_structure['offset'] = $baseoffset; |
||
| 132 | switch ($atomname) { |
||
| 133 | case 'moov': // MOVie container atom |
||
| 134 | case 'trak': // TRAcK container atom |
||
| 135 | case 'clip': // CLIPping container atom |
||
| 136 | case 'matt': // track MATTe container atom |
||
| 137 | case 'edts': // EDiTS container atom |
||
| 138 | case 'tref': // Track REFerence container atom |
||
| 139 | case 'mdia': // MeDIA container atom |
||
| 140 | case 'minf': // Media INFormation container atom |
||
| 141 | case 'dinf': // Data INFormation container atom |
||
| 142 | case 'udta': // User DaTA container atom |
||
| 143 | case 'cmov': // Compressed MOVie container atom |
||
| 144 | case 'rmra': // Reference Movie Record Atom |
||
| 145 | case 'rmda': // Reference Movie Descriptor Atom |
||
| 146 | case 'gmhd': // Generic Media info HeaDer atom (seen on QTVR) |
||
| 147 | $atom_structure['subatoms'] = $this->QuicktimeParseContainerAtom($atom_data, $baseoffset + 8, $atomHierarchy, $ParseAllPossibleAtoms); |
||
| 148 | break; |
||
| 149 | |||
| 150 | case 'ilst': // Item LiST container atom |
||
| 151 | if ($atom_structure['subatoms'] = $this->QuicktimeParseContainerAtom($atom_data, $baseoffset + 8, $atomHierarchy, $ParseAllPossibleAtoms)) { |
||
| 152 | // some "ilst" atoms contain data atoms that have a numeric name, and the data is far more accessible if the returned array is compacted |
||
| 153 | $allnumericnames = true; |
||
| 154 | foreach ($atom_structure['subatoms'] as $subatomarray) { |
||
| 155 | if (!is_integer($subatomarray['name']) || (count($subatomarray['subatoms']) != 1)) { |
||
| 156 | $allnumericnames = false; |
||
| 157 | break; |
||
| 158 | } |
||
| 159 | } |
||
| 160 | if ($allnumericnames) { |
||
| 161 | $newData = array(); |
||
| 162 | foreach ($atom_structure['subatoms'] as $subatomarray) { |
||
| 163 | foreach ($subatomarray['subatoms'] as $newData_subatomarray) { |
||
| 164 | unset($newData_subatomarray['hierarchy'], $newData_subatomarray['name']); |
||
| 165 | $newData[$subatomarray['name']] = $newData_subatomarray; |
||
| 166 | break; |
||
| 167 | } |
||
| 168 | } |
||
| 169 | $atom_structure['data'] = $newData; |
||
| 170 | unset($atom_structure['subatoms']); |
||
| 171 | } |
||
| 172 | } |
||
| 173 | break; |
||
| 174 | |||
| 175 | case "\x00\x00\x00\x01": |
||
| 176 | case "\x00\x00\x00\x02": |
||
| 177 | case "\x00\x00\x00\x03": |
||
| 178 | case "\x00\x00\x00\x04": |
||
| 179 | case "\x00\x00\x00\x05": |
||
| 180 | $atomname = getid3_lib::BigEndian2Int($atomname); |
||
| 181 | $atom_structure['name'] = $atomname; |
||
| 182 | $atom_structure['subatoms'] = $this->QuicktimeParseContainerAtom($atom_data, $baseoffset + 8, $atomHierarchy, $ParseAllPossibleAtoms); |
||
| 183 | break; |
||
| 184 | |||
| 185 | case 'stbl': // Sample TaBLe container atom |
||
| 186 | $atom_structure['subatoms'] = $this->QuicktimeParseContainerAtom($atom_data, $baseoffset + 8, $atomHierarchy, $ParseAllPossibleAtoms); |
||
| 187 | $isVideo = false; |
||
| 188 | $framerate = 0; |
||
| 189 | $framecount = 0; |
||
| 190 | foreach ($atom_structure['subatoms'] as $key => $value_array) { |
||
| 191 | if (isset($value_array['sample_description_table'])) { |
||
| 192 | foreach ($value_array['sample_description_table'] as $key2 => $value_array2) { |
||
| 193 | if (isset($value_array2['data_format'])) { |
||
| 194 | switch ($value_array2['data_format']) { |
||
| 195 | case 'avc1': |
||
| 196 | case 'mp4v': |
||
| 197 | // video data |
||
| 198 | $isVideo = true; |
||
| 199 | break; |
||
| 200 | case 'mp4a': |
||
| 201 | // audio data |
||
| 202 | break; |
||
| 203 | } |
||
| 204 | } |
||
| 205 | } |
||
| 206 | } elseif (isset($value_array['time_to_sample_table'])) { |
||
| 207 | foreach ($value_array['time_to_sample_table'] as $key2 => $value_array2) { |
||
| 208 | if (isset($value_array2['sample_count']) && isset($value_array2['sample_duration']) && ($value_array2['sample_duration'] > 0)) { |
||
| 209 | $framerate = round($info['quicktime']['time_scale'] / $value_array2['sample_duration'], 3); |
||
| 210 | $framecount = $value_array2['sample_count']; |
||
| 211 | } |
||
| 212 | } |
||
| 213 | } |
||
| 214 | } |
||
| 215 | if ($isVideo && $framerate) { |
||
| 216 | $info['quicktime']['video']['frame_rate'] = $framerate; |
||
| 217 | $info['video']['frame_rate'] = $info['quicktime']['video']['frame_rate']; |
||
| 218 | } |
||
| 219 | if ($isVideo && $framecount) { |
||
| 220 | $info['quicktime']['video']['frame_count'] = $framecount; |
||
| 221 | } |
||
| 222 | break; |
||
| 223 | |||
| 224 | |||
| 225 | case 'aART': // Album ARTist |
||
| 226 | case 'catg': // CaTeGory |
||
| 227 | case 'covr': // COVeR artwork |
||
| 228 | case 'cpil': // ComPILation |
||
| 229 | case 'cprt': // CoPyRighT |
||
| 230 | case 'desc': // DESCription |
||
| 231 | case 'disk': // DISK number |
||
| 232 | case 'egid': // Episode Global ID |
||
| 233 | case 'gnre': // GeNRE |
||
| 234 | case 'keyw': // KEYWord |
||
| 235 | case 'ldes': |
||
| 236 | case 'pcst': // PodCaST |
||
| 237 | case 'pgap': // GAPless Playback |
||
| 238 | case 'purd': // PURchase Date |
||
| 239 | case 'purl': // Podcast URL |
||
| 240 | case 'rati': |
||
| 241 | case 'rndu': |
||
| 242 | case 'rpdu': |
||
| 243 | case 'rtng': // RaTiNG |
||
| 244 | case 'stik': |
||
| 245 | case 'tmpo': // TeMPO (BPM) |
||
| 246 | case 'trkn': // TRacK Number |
||
| 247 | case 'tves': // TV EpiSode |
||
| 248 | case 'tvnn': // TV Network Name |
||
| 249 | case 'tvsh': // TV SHow Name |
||
| 250 | case 'tvsn': // TV SeasoN |
||
| 251 | case 'akID': // iTunes store account type |
||
| 252 | case 'apID': |
||
| 253 | case 'atID': |
||
| 254 | case 'cmID': |
||
| 255 | case 'cnID': |
||
| 256 | case 'geID': |
||
| 257 | case 'plID': |
||
| 258 | case 'sfID': // iTunes store country |
||
| 259 | case "\xA9".'alb': // ALBum |
||
| 260 | case "\xA9".'art': // ARTist |
||
| 261 | case "\xA9".'ART': |
||
| 262 | case "\xA9".'aut': |
||
| 263 | case "\xA9".'cmt': // CoMmenT |
||
| 264 | case "\xA9".'com': // COMposer |
||
| 265 | case "\xA9".'cpy': |
||
| 266 | case "\xA9".'day': // content created year |
||
| 267 | case "\xA9".'dir': |
||
| 268 | case "\xA9".'ed1': |
||
| 269 | case "\xA9".'ed2': |
||
| 270 | case "\xA9".'ed3': |
||
| 271 | case "\xA9".'ed4': |
||
| 272 | case "\xA9".'ed5': |
||
| 273 | case "\xA9".'ed6': |
||
| 274 | case "\xA9".'ed7': |
||
| 275 | case "\xA9".'ed8': |
||
| 276 | case "\xA9".'ed9': |
||
| 277 | case "\xA9".'enc': |
||
| 278 | case "\xA9".'fmt': |
||
| 279 | case "\xA9".'gen': // GENre |
||
| 280 | case "\xA9".'grp': // GRouPing |
||
| 281 | case "\xA9".'hst': |
||
| 282 | case "\xA9".'inf': |
||
| 283 | case "\xA9".'lyr': // LYRics |
||
| 284 | case "\xA9".'mak': |
||
| 285 | case "\xA9".'mod': |
||
| 286 | case "\xA9".'nam': // full NAMe |
||
| 287 | case "\xA9".'ope': |
||
| 288 | case "\xA9".'PRD': |
||
| 289 | case "\xA9".'prd': |
||
| 290 | case "\xA9".'prf': |
||
| 291 | case "\xA9".'req': |
||
| 292 | case "\xA9".'src': |
||
| 293 | case "\xA9".'swr': |
||
| 294 | case "\xA9".'too': // encoder |
||
| 295 | case "\xA9".'trk': // TRacK |
||
| 296 | case "\xA9".'url': |
||
| 297 | case "\xA9".'wrn': |
||
| 298 | case "\xA9".'wrt': // WRiTer |
||
| 299 | case '----': // itunes specific |
||
| 300 | if ($atom_parent == 'udta') { |
||
| 301 | // User data atom handler |
||
| 302 | $atom_structure['data_length'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 2)); |
||
| 303 | $atom_structure['language_id'] = getid3_lib::BigEndian2Int(substr($atom_data, 2, 2)); |
||
| 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; |
||
| 313 | if (substr($atom_data, 2, 2) == "\x10\xB5") { |
||
| 314 | // not sure what it means, but observed on iPhone4 data. |
||
| 315 | // Each $atom_data has 2 bytes of datasize, plus 0x10B5, then data |
||
| 316 | while ($atomoffset < strlen($atom_data)) { |
||
| 317 | $boxsmallsize = getid3_lib::BigEndian2Int(substr($atom_data, $atomoffset, 2)); |
||
| 318 | $boxsmalltype = substr($atom_data, $atomoffset + 2, 2); |
||
| 319 | $boxsmalldata = substr($atom_data, $atomoffset + 4, $boxsmallsize); |
||
| 320 | if ($boxsmallsize <= 1) { |
||
| 321 | $info['warning'][] = 'Invalid QuickTime atom smallbox size "'.$boxsmallsize.'" in atom "'.preg_replace('#[^a-zA-Z0-9 _\\-]#', '?', $atomname).'" at offset: '.($atom_structure['offset'] + $atomoffset); |
||
| 322 | $atom_structure['data'] = null; |
||
| 323 | $atomoffset = strlen($atom_data); |
||
| 324 | break; |
||
| 325 | } |
||
| 326 | switch ($boxsmalltype) { |
||
| 327 | case "\x10\xB5": |
||
| 328 | $atom_structure['data'] = $boxsmalldata; |
||
| 329 | break; |
||
| 330 | default: |
||
| 331 | $info['warning'][] = 'Unknown QuickTime smallbox type: "'.preg_replace('#[^a-zA-Z0-9 _\\-]#', '?', $boxsmalltype).'" ('.trim(getid3_lib::PrintHexBytes($boxsmalltype)).') at offset '.$baseoffset; |
||
| 332 | $atom_structure['data'] = $atom_data; |
||
| 333 | break; |
||
| 334 | } |
||
| 335 | $atomoffset += (4 + $boxsmallsize); |
||
| 336 | } |
||
| 337 | } else { |
||
| 338 | while ($atomoffset < strlen($atom_data)) { |
||
| 339 | $boxsize = getid3_lib::BigEndian2Int(substr($atom_data, $atomoffset, 4)); |
||
| 340 | $boxtype = substr($atom_data, $atomoffset + 4, 4); |
||
| 341 | $boxdata = substr($atom_data, $atomoffset + 8, $boxsize - 8); |
||
| 342 | if ($boxsize <= 1) { |
||
| 343 | $info['warning'][] = 'Invalid QuickTime atom box size "'.$boxsize.'" in atom "'.preg_replace('#[^a-zA-Z0-9 _\\-]#', '?', $atomname).'" at offset: '.($atom_structure['offset'] + $atomoffset); |
||
| 344 | $atom_structure['data'] = null; |
||
| 345 | $atomoffset = strlen($atom_data); |
||
| 346 | break; |
||
| 347 | } |
||
| 348 | $atomoffset += $boxsize; |
||
| 349 | |||
| 350 | switch ($boxtype) { |
||
| 351 | case 'mean': |
||
| 352 | case 'name': |
||
| 353 | $atom_structure[$boxtype] = substr($boxdata, 4); |
||
| 354 | break; |
||
| 355 | |||
| 356 | case 'data': |
||
| 357 | $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($boxdata, 0, 1)); |
||
| 358 | $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($boxdata, 1, 3)); |
||
| 359 | switch ($atom_structure['flags_raw']) { |
||
| 360 | case 0: // data flag |
||
| 361 | case 21: // tmpo/cpil flag |
||
| 362 | switch ($atomname) { |
||
| 363 | case 'cpil': |
||
| 364 | case 'pcst': |
||
| 365 | case 'pgap': |
||
| 366 | $atom_structure['data'] = getid3_lib::BigEndian2Int(substr($boxdata, 8, 1)); |
||
| 367 | break; |
||
| 368 | |||
| 369 | case 'tmpo': |
||
| 370 | $atom_structure['data'] = getid3_lib::BigEndian2Int(substr($boxdata, 8, 2)); |
||
| 371 | break; |
||
| 372 | |||
| 373 | case 'disk': |
||
| 374 | case 'trkn': |
||
| 375 | $num = getid3_lib::BigEndian2Int(substr($boxdata, 10, 2)); |
||
| 376 | $num_total = getid3_lib::BigEndian2Int(substr($boxdata, 12, 2)); |
||
| 377 | $atom_structure['data'] = empty($num) ? '' : $num; |
||
| 378 | $atom_structure['data'] .= empty($num_total) ? '' : '/'.$num_total; |
||
| 379 | break; |
||
| 380 | |||
| 381 | case 'gnre': |
||
| 382 | $GenreID = getid3_lib::BigEndian2Int(substr($boxdata, 8, 4)); |
||
| 383 | $atom_structure['data'] = getid3_id3v1::LookupGenreName($GenreID - 1); |
||
| 384 | break; |
||
| 385 | |||
| 386 | case 'rtng': |
||
| 387 | $atom_structure[$atomname] = getid3_lib::BigEndian2Int(substr($boxdata, 8, 1)); |
||
| 388 | $atom_structure['data'] = $this->QuicktimeContentRatingLookup($atom_structure[$atomname]); |
||
| 389 | break; |
||
| 390 | |||
| 391 | case 'stik': |
||
| 392 | $atom_structure[$atomname] = getid3_lib::BigEndian2Int(substr($boxdata, 8, 1)); |
||
| 393 | $atom_structure['data'] = $this->QuicktimeSTIKLookup($atom_structure[$atomname]); |
||
| 394 | break; |
||
| 395 | |||
| 396 | case 'sfID': |
||
| 397 | $atom_structure[$atomname] = getid3_lib::BigEndian2Int(substr($boxdata, 8, 4)); |
||
| 398 | $atom_structure['data'] = $this->QuicktimeStoreFrontCodeLookup($atom_structure[$atomname]); |
||
| 399 | break; |
||
| 400 | |||
| 401 | case 'egid': |
||
| 402 | case 'purl': |
||
| 403 | $atom_structure['data'] = substr($boxdata, 8); |
||
| 404 | break; |
||
| 405 | |||
| 406 | default: |
||
| 407 | $atom_structure['data'] = getid3_lib::BigEndian2Int(substr($boxdata, 8, 4)); |
||
| 408 | } |
||
| 409 | break; |
||
| 410 | |||
| 411 | case 1: // text flag |
||
| 412 | case 13: // image flag |
||
| 413 | default: |
||
| 414 | $atom_structure['data'] = substr($boxdata, 8); |
||
| 415 | if ($atomname == 'covr') { |
||
| 416 | // not a foolproof check, but better than nothing |
||
| 417 | if (preg_match('#^\xFF\xD8\xFF#', $atom_structure['data'])) { |
||
| 418 | $atom_structure['image_mime'] = 'image/jpeg'; |
||
| 419 | } elseif (preg_match('#^\x89\x50\x4E\x47\x0D\x0A\x1A\x0A#', $atom_structure['data'])) { |
||
| 420 | $atom_structure['image_mime'] = 'image/png'; |
||
| 421 | } elseif (preg_match('#^GIF#', $atom_structure['data'])) { |
||
| 422 | $atom_structure['image_mime'] = 'image/gif'; |
||
| 423 | } |
||
| 424 | } |
||
| 425 | break; |
||
| 426 | |||
| 427 | } |
||
| 428 | break; |
||
| 429 | |||
| 430 | default: |
||
| 431 | $info['warning'][] = 'Unknown QuickTime box type: "'.preg_replace('#[^a-zA-Z0-9 _\\-]#', '?', $boxtype).'" ('.trim(getid3_lib::PrintHexBytes($boxtype)).') at offset '.$baseoffset; |
||
| 432 | $atom_structure['data'] = $atom_data; |
||
| 433 | |||
| 434 | } |
||
| 435 | } |
||
| 436 | } |
||
| 437 | } |
||
| 438 | $this->CopyToAppropriateCommentsSection($atomname, $atom_structure['data'], $atom_structure['name']); |
||
| 439 | break; |
||
| 440 | |||
| 441 | |||
| 442 | case 'play': // auto-PLAY atom |
||
| 443 | $atom_structure['autoplay'] = (bool) getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); |
||
| 444 | |||
| 445 | $info['quicktime']['autoplay'] = $atom_structure['autoplay']; |
||
| 446 | break; |
||
| 447 | |||
| 448 | |||
| 449 | case 'WLOC': // Window LOCation atom |
||
| 450 | $atom_structure['location_x'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 2)); |
||
| 451 | $atom_structure['location_y'] = getid3_lib::BigEndian2Int(substr($atom_data, 2, 2)); |
||
| 452 | break; |
||
| 453 | |||
| 454 | |||
| 455 | case 'LOOP': // LOOPing atom |
||
| 456 | case 'SelO': // play SELection Only atom |
||
| 457 | case 'AllF': // play ALL Frames atom |
||
| 458 | $atom_structure['data'] = getid3_lib::BigEndian2Int($atom_data); |
||
| 459 | break; |
||
| 460 | |||
| 461 | |||
| 462 | case 'name': // |
||
| 463 | case 'MCPS': // Media Cleaner PRo |
||
| 464 | case '@PRM': // adobe PReMiere version |
||
| 465 | case '@PRQ': // adobe PRemiere Quicktime version |
||
| 466 | $atom_structure['data'] = $atom_data; |
||
| 467 | break; |
||
| 468 | |||
| 469 | |||
| 470 | case 'cmvd': // Compressed MooV Data atom |
||
| 471 | // Code by ubergeekØubergeek*tv based on information from |
||
| 472 | // http://developer.apple.com/quicktime/icefloe/dispatch012.html |
||
| 473 | $atom_structure['unCompressedSize'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 4)); |
||
| 474 | |||
| 475 | $CompressedFileData = substr($atom_data, 4); |
||
| 476 | if ($UncompressedHeader = @gzuncompress($CompressedFileData)) { |
||
| 477 | $atom_structure['subatoms'] = $this->QuicktimeParseContainerAtom($UncompressedHeader, 0, $atomHierarchy, $ParseAllPossibleAtoms); |
||
| 478 | } else { |
||
| 479 | $info['warning'][] = 'Error decompressing compressed MOV atom at offset '.$atom_structure['offset']; |
||
| 480 | } |
||
| 481 | break; |
||
| 482 | |||
| 483 | |||
| 484 | case 'dcom': // Data COMpression atom |
||
| 485 | $atom_structure['compression_id'] = $atom_data; |
||
| 486 | $atom_structure['compression_text'] = $this->QuicktimeDCOMLookup($atom_data); |
||
| 487 | break; |
||
| 488 | |||
| 489 | |||
| 490 | case 'rdrf': // Reference movie Data ReFerence atom |
||
| 491 | $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); |
||
| 492 | $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); |
||
| 493 | $atom_structure['flags']['internal_data'] = (bool) ($atom_structure['flags_raw'] & 0x000001); |
||
| 494 | |||
| 495 | $atom_structure['reference_type_name'] = substr($atom_data, 4, 4); |
||
| 496 | $atom_structure['reference_length'] = getid3_lib::BigEndian2Int(substr($atom_data, 8, 4)); |
||
| 497 | switch ($atom_structure['reference_type_name']) { |
||
| 498 | case 'url ': |
||
| 499 | $atom_structure['url'] = $this->NoNullString(substr($atom_data, 12)); |
||
| 500 | break; |
||
| 501 | |||
| 502 | case 'alis': |
||
| 503 | $atom_structure['file_alias'] = substr($atom_data, 12); |
||
| 504 | break; |
||
| 505 | |||
| 506 | case 'rsrc': |
||
| 507 | $atom_structure['resource_alias'] = substr($atom_data, 12); |
||
| 508 | break; |
||
| 509 | |||
| 510 | default: |
||
| 511 | $atom_structure['data'] = substr($atom_data, 12); |
||
| 512 | break; |
||
| 513 | } |
||
| 514 | break; |
||
| 515 | |||
| 516 | |||
| 517 | case 'rmqu': // Reference Movie QUality atom |
||
| 518 | $atom_structure['movie_quality'] = getid3_lib::BigEndian2Int($atom_data); |
||
| 519 | break; |
||
| 520 | |||
| 521 | |||
| 522 | case 'rmcs': // Reference Movie Cpu Speed atom |
||
| 523 | $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); |
||
| 524 | $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); // hardcoded: 0x0000 |
||
| 525 | $atom_structure['cpu_speed_rating'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 2)); |
||
| 526 | break; |
||
| 527 | |||
| 528 | |||
| 529 | case 'rmvc': // Reference Movie Version Check atom |
||
| 530 | $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); |
||
| 531 | $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); // hardcoded: 0x0000 |
||
| 532 | $atom_structure['gestalt_selector'] = substr($atom_data, 4, 4); |
||
| 533 | $atom_structure['gestalt_value_mask'] = getid3_lib::BigEndian2Int(substr($atom_data, 8, 4)); |
||
| 534 | $atom_structure['gestalt_value'] = getid3_lib::BigEndian2Int(substr($atom_data, 12, 4)); |
||
| 535 | $atom_structure['gestalt_check_type'] = getid3_lib::BigEndian2Int(substr($atom_data, 14, 2)); |
||
| 536 | break; |
||
| 537 | |||
| 538 | |||
| 539 | case 'rmcd': // Reference Movie Component check atom |
||
| 540 | $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); |
||
| 541 | $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); // hardcoded: 0x0000 |
||
| 542 | $atom_structure['component_type'] = substr($atom_data, 4, 4); |
||
| 543 | $atom_structure['component_subtype'] = substr($atom_data, 8, 4); |
||
| 544 | $atom_structure['component_manufacturer'] = substr($atom_data, 12, 4); |
||
| 545 | $atom_structure['component_flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 16, 4)); |
||
| 546 | $atom_structure['component_flags_mask'] = getid3_lib::BigEndian2Int(substr($atom_data, 20, 4)); |
||
| 547 | $atom_structure['component_min_version'] = getid3_lib::BigEndian2Int(substr($atom_data, 24, 4)); |
||
| 548 | break; |
||
| 549 | |||
| 550 | |||
| 551 | case 'rmdr': // Reference Movie Data Rate atom |
||
| 552 | $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); |
||
| 553 | $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); // hardcoded: 0x0000 |
||
| 554 | $atom_structure['data_rate'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4)); |
||
| 555 | |||
| 556 | $atom_structure['data_rate_bps'] = $atom_structure['data_rate'] * 10; |
||
| 557 | break; |
||
| 558 | |||
| 559 | |||
| 560 | case 'rmla': // Reference Movie Language Atom |
||
| 561 | $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); |
||
| 562 | $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); // hardcoded: 0x0000 |
||
| 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 | |||
| 572 | case 'rmla': // Reference Movie Language Atom |
||
| 573 | $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); |
||
| 574 | $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); // hardcoded: 0x0000 |
||
| 575 | $atom_structure['track_id'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 2)); |
||
| 576 | break; |
||
| 577 | |||
| 578 | |||
| 579 | case 'ptv ': // Print To Video - defines a movie's full screen mode |
||
| 580 | // http://developer.apple.com/documentation/QuickTime/APIREF/SOURCESIV/at_ptv-_pg.htm |
||
| 581 | $atom_structure['display_size_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 2)); |
||
| 582 | $atom_structure['reserved_1'] = getid3_lib::BigEndian2Int(substr($atom_data, 2, 2)); // hardcoded: 0x0000 |
||
| 583 | $atom_structure['reserved_2'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 2)); // hardcoded: 0x0000 |
||
| 584 | $atom_structure['slide_show_flag'] = getid3_lib::BigEndian2Int(substr($atom_data, 6, 1)); |
||
| 585 | $atom_structure['play_on_open_flag'] = getid3_lib::BigEndian2Int(substr($atom_data, 7, 1)); |
||
| 586 | |||
| 587 | $atom_structure['flags']['play_on_open'] = (bool) $atom_structure['play_on_open_flag']; |
||
| 588 | $atom_structure['flags']['slide_show'] = (bool) $atom_structure['slide_show_flag']; |
||
| 589 | |||
| 590 | $ptv_lookup[0] = 'normal'; |
||
| 591 | $ptv_lookup[1] = 'double'; |
||
| 592 | $ptv_lookup[2] = 'half'; |
||
| 593 | $ptv_lookup[3] = 'full'; |
||
| 594 | $ptv_lookup[4] = 'current'; |
||
| 595 | if (isset($ptv_lookup[$atom_structure['display_size_raw']])) { |
||
| 596 | $atom_structure['display_size'] = $ptv_lookup[$atom_structure['display_size_raw']]; |
||
| 597 | } else { |
||
| 598 | $info['warning'][] = 'unknown "ptv " display constant ('.$atom_structure['display_size_raw'].')'; |
||
| 599 | } |
||
| 600 | break; |
||
| 601 | |||
| 602 | |||
| 603 | case 'stsd': // Sample Table Sample Description atom |
||
| 604 | $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); |
||
| 605 | $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); // hardcoded: 0x0000 |
||
| 606 | $atom_structure['number_entries'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4)); |
||
| 607 | $stsdEntriesDataOffset = 8; |
||
| 608 | for ($i = 0; $i < $atom_structure['number_entries']; $i++) { |
||
| 609 | $atom_structure['sample_description_table'][$i]['size'] = getid3_lib::BigEndian2Int(substr($atom_data, $stsdEntriesDataOffset, 4)); |
||
| 610 | $stsdEntriesDataOffset += 4; |
||
| 611 | $atom_structure['sample_description_table'][$i]['data_format'] = substr($atom_data, $stsdEntriesDataOffset, 4); |
||
| 612 | $stsdEntriesDataOffset += 4; |
||
| 613 | $atom_structure['sample_description_table'][$i]['reserved'] = getid3_lib::BigEndian2Int(substr($atom_data, $stsdEntriesDataOffset, 6)); |
||
| 614 | $stsdEntriesDataOffset += 6; |
||
| 615 | $atom_structure['sample_description_table'][$i]['reference_index'] = getid3_lib::BigEndian2Int(substr($atom_data, $stsdEntriesDataOffset, 2)); |
||
| 616 | $stsdEntriesDataOffset += 2; |
||
| 617 | $atom_structure['sample_description_table'][$i]['data'] = substr($atom_data, $stsdEntriesDataOffset, ($atom_structure['sample_description_table'][$i]['size'] - 4 - 4 - 6 - 2)); |
||
| 618 | $stsdEntriesDataOffset += ($atom_structure['sample_description_table'][$i]['size'] - 4 - 4 - 6 - 2); |
||
| 619 | |||
| 620 | $atom_structure['sample_description_table'][$i]['encoder_version'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 0, 2)); |
||
| 621 | $atom_structure['sample_description_table'][$i]['encoder_revision'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 2, 2)); |
||
| 622 | $atom_structure['sample_description_table'][$i]['encoder_vendor'] = substr($atom_structure['sample_description_table'][$i]['data'], 4, 4); |
||
| 623 | |||
| 624 | switch ($atom_structure['sample_description_table'][$i]['encoder_vendor']) { |
||
| 625 | |||
| 626 | case "\x00\x00\x00\x00": |
||
| 627 | // audio tracks |
||
| 628 | $atom_structure['sample_description_table'][$i]['audio_channels'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 8, 2)); |
||
| 629 | $atom_structure['sample_description_table'][$i]['audio_bit_depth'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 10, 2)); |
||
| 630 | $atom_structure['sample_description_table'][$i]['audio_compression_id'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 12, 2)); |
||
| 631 | $atom_structure['sample_description_table'][$i]['audio_packet_size'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 14, 2)); |
||
| 632 | $atom_structure['sample_description_table'][$i]['audio_sample_rate'] = getid3_lib::FixedPoint16_16(substr($atom_structure['sample_description_table'][$i]['data'], 16, 4)); |
||
| 633 | |||
| 634 | // video tracks |
||
| 635 | // http://developer.apple.com/library/mac/#documentation/QuickTime/QTFF/QTFFChap3/qtff3.html |
||
| 636 | $atom_structure['sample_description_table'][$i]['temporal_quality'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 8, 4)); |
||
| 637 | $atom_structure['sample_description_table'][$i]['spatial_quality'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 12, 4)); |
||
| 638 | $atom_structure['sample_description_table'][$i]['width'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 16, 2)); |
||
| 639 | $atom_structure['sample_description_table'][$i]['height'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 18, 2)); |
||
| 640 | $atom_structure['sample_description_table'][$i]['resolution_x'] = getid3_lib::FixedPoint16_16(substr($atom_structure['sample_description_table'][$i]['data'], 24, 4)); |
||
| 641 | $atom_structure['sample_description_table'][$i]['resolution_y'] = getid3_lib::FixedPoint16_16(substr($atom_structure['sample_description_table'][$i]['data'], 28, 4)); |
||
| 642 | $atom_structure['sample_description_table'][$i]['data_size'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 32, 4)); |
||
| 643 | $atom_structure['sample_description_table'][$i]['frame_count'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 36, 2)); |
||
| 644 | $atom_structure['sample_description_table'][$i]['compressor_name'] = substr($atom_structure['sample_description_table'][$i]['data'], 38, 4); |
||
| 645 | $atom_structure['sample_description_table'][$i]['pixel_depth'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 42, 2)); |
||
| 646 | $atom_structure['sample_description_table'][$i]['color_table_id'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 44, 2)); |
||
| 647 | |||
| 648 | switch ($atom_structure['sample_description_table'][$i]['data_format']) { |
||
| 649 | case '2vuY': |
||
| 650 | case 'avc1': |
||
| 651 | case 'cvid': |
||
| 652 | case 'dvc ': |
||
| 653 | case 'dvcp': |
||
| 654 | case 'gif ': |
||
| 655 | case 'h263': |
||
| 656 | case 'jpeg': |
||
| 657 | case 'kpcd': |
||
| 658 | case 'mjpa': |
||
| 659 | case 'mjpb': |
||
| 660 | case 'mp4v': |
||
| 661 | case 'png ': |
||
| 662 | case 'raw ': |
||
| 663 | case 'rle ': |
||
| 664 | case 'rpza': |
||
| 665 | case 'smc ': |
||
| 666 | case 'SVQ1': |
||
| 667 | case 'SVQ3': |
||
| 668 | case 'tiff': |
||
| 669 | case 'v210': |
||
| 670 | case 'v216': |
||
| 671 | case 'v308': |
||
| 672 | case 'v408': |
||
| 673 | case 'v410': |
||
| 674 | case 'yuv2': |
||
| 675 | $info['fileformat'] = 'mp4'; |
||
| 676 | $info['video']['fourcc'] = $atom_structure['sample_description_table'][$i]['data_format']; |
||
| 677 | // http://www.getid3.org/phpBB3/viewtopic.php?t=1550 |
||
| 678 | //if ((!empty($atom_structure['sample_description_table'][$i]['width']) && !empty($atom_structure['sample_description_table'][$i]['width'])) && (empty($info['video']['resolution_x']) || empty($info['video']['resolution_y']) || (number_format($info['video']['resolution_x'], 6) != number_format(round($info['video']['resolution_x']), 6)) || (number_format($info['video']['resolution_y'], 6) != number_format(round($info['video']['resolution_y']), 6)))) { // ugly check for floating point numbers |
||
| 679 | if (!empty($atom_structure['sample_description_table'][$i]['width']) && !empty($atom_structure['sample_description_table'][$i]['height'])) { |
||
| 680 | // assume that values stored here are more important than values stored in [tkhd] atom |
||
| 681 | $info['video']['resolution_x'] = $atom_structure['sample_description_table'][$i]['width']; |
||
| 682 | $info['video']['resolution_y'] = $atom_structure['sample_description_table'][$i]['height']; |
||
| 683 | $info['quicktime']['video']['resolution_x'] = $info['video']['resolution_x']; |
||
| 684 | $info['quicktime']['video']['resolution_y'] = $info['video']['resolution_y']; |
||
| 685 | } |
||
| 686 | break; |
||
| 687 | |||
| 688 | case 'qtvr': |
||
| 689 | $info['video']['dataformat'] = 'quicktimevr'; |
||
| 690 | break; |
||
| 691 | |||
| 692 | case 'mp4a': |
||
| 693 | default: |
||
| 694 | $info['quicktime']['audio']['codec'] = $this->QuicktimeAudioCodecLookup($atom_structure['sample_description_table'][$i]['data_format']); |
||
| 695 | $info['quicktime']['audio']['sample_rate'] = $atom_structure['sample_description_table'][$i]['audio_sample_rate']; |
||
| 696 | $info['quicktime']['audio']['channels'] = $atom_structure['sample_description_table'][$i]['audio_channels']; |
||
| 697 | $info['quicktime']['audio']['bit_depth'] = $atom_structure['sample_description_table'][$i]['audio_bit_depth']; |
||
| 698 | $info['audio']['codec'] = $info['quicktime']['audio']['codec']; |
||
| 699 | $info['audio']['sample_rate'] = $info['quicktime']['audio']['sample_rate']; |
||
| 700 | $info['audio']['channels'] = $info['quicktime']['audio']['channels']; |
||
| 701 | $info['audio']['bits_per_sample'] = $info['quicktime']['audio']['bit_depth']; |
||
| 702 | switch ($atom_structure['sample_description_table'][$i]['data_format']) { |
||
| 703 | case 'raw ': // PCM |
||
| 704 | case 'alac': // Apple Lossless Audio Codec |
||
| 705 | $info['audio']['lossless'] = true; |
||
| 706 | break; |
||
| 707 | default: |
||
| 708 | $info['audio']['lossless'] = false; |
||
| 709 | break; |
||
| 710 | } |
||
| 711 | break; |
||
| 712 | } |
||
| 713 | break; |
||
| 714 | |||
| 715 | default: |
||
| 716 | switch ($atom_structure['sample_description_table'][$i]['data_format']) { |
||
| 717 | case 'mp4s': |
||
| 718 | $info['fileformat'] = 'mp4'; |
||
| 719 | break; |
||
| 720 | |||
| 721 | default: |
||
| 722 | // video atom |
||
| 723 | $atom_structure['sample_description_table'][$i]['video_temporal_quality'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 8, 4)); |
||
| 724 | $atom_structure['sample_description_table'][$i]['video_spatial_quality'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 12, 4)); |
||
| 725 | $atom_structure['sample_description_table'][$i]['video_frame_width'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 16, 2)); |
||
| 726 | $atom_structure['sample_description_table'][$i]['video_frame_height'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 18, 2)); |
||
| 727 | $atom_structure['sample_description_table'][$i]['video_resolution_x'] = getid3_lib::FixedPoint16_16(substr($atom_structure['sample_description_table'][$i]['data'], 20, 4)); |
||
| 728 | $atom_structure['sample_description_table'][$i]['video_resolution_y'] = getid3_lib::FixedPoint16_16(substr($atom_structure['sample_description_table'][$i]['data'], 24, 4)); |
||
| 729 | $atom_structure['sample_description_table'][$i]['video_data_size'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 28, 4)); |
||
| 730 | $atom_structure['sample_description_table'][$i]['video_frame_count'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 32, 2)); |
||
| 731 | $atom_structure['sample_description_table'][$i]['video_encoder_name_len'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 34, 1)); |
||
| 732 | $atom_structure['sample_description_table'][$i]['video_encoder_name'] = substr($atom_structure['sample_description_table'][$i]['data'], 35, $atom_structure['sample_description_table'][$i]['video_encoder_name_len']); |
||
| 733 | $atom_structure['sample_description_table'][$i]['video_pixel_color_depth'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 66, 2)); |
||
| 734 | $atom_structure['sample_description_table'][$i]['video_color_table_id'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 68, 2)); |
||
| 735 | |||
| 736 | $atom_structure['sample_description_table'][$i]['video_pixel_color_type'] = (($atom_structure['sample_description_table'][$i]['video_pixel_color_depth'] > 32) ? 'grayscale' : 'color'); |
||
| 737 | $atom_structure['sample_description_table'][$i]['video_pixel_color_name'] = $this->QuicktimeColorNameLookup($atom_structure['sample_description_table'][$i]['video_pixel_color_depth']); |
||
| 738 | |||
| 739 | if ($atom_structure['sample_description_table'][$i]['video_pixel_color_name'] != 'invalid') { |
||
| 740 | $info['quicktime']['video']['codec_fourcc'] = $atom_structure['sample_description_table'][$i]['data_format']; |
||
| 741 | $info['quicktime']['video']['codec_fourcc_lookup'] = $this->QuicktimeVideoCodecLookup($atom_structure['sample_description_table'][$i]['data_format']); |
||
| 742 | $info['quicktime']['video']['codec'] = (($atom_structure['sample_description_table'][$i]['video_encoder_name_len'] > 0) ? $atom_structure['sample_description_table'][$i]['video_encoder_name'] : $atom_structure['sample_description_table'][$i]['data_format']); |
||
| 743 | $info['quicktime']['video']['color_depth'] = $atom_structure['sample_description_table'][$i]['video_pixel_color_depth']; |
||
| 744 | $info['quicktime']['video']['color_depth_name'] = $atom_structure['sample_description_table'][$i]['video_pixel_color_name']; |
||
| 745 | |||
| 746 | $info['video']['codec'] = $info['quicktime']['video']['codec']; |
||
| 747 | $info['video']['bits_per_sample'] = $info['quicktime']['video']['color_depth']; |
||
| 748 | } |
||
| 749 | $info['video']['lossless'] = false; |
||
| 750 | $info['video']['pixel_aspect_ratio'] = (float) 1; |
||
| 751 | break; |
||
| 752 | } |
||
| 753 | break; |
||
| 754 | } |
||
| 755 | switch (strtolower($atom_structure['sample_description_table'][$i]['data_format'])) { |
||
| 756 | case 'mp4a': |
||
| 757 | $info['audio']['dataformat'] = 'mp4'; |
||
| 758 | $info['quicktime']['audio']['codec'] = 'mp4'; |
||
| 759 | break; |
||
| 760 | |||
| 761 | case '3ivx': |
||
| 762 | case '3iv1': |
||
| 763 | case '3iv2': |
||
| 764 | $info['video']['dataformat'] = '3ivx'; |
||
| 765 | break; |
||
| 766 | |||
| 767 | case 'xvid': |
||
| 768 | $info['video']['dataformat'] = 'xvid'; |
||
| 769 | break; |
||
| 770 | |||
| 771 | case 'mp4v': |
||
| 772 | $info['video']['dataformat'] = 'mpeg4'; |
||
| 773 | break; |
||
| 774 | |||
| 775 | case 'divx': |
||
| 776 | case 'div1': |
||
| 777 | case 'div2': |
||
| 778 | case 'div3': |
||
| 779 | case 'div4': |
||
| 780 | case 'div5': |
||
| 781 | case 'div6': |
||
| 782 | $info['video']['dataformat'] = 'divx'; |
||
| 783 | break; |
||
| 784 | |||
| 785 | default: |
||
| 786 | // do nothing |
||
| 787 | break; |
||
| 788 | } |
||
| 789 | unset($atom_structure['sample_description_table'][$i]['data']); |
||
| 790 | } |
||
| 791 | break; |
||
| 792 | |||
| 793 | |||
| 794 | case 'stts': // Sample Table Time-to-Sample atom |
||
| 795 | $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); |
||
| 796 | $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); // hardcoded: 0x0000 |
||
| 797 | $atom_structure['number_entries'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4)); |
||
| 798 | $sttsEntriesDataOffset = 8; |
||
| 799 | //$FrameRateCalculatorArray = array(); |
||
| 800 | $frames_count = 0; |
||
| 801 | |||
| 802 | $max_stts_entries_to_scan = ($info['php_memory_limit'] ? min(floor($this->getid3->memory_limit / 10000), $atom_structure['number_entries']) : $atom_structure['number_entries']); |
||
| 803 | if ($max_stts_entries_to_scan < $atom_structure['number_entries']) { |
||
| 804 | $info['warning'][] = 'QuickTime atom "stts" has '.$atom_structure['number_entries'].' but only scanning the first '.$max_stts_entries_to_scan.' entries due to limited PHP memory available ('.floor($atom_structure['number_entries'] / 1048576).'MB).'; |
||
| 805 | } |
||
| 806 | for ($i = 0; $i < $max_stts_entries_to_scan; $i++) { |
||
| 807 | $atom_structure['time_to_sample_table'][$i]['sample_count'] = getid3_lib::BigEndian2Int(substr($atom_data, $sttsEntriesDataOffset, 4)); |
||
| 808 | $sttsEntriesDataOffset += 4; |
||
| 809 | $atom_structure['time_to_sample_table'][$i]['sample_duration'] = getid3_lib::BigEndian2Int(substr($atom_data, $sttsEntriesDataOffset, 4)); |
||
| 810 | $sttsEntriesDataOffset += 4; |
||
| 811 | |||
| 812 | $frames_count += $atom_structure['time_to_sample_table'][$i]['sample_count']; |
||
| 813 | |||
| 814 | // THIS SECTION REPLACED WITH CODE IN "stbl" ATOM |
||
| 815 | //if (!empty($info['quicktime']['time_scale']) && ($atom_structure['time_to_sample_table'][$i]['sample_duration'] > 0)) { |
||
| 816 | // $stts_new_framerate = $info['quicktime']['time_scale'] / $atom_structure['time_to_sample_table'][$i]['sample_duration']; |
||
| 817 | // if ($stts_new_framerate <= 60) { |
||
| 818 | // // some atoms have durations of "1" giving a very large framerate, which probably is not right |
||
| 819 | // $info['video']['frame_rate'] = max($info['video']['frame_rate'], $stts_new_framerate); |
||
| 820 | // } |
||
| 821 | //} |
||
| 822 | // |
||
| 823 | //$FrameRateCalculatorArray[($info['quicktime']['time_scale'] / $atom_structure['time_to_sample_table'][$i]['sample_duration'])] += $atom_structure['time_to_sample_table'][$i]['sample_count']; |
||
| 824 | } |
||
| 825 | $info['quicktime']['stts_framecount'][] = $frames_count; |
||
| 826 | //$sttsFramesTotal = 0; |
||
| 827 | //$sttsSecondsTotal = 0; |
||
| 828 | //foreach ($FrameRateCalculatorArray as $frames_per_second => $frame_count) { |
||
| 829 | // if (($frames_per_second > 60) || ($frames_per_second < 1)) { |
||
| 830 | // // not video FPS information, probably audio information |
||
| 831 | // $sttsFramesTotal = 0; |
||
| 832 | // $sttsSecondsTotal = 0; |
||
| 833 | // break; |
||
| 834 | // } |
||
| 835 | // $sttsFramesTotal += $frame_count; |
||
| 836 | // $sttsSecondsTotal += $frame_count / $frames_per_second; |
||
| 837 | //} |
||
| 838 | //if (($sttsFramesTotal > 0) && ($sttsSecondsTotal > 0)) { |
||
| 839 | // if (($sttsFramesTotal / $sttsSecondsTotal) > $info['video']['frame_rate']) { |
||
| 840 | // $info['video']['frame_rate'] = $sttsFramesTotal / $sttsSecondsTotal; |
||
| 841 | // } |
||
| 842 | //} |
||
| 843 | break; |
||
| 844 | |||
| 845 | |||
| 846 | case 'stss': // Sample Table Sync Sample (key frames) atom |
||
| 847 | if ($ParseAllPossibleAtoms) { |
||
| 848 | $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); |
||
| 849 | $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); // hardcoded: 0x0000 |
||
| 850 | $atom_structure['number_entries'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4)); |
||
| 851 | $stssEntriesDataOffset = 8; |
||
| 852 | for ($i = 0; $i < $atom_structure['number_entries']; $i++) { |
||
| 853 | $atom_structure['time_to_sample_table'][$i] = getid3_lib::BigEndian2Int(substr($atom_data, $stssEntriesDataOffset, 4)); |
||
| 854 | $stssEntriesDataOffset += 4; |
||
| 855 | } |
||
| 856 | } |
||
| 857 | break; |
||
| 858 | |||
| 859 | |||
| 860 | case 'stsc': // Sample Table Sample-to-Chunk atom |
||
| 861 | if ($ParseAllPossibleAtoms) { |
||
| 862 | $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); |
||
| 863 | $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); // hardcoded: 0x0000 |
||
| 864 | $atom_structure['number_entries'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4)); |
||
| 865 | $stscEntriesDataOffset = 8; |
||
| 866 | for ($i = 0; $i < $atom_structure['number_entries']; $i++) { |
||
| 867 | $atom_structure['sample_to_chunk_table'][$i]['first_chunk'] = getid3_lib::BigEndian2Int(substr($atom_data, $stscEntriesDataOffset, 4)); |
||
| 868 | $stscEntriesDataOffset += 4; |
||
| 869 | $atom_structure['sample_to_chunk_table'][$i]['samples_per_chunk'] = getid3_lib::BigEndian2Int(substr($atom_data, $stscEntriesDataOffset, 4)); |
||
| 870 | $stscEntriesDataOffset += 4; |
||
| 871 | $atom_structure['sample_to_chunk_table'][$i]['sample_description'] = getid3_lib::BigEndian2Int(substr($atom_data, $stscEntriesDataOffset, 4)); |
||
| 872 | $stscEntriesDataOffset += 4; |
||
| 873 | } |
||
| 874 | } |
||
| 875 | break; |
||
| 876 | |||
| 877 | |||
| 878 | case 'stsz': // Sample Table SiZe atom |
||
| 879 | if ($ParseAllPossibleAtoms) { |
||
| 880 | $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); |
||
| 881 | $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); // hardcoded: 0x0000 |
||
| 882 | $atom_structure['sample_size'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4)); |
||
| 883 | $atom_structure['number_entries'] = getid3_lib::BigEndian2Int(substr($atom_data, 8, 4)); |
||
| 884 | $stszEntriesDataOffset = 12; |
||
| 885 | if ($atom_structure['sample_size'] == 0) { |
||
| 886 | for ($i = 0; $i < $atom_structure['number_entries']; $i++) { |
||
| 887 | $atom_structure['sample_size_table'][$i] = getid3_lib::BigEndian2Int(substr($atom_data, $stszEntriesDataOffset, 4)); |
||
| 888 | $stszEntriesDataOffset += 4; |
||
| 889 | } |
||
| 890 | } |
||
| 891 | } |
||
| 892 | break; |
||
| 893 | |||
| 894 | |||
| 895 | case 'stco': // Sample Table Chunk Offset atom |
||
| 896 | if ($ParseAllPossibleAtoms) { |
||
| 897 | $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); |
||
| 898 | $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); // hardcoded: 0x0000 |
||
| 899 | $atom_structure['number_entries'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4)); |
||
| 900 | $stcoEntriesDataOffset = 8; |
||
| 901 | for ($i = 0; $i < $atom_structure['number_entries']; $i++) { |
||
| 902 | $atom_structure['chunk_offset_table'][$i] = getid3_lib::BigEndian2Int(substr($atom_data, $stcoEntriesDataOffset, 4)); |
||
| 903 | $stcoEntriesDataOffset += 4; |
||
| 904 | } |
||
| 905 | } |
||
| 906 | break; |
||
| 907 | |||
| 908 | |||
| 909 | case 'co64': // Chunk Offset 64-bit (version of "stco" that supports > 2GB files) |
||
| 910 | if ($ParseAllPossibleAtoms) { |
||
| 911 | $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); |
||
| 912 | $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); // hardcoded: 0x0000 |
||
| 913 | $atom_structure['number_entries'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4)); |
||
| 914 | $stcoEntriesDataOffset = 8; |
||
| 915 | for ($i = 0; $i < $atom_structure['number_entries']; $i++) { |
||
| 916 | $atom_structure['chunk_offset_table'][$i] = getid3_lib::BigEndian2Int(substr($atom_data, $stcoEntriesDataOffset, 8)); |
||
| 917 | $stcoEntriesDataOffset += 8; |
||
| 918 | } |
||
| 919 | } |
||
| 920 | break; |
||
| 921 | |||
| 922 | |||
| 923 | case 'dref': // Data REFerence atom |
||
| 924 | $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); |
||
| 925 | $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); // hardcoded: 0x0000 |
||
| 926 | $atom_structure['number_entries'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4)); |
||
| 927 | $drefDataOffset = 8; |
||
| 928 | for ($i = 0; $i < $atom_structure['number_entries']; $i++) { |
||
| 929 | $atom_structure['data_references'][$i]['size'] = getid3_lib::BigEndian2Int(substr($atom_data, $drefDataOffset, 4)); |
||
| 930 | $drefDataOffset += 4; |
||
| 931 | $atom_structure['data_references'][$i]['type'] = substr($atom_data, $drefDataOffset, 4); |
||
| 932 | $drefDataOffset += 4; |
||
| 933 | $atom_structure['data_references'][$i]['version'] = getid3_lib::BigEndian2Int(substr($atom_data, $drefDataOffset, 1)); |
||
| 934 | $drefDataOffset += 1; |
||
| 935 | $atom_structure['data_references'][$i]['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, $drefDataOffset, 3)); // hardcoded: 0x0000 |
||
| 936 | $drefDataOffset += 3; |
||
| 937 | $atom_structure['data_references'][$i]['data'] = substr($atom_data, $drefDataOffset, ($atom_structure['data_references'][$i]['size'] - 4 - 4 - 1 - 3)); |
||
| 938 | $drefDataOffset += ($atom_structure['data_references'][$i]['size'] - 4 - 4 - 1 - 3); |
||
| 939 | |||
| 940 | $atom_structure['data_references'][$i]['flags']['self_reference'] = (bool) ($atom_structure['data_references'][$i]['flags_raw'] & 0x001); |
||
| 941 | } |
||
| 942 | break; |
||
| 943 | |||
| 944 | |||
| 945 | case 'gmin': // base Media INformation atom |
||
| 946 | $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); |
||
| 947 | $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); // hardcoded: 0x0000 |
||
| 948 | $atom_structure['graphics_mode'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 2)); |
||
| 949 | $atom_structure['opcolor_red'] = getid3_lib::BigEndian2Int(substr($atom_data, 6, 2)); |
||
| 950 | $atom_structure['opcolor_green'] = getid3_lib::BigEndian2Int(substr($atom_data, 8, 2)); |
||
| 951 | $atom_structure['opcolor_blue'] = getid3_lib::BigEndian2Int(substr($atom_data, 10, 2)); |
||
| 952 | $atom_structure['balance'] = getid3_lib::BigEndian2Int(substr($atom_data, 12, 2)); |
||
| 953 | $atom_structure['reserved'] = getid3_lib::BigEndian2Int(substr($atom_data, 14, 2)); |
||
| 954 | break; |
||
| 955 | |||
| 956 | |||
| 957 | case 'smhd': // Sound Media information HeaDer atom |
||
| 958 | $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); |
||
| 959 | $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); // hardcoded: 0x0000 |
||
| 960 | $atom_structure['balance'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 2)); |
||
| 961 | $atom_structure['reserved'] = getid3_lib::BigEndian2Int(substr($atom_data, 6, 2)); |
||
| 962 | break; |
||
| 963 | |||
| 964 | |||
| 965 | case 'vmhd': // Video Media information HeaDer atom |
||
| 966 | $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); |
||
| 967 | $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); |
||
| 968 | $atom_structure['graphics_mode'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 2)); |
||
| 969 | $atom_structure['opcolor_red'] = getid3_lib::BigEndian2Int(substr($atom_data, 6, 2)); |
||
| 970 | $atom_structure['opcolor_green'] = getid3_lib::BigEndian2Int(substr($atom_data, 8, 2)); |
||
| 971 | $atom_structure['opcolor_blue'] = getid3_lib::BigEndian2Int(substr($atom_data, 10, 2)); |
||
| 972 | |||
| 973 | $atom_structure['flags']['no_lean_ahead'] = (bool) ($atom_structure['flags_raw'] & 0x001); |
||
| 974 | break; |
||
| 975 | |||
| 976 | |||
| 977 | case 'hdlr': // HanDLeR reference atom |
||
| 978 | $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); |
||
| 979 | $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); // hardcoded: 0x0000 |
||
| 980 | $atom_structure['component_type'] = substr($atom_data, 4, 4); |
||
| 981 | $atom_structure['component_subtype'] = substr($atom_data, 8, 4); |
||
| 982 | $atom_structure['component_manufacturer'] = substr($atom_data, 12, 4); |
||
| 983 | $atom_structure['component_flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 16, 4)); |
||
| 984 | $atom_structure['component_flags_mask'] = getid3_lib::BigEndian2Int(substr($atom_data, 20, 4)); |
||
| 985 | $atom_structure['component_name'] = $this->Pascal2String(substr($atom_data, 24)); |
||
| 986 | |||
| 987 | if (($atom_structure['component_subtype'] == 'STpn') && ($atom_structure['component_manufacturer'] == 'zzzz')) { |
||
| 988 | $info['video']['dataformat'] = 'quicktimevr'; |
||
| 989 | } |
||
| 990 | break; |
||
| 991 | |||
| 992 | |||
| 993 | case 'mdhd': // MeDia HeaDer atom |
||
| 994 | $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); |
||
| 995 | $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); // hardcoded: 0x0000 |
||
| 996 | $atom_structure['creation_time'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4)); |
||
| 997 | $atom_structure['modify_time'] = getid3_lib::BigEndian2Int(substr($atom_data, 8, 4)); |
||
| 998 | $atom_structure['time_scale'] = getid3_lib::BigEndian2Int(substr($atom_data, 12, 4)); |
||
| 999 | $atom_structure['duration'] = getid3_lib::BigEndian2Int(substr($atom_data, 16, 4)); |
||
| 1000 | $atom_structure['language_id'] = getid3_lib::BigEndian2Int(substr($atom_data, 20, 2)); |
||
| 1001 | $atom_structure['quality'] = getid3_lib::BigEndian2Int(substr($atom_data, 22, 2)); |
||
| 1002 | |||
| 1003 | if ($atom_structure['time_scale'] == 0) { |
||
| 1004 | $info['error'][] = 'Corrupt Quicktime file: mdhd.time_scale == zero'; |
||
| 1005 | return false; |
||
| 1006 | } |
||
| 1007 | $info['quicktime']['time_scale'] = (isset($info['quicktime']['time_scale']) ? max($info['quicktime']['time_scale'], $atom_structure['time_scale']) : $atom_structure['time_scale']); |
||
| 1008 | |||
| 1009 | $atom_structure['creation_time_unix'] = getid3_lib::DateMac2Unix($atom_structure['creation_time']); |
||
| 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 | |||
| 1019 | case 'pnot': // Preview atom |
||
| 1020 | $atom_structure['modification_date'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 4)); // "standard Macintosh format" |
||
| 1021 | $atom_structure['version_number'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 2)); // hardcoded: 0x00 |
||
| 1022 | $atom_structure['atom_type'] = substr($atom_data, 6, 4); // usually: 'PICT' |
||
| 1023 | $atom_structure['atom_index'] = getid3_lib::BigEndian2Int(substr($atom_data, 10, 2)); // usually: 0x01 |
||
| 1024 | |||
| 1025 | $atom_structure['modification_date_unix'] = getid3_lib::DateMac2Unix($atom_structure['modification_date']); |
||
| 1026 | break; |
||
| 1027 | |||
| 1028 | |||
| 1029 | case 'crgn': // Clipping ReGioN atom |
||
| 1030 | $atom_structure['region_size'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 2)); // The Region size, Region boundary box, |
||
| 1031 | $atom_structure['boundary_box'] = getid3_lib::BigEndian2Int(substr($atom_data, 2, 8)); // and Clipping region data fields |
||
| 1032 | $atom_structure['clipping_data'] = substr($atom_data, 10); // constitute a QuickDraw region. |
||
| 1033 | break; |
||
| 1034 | |||
| 1035 | |||
| 1036 | case 'load': // track LOAD settings atom |
||
| 1037 | $atom_structure['preload_start_time'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 4)); |
||
| 1038 | $atom_structure['preload_duration'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4)); |
||
| 1039 | $atom_structure['preload_flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 8, 4)); |
||
| 1040 | $atom_structure['default_hints_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 12, 4)); |
||
| 1041 | |||
| 1042 | $atom_structure['default_hints']['double_buffer'] = (bool) ($atom_structure['default_hints_raw'] & 0x0020); |
||
| 1043 | $atom_structure['default_hints']['high_quality'] = (bool) ($atom_structure['default_hints_raw'] & 0x0100); |
||
| 1044 | break; |
||
| 1045 | |||
| 1046 | |||
| 1047 | case 'tmcd': // TiMe CoDe atom |
||
| 1048 | case 'chap': // CHAPter list atom |
||
| 1049 | case 'sync': // SYNChronization atom |
||
| 1050 | case 'scpt': // tranSCriPT atom |
||
| 1051 | case 'ssrc': // non-primary SouRCe atom |
||
| 1052 | for ($i = 0; $i < strlen($atom_data); $i += 4) { |
||
| 1053 | @$atom_structure['track_id'][] = getid3_lib::BigEndian2Int(substr($atom_data, $i, 4)); |
||
| 1054 | } |
||
| 1055 | break; |
||
| 1056 | |||
| 1057 | |||
| 1058 | case 'elst': // Edit LiST atom |
||
| 1059 | $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); |
||
| 1060 | $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); // hardcoded: 0x0000 |
||
| 1061 | $atom_structure['number_entries'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4)); |
||
| 1062 | for ($i = 0; $i < $atom_structure['number_entries']; $i++ ) { |
||
| 1063 | $atom_structure['edit_list'][$i]['track_duration'] = getid3_lib::BigEndian2Int(substr($atom_data, 8 + ($i * 12) + 0, 4)); |
||
| 1064 | $atom_structure['edit_list'][$i]['media_time'] = getid3_lib::BigEndian2Int(substr($atom_data, 8 + ($i * 12) + 4, 4)); |
||
| 1065 | $atom_structure['edit_list'][$i]['media_rate'] = getid3_lib::FixedPoint16_16(substr($atom_data, 8 + ($i * 12) + 8, 4)); |
||
| 1066 | } |
||
| 1067 | break; |
||
| 1068 | |||
| 1069 | |||
| 1070 | case 'kmat': // compressed MATte atom |
||
| 1071 | $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); |
||
| 1072 | $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); // hardcoded: 0x0000 |
||
| 1073 | $atom_structure['matte_data_raw'] = substr($atom_data, 4); |
||
| 1074 | break; |
||
| 1075 | |||
| 1076 | |||
| 1077 | case 'ctab': // Color TABle atom |
||
| 1078 | $atom_structure['color_table_seed'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 4)); // hardcoded: 0x00000000 |
||
| 1079 | $atom_structure['color_table_flags'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 2)); // hardcoded: 0x8000 |
||
| 1080 | $atom_structure['color_table_size'] = getid3_lib::BigEndian2Int(substr($atom_data, 6, 2)) + 1; |
||
| 1081 | for ($colortableentry = 0; $colortableentry < $atom_structure['color_table_size']; $colortableentry++) { |
||
| 1082 | $atom_structure['color_table'][$colortableentry]['alpha'] = getid3_lib::BigEndian2Int(substr($atom_data, 8 + ($colortableentry * 8) + 0, 2)); |
||
| 1083 | $atom_structure['color_table'][$colortableentry]['red'] = getid3_lib::BigEndian2Int(substr($atom_data, 8 + ($colortableentry * 8) + 2, 2)); |
||
| 1084 | $atom_structure['color_table'][$colortableentry]['green'] = getid3_lib::BigEndian2Int(substr($atom_data, 8 + ($colortableentry * 8) + 4, 2)); |
||
| 1085 | $atom_structure['color_table'][$colortableentry]['blue'] = getid3_lib::BigEndian2Int(substr($atom_data, 8 + ($colortableentry * 8) + 6, 2)); |
||
| 1086 | } |
||
| 1087 | break; |
||
| 1088 | |||
| 1089 | |||
| 1090 | case 'mvhd': // MoVie HeaDer atom |
||
| 1091 | $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); |
||
| 1092 | $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); |
||
| 1093 | $atom_structure['creation_time'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4)); |
||
| 1094 | $atom_structure['modify_time'] = getid3_lib::BigEndian2Int(substr($atom_data, 8, 4)); |
||
| 1095 | $atom_structure['time_scale'] = getid3_lib::BigEndian2Int(substr($atom_data, 12, 4)); |
||
| 1096 | $atom_structure['duration'] = getid3_lib::BigEndian2Int(substr($atom_data, 16, 4)); |
||
| 1097 | $atom_structure['preferred_rate'] = getid3_lib::FixedPoint16_16(substr($atom_data, 20, 4)); |
||
| 1098 | $atom_structure['preferred_volume'] = getid3_lib::FixedPoint8_8(substr($atom_data, 24, 2)); |
||
| 1099 | $atom_structure['reserved'] = substr($atom_data, 26, 10); |
||
| 1100 | $atom_structure['matrix_a'] = getid3_lib::FixedPoint16_16(substr($atom_data, 36, 4)); |
||
| 1101 | $atom_structure['matrix_b'] = getid3_lib::FixedPoint16_16(substr($atom_data, 40, 4)); |
||
| 1102 | $atom_structure['matrix_u'] = getid3_lib::FixedPoint2_30(substr($atom_data, 44, 4)); |
||
| 1103 | $atom_structure['matrix_c'] = getid3_lib::FixedPoint16_16(substr($atom_data, 48, 4)); |
||
| 1104 | $atom_structure['matrix_d'] = getid3_lib::FixedPoint16_16(substr($atom_data, 52, 4)); |
||
| 1105 | $atom_structure['matrix_v'] = getid3_lib::FixedPoint2_30(substr($atom_data, 56, 4)); |
||
| 1106 | $atom_structure['matrix_x'] = getid3_lib::FixedPoint16_16(substr($atom_data, 60, 4)); |
||
| 1107 | $atom_structure['matrix_y'] = getid3_lib::FixedPoint16_16(substr($atom_data, 64, 4)); |
||
| 1108 | $atom_structure['matrix_w'] = getid3_lib::FixedPoint2_30(substr($atom_data, 68, 4)); |
||
| 1109 | $atom_structure['preview_time'] = getid3_lib::BigEndian2Int(substr($atom_data, 72, 4)); |
||
| 1110 | $atom_structure['preview_duration'] = getid3_lib::BigEndian2Int(substr($atom_data, 76, 4)); |
||
| 1111 | $atom_structure['poster_time'] = getid3_lib::BigEndian2Int(substr($atom_data, 80, 4)); |
||
| 1112 | $atom_structure['selection_time'] = getid3_lib::BigEndian2Int(substr($atom_data, 84, 4)); |
||
| 1113 | $atom_structure['selection_duration'] = getid3_lib::BigEndian2Int(substr($atom_data, 88, 4)); |
||
| 1114 | $atom_structure['current_time'] = getid3_lib::BigEndian2Int(substr($atom_data, 92, 4)); |
||
| 1115 | $atom_structure['next_track_id'] = getid3_lib::BigEndian2Int(substr($atom_data, 96, 4)); |
||
| 1116 | |||
| 1117 | if ($atom_structure['time_scale'] == 0) { |
||
| 1118 | $info['error'][] = 'Corrupt Quicktime file: mvhd.time_scale == zero'; |
||
| 1119 | return false; |
||
| 1120 | } |
||
| 1121 | $atom_structure['creation_time_unix'] = getid3_lib::DateMac2Unix($atom_structure['creation_time']); |
||
| 1122 | $atom_structure['modify_time_unix'] = getid3_lib::DateMac2Unix($atom_structure['modify_time']); |
||
| 1123 | $info['quicktime']['time_scale'] = (isset($info['quicktime']['time_scale']) ? max($info['quicktime']['time_scale'], $atom_structure['time_scale']) : $atom_structure['time_scale']); |
||
| 1124 | $info['quicktime']['display_scale'] = $atom_structure['matrix_a']; |
||
| 1125 | $info['playtime_seconds'] = $atom_structure['duration'] / $atom_structure['time_scale']; |
||
| 1126 | break; |
||
| 1127 | |||
| 1128 | |||
| 1129 | case 'tkhd': // TracK HeaDer atom |
||
| 1130 | $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); |
||
| 1131 | $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); |
||
| 1132 | $atom_structure['creation_time'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4)); |
||
| 1133 | $atom_structure['modify_time'] = getid3_lib::BigEndian2Int(substr($atom_data, 8, 4)); |
||
| 1134 | $atom_structure['trackid'] = getid3_lib::BigEndian2Int(substr($atom_data, 12, 4)); |
||
| 1135 | $atom_structure['reserved1'] = getid3_lib::BigEndian2Int(substr($atom_data, 16, 4)); |
||
| 1136 | $atom_structure['duration'] = getid3_lib::BigEndian2Int(substr($atom_data, 20, 4)); |
||
| 1137 | $atom_structure['reserved2'] = getid3_lib::BigEndian2Int(substr($atom_data, 24, 8)); |
||
| 1138 | $atom_structure['layer'] = getid3_lib::BigEndian2Int(substr($atom_data, 32, 2)); |
||
| 1139 | $atom_structure['alternate_group'] = getid3_lib::BigEndian2Int(substr($atom_data, 34, 2)); |
||
| 1140 | $atom_structure['volume'] = getid3_lib::FixedPoint8_8(substr($atom_data, 36, 2)); |
||
| 1141 | $atom_structure['reserved3'] = getid3_lib::BigEndian2Int(substr($atom_data, 38, 2)); |
||
| 1142 | // http://developer.apple.com/library/mac/#documentation/QuickTime/RM/MovieBasics/MTEditing/K-Chapter/11MatrixFunctions.html |
||
| 1143 | // http://developer.apple.com/library/mac/#documentation/QuickTime/qtff/QTFFChap4/qtff4.html#//apple_ref/doc/uid/TP40000939-CH206-18737 |
||
| 1144 | $atom_structure['matrix_a'] = getid3_lib::FixedPoint16_16(substr($atom_data, 40, 4)); |
||
| 1145 | $atom_structure['matrix_b'] = getid3_lib::FixedPoint16_16(substr($atom_data, 44, 4)); |
||
| 1146 | $atom_structure['matrix_u'] = getid3_lib::FixedPoint2_30(substr($atom_data, 48, 4)); |
||
| 1147 | $atom_structure['matrix_c'] = getid3_lib::FixedPoint16_16(substr($atom_data, 52, 4)); |
||
| 1148 | $atom_structure['matrix_d'] = getid3_lib::FixedPoint16_16(substr($atom_data, 56, 4)); |
||
| 1149 | $atom_structure['matrix_v'] = getid3_lib::FixedPoint2_30(substr($atom_data, 60, 4)); |
||
| 1150 | $atom_structure['matrix_x'] = getid3_lib::FixedPoint16_16(substr($atom_data, 64, 4)); |
||
| 1151 | $atom_structure['matrix_y'] = getid3_lib::FixedPoint16_16(substr($atom_data, 68, 4)); |
||
| 1152 | $atom_structure['matrix_w'] = getid3_lib::FixedPoint2_30(substr($atom_data, 72, 4)); |
||
| 1153 | $atom_structure['width'] = getid3_lib::FixedPoint16_16(substr($atom_data, 76, 4)); |
||
| 1154 | $atom_structure['height'] = getid3_lib::FixedPoint16_16(substr($atom_data, 80, 4)); |
||
| 1155 | $atom_structure['flags']['enabled'] = (bool) ($atom_structure['flags_raw'] & 0x0001); |
||
| 1156 | $atom_structure['flags']['in_movie'] = (bool) ($atom_structure['flags_raw'] & 0x0002); |
||
| 1157 | $atom_structure['flags']['in_preview'] = (bool) ($atom_structure['flags_raw'] & 0x0004); |
||
| 1158 | $atom_structure['flags']['in_poster'] = (bool) ($atom_structure['flags_raw'] & 0x0008); |
||
| 1159 | $atom_structure['creation_time_unix'] = getid3_lib::DateMac2Unix($atom_structure['creation_time']); |
||
| 1160 | $atom_structure['modify_time_unix'] = getid3_lib::DateMac2Unix($atom_structure['modify_time']); |
||
| 1161 | |||
| 1162 | if ($atom_structure['flags']['enabled'] == 1) { |
||
| 1163 | if (!isset($info['video']['resolution_x']) || !isset($info['video']['resolution_y'])) { |
||
| 1164 | $info['video']['resolution_x'] = $atom_structure['width']; |
||
| 1165 | $info['video']['resolution_y'] = $atom_structure['height']; |
||
| 1166 | } |
||
| 1167 | $info['video']['resolution_x'] = max($info['video']['resolution_x'], $atom_structure['width']); |
||
| 1168 | $info['video']['resolution_y'] = max($info['video']['resolution_y'], $atom_structure['height']); |
||
| 1169 | $info['quicktime']['video']['resolution_x'] = $info['video']['resolution_x']; |
||
| 1170 | $info['quicktime']['video']['resolution_y'] = $info['video']['resolution_y']; |
||
| 1171 | } else { |
||
| 1172 | // see: http://www.getid3.org/phpBB3/viewtopic.php?t=1295 |
||
| 1173 | //if (isset($info['video']['resolution_x'])) { unset($info['video']['resolution_x']); } |
||
| 1174 | //if (isset($info['video']['resolution_y'])) { unset($info['video']['resolution_y']); } |
||
| 1175 | //if (isset($info['quicktime']['video'])) { unset($info['quicktime']['video']); } |
||
| 1176 | } |
||
| 1177 | break; |
||
| 1178 | |||
| 1179 | |||
| 1180 | case 'iods': // Initial Object DeScriptor atom |
||
| 1181 | // http://www.koders.com/c/fid1FAB3E762903DC482D8A246D4A4BF9F28E049594.aspx?s=windows.h |
||
| 1182 | // http://libquicktime.sourcearchive.com/documentation/1.0.2plus-pdebian/iods_8c-source.html |
||
| 1183 | $offset = 0; |
||
| 1184 | $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, $offset, 1)); |
||
| 1185 | $offset += 1; |
||
| 1186 | $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, $offset, 3)); |
||
| 1187 | $offset += 3; |
||
| 1188 | $atom_structure['mp4_iod_tag'] = getid3_lib::BigEndian2Int(substr($atom_data, $offset, 1)); |
||
| 1189 | $offset += 1; |
||
| 1190 | $atom_structure['length'] = $this->quicktime_read_mp4_descr_length($atom_data, $offset); |
||
| 1191 | //$offset already adjusted by quicktime_read_mp4_descr_length() |
||
| 1192 | $atom_structure['object_descriptor_id'] = getid3_lib::BigEndian2Int(substr($atom_data, $offset, 2)); |
||
| 1193 | $offset += 2; |
||
| 1194 | $atom_structure['od_profile_level'] = getid3_lib::BigEndian2Int(substr($atom_data, $offset, 1)); |
||
| 1195 | $offset += 1; |
||
| 1196 | $atom_structure['scene_profile_level'] = getid3_lib::BigEndian2Int(substr($atom_data, $offset, 1)); |
||
| 1197 | $offset += 1; |
||
| 1198 | $atom_structure['audio_profile_id'] = getid3_lib::BigEndian2Int(substr($atom_data, $offset, 1)); |
||
| 1199 | $offset += 1; |
||
| 1200 | $atom_structure['video_profile_id'] = getid3_lib::BigEndian2Int(substr($atom_data, $offset, 1)); |
||
| 1201 | $offset += 1; |
||
| 1202 | $atom_structure['graphics_profile_level'] = getid3_lib::BigEndian2Int(substr($atom_data, $offset, 1)); |
||
| 1203 | $offset += 1; |
||
| 1204 | |||
| 1205 | $atom_structure['num_iods_tracks'] = ($atom_structure['length'] - 7) / 6; // 6 bytes would only be right if all tracks use 1-byte length fields |
||
| 1206 | for ($i = 0; $i < $atom_structure['num_iods_tracks']; $i++) { |
||
| 1207 | $atom_structure['track'][$i]['ES_ID_IncTag'] = getid3_lib::BigEndian2Int(substr($atom_data, $offset, 1)); |
||
| 1208 | $offset += 1; |
||
| 1209 | $atom_structure['track'][$i]['length'] = $this->quicktime_read_mp4_descr_length($atom_data, $offset); |
||
| 1210 | //$offset already adjusted by quicktime_read_mp4_descr_length() |
||
| 1211 | $atom_structure['track'][$i]['track_id'] = getid3_lib::BigEndian2Int(substr($atom_data, $offset, 4)); |
||
| 1212 | $offset += 4; |
||
| 1213 | } |
||
| 1214 | |||
| 1215 | $atom_structure['audio_profile_name'] = $this->QuicktimeIODSaudioProfileName($atom_structure['audio_profile_id']); |
||
| 1216 | $atom_structure['video_profile_name'] = $this->QuicktimeIODSvideoProfileName($atom_structure['video_profile_id']); |
||
| 1217 | break; |
||
| 1218 | |||
| 1219 | case 'ftyp': // FileTYPe (?) atom (for MP4 it seems) |
||
| 1220 | $atom_structure['signature'] = substr($atom_data, 0, 4); |
||
| 1221 | $atom_structure['unknown_1'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4)); |
||
| 1222 | $atom_structure['fourcc'] = substr($atom_data, 8, 4); |
||
| 1223 | break; |
||
| 1224 | |||
| 1225 | case 'mdat': // Media DATa atom |
||
| 1226 | // 'mdat' contains the actual data for the audio/video, possibly also subtitles |
||
| 1227 | |||
| 1228 | /* due to lack of known documentation, this is a kludge implementation. If you know of documentation on how mdat is properly structed, please send it to [email protected] */ |
||
| 1229 | |||
| 1230 | // first, skip any 'wide' padding, and second 'mdat' header (with specified size of zero?) |
||
| 1231 | $mdat_offset = 0; |
||
| 1232 | while (true) { |
||
| 1233 | if (substr($atom_data, $mdat_offset, 8) == "\x00\x00\x00\x08".'wide') { |
||
| 1234 | $mdat_offset += 8; |
||
| 1235 | } elseif (substr($atom_data, $mdat_offset, 8) == "\x00\x00\x00\x00".'mdat') { |
||
| 1236 | $mdat_offset += 8; |
||
| 1237 | } else { |
||
| 1238 | break; |
||
| 1239 | } |
||
| 1240 | } |
||
| 1241 | |||
| 1242 | // check to see if it looks like chapter titles, in the form of unterminated strings with a leading 16-bit size field |
||
| 1243 | while (($chapter_string_length = getid3_lib::BigEndian2Int(substr($atom_data, $mdat_offset, 2))) |
||
| 1244 | && ($chapter_string_length < 1000) |
||
| 1245 | && ($chapter_string_length <= (strlen($atom_data) - $mdat_offset - 2)) |
||
| 1246 | && preg_match('#^[\x20-\xFF]+$#', substr($atom_data, $mdat_offset + 2, $chapter_string_length), $chapter_matches)) { |
||
| 1247 | $mdat_offset += (2 + $chapter_string_length); |
||
| 1248 | @$info['quicktime']['comments']['chapters'][] = $chapter_matches[0]; |
||
| 1249 | } |
||
| 1250 | |||
| 1251 | |||
| 1252 | |||
| 1253 | if (($atomsize > 8) && (!isset($info['avdataend_tmp']) || ($info['quicktime'][$atomname]['size'] > ($info['avdataend_tmp'] - $info['avdataoffset'])))) { |
||
| 1254 | |||
| 1255 | $info['avdataoffset'] = $atom_structure['offset'] + 8; // $info['quicktime'][$atomname]['offset'] + 8; |
||
| 1256 | $OldAVDataEnd = $info['avdataend']; |
||
| 1257 | $info['avdataend'] = $atom_structure['offset'] + $atom_structure['size']; // $info['quicktime'][$atomname]['offset'] + $info['quicktime'][$atomname]['size']; |
||
| 1258 | |||
| 1259 | $getid3_temp = new getID3(); |
||
| 1260 | $getid3_temp->openfile($this->getid3->filename); |
||
| 1261 | $getid3_temp->info['avdataoffset'] = $info['avdataoffset']; |
||
| 1262 | $getid3_temp->info['avdataend'] = $info['avdataend']; |
||
| 1263 | $getid3_mp3 = new getid3_mp3($getid3_temp); |
||
| 1264 | if ($getid3_mp3->MPEGaudioHeaderValid($getid3_mp3->MPEGaudioHeaderDecode($this->fread(4)))) { |
||
| 1265 | $getid3_mp3->getOnlyMPEGaudioInfo($getid3_temp->info['avdataoffset'], false); |
||
| 1266 | if (!empty($getid3_temp->info['warning'])) { |
||
| 1267 | foreach ($getid3_temp->info['warning'] as $value) { |
||
| 1268 | $info['warning'][] = $value; |
||
| 1269 | } |
||
| 1270 | } |
||
| 1271 | if (!empty($getid3_temp->info['mpeg'])) { |
||
| 1272 | $info['mpeg'] = $getid3_temp->info['mpeg']; |
||
| 1273 | if (isset($info['mpeg']['audio'])) { |
||
| 1274 | $info['audio']['dataformat'] = 'mp3'; |
||
| 1275 | $info['audio']['codec'] = (!empty($info['mpeg']['audio']['encoder']) ? $info['mpeg']['audio']['encoder'] : (!empty($info['mpeg']['audio']['codec']) ? $info['mpeg']['audio']['codec'] : (!empty($info['mpeg']['audio']['LAME']) ? 'LAME' :'mp3'))); |
||
| 1276 | $info['audio']['sample_rate'] = $info['mpeg']['audio']['sample_rate']; |
||
| 1277 | $info['audio']['channels'] = $info['mpeg']['audio']['channels']; |
||
| 1278 | $info['audio']['bitrate'] = $info['mpeg']['audio']['bitrate']; |
||
| 1279 | $info['audio']['bitrate_mode'] = strtolower($info['mpeg']['audio']['bitrate_mode']); |
||
| 1280 | $info['bitrate'] = $info['audio']['bitrate']; |
||
| 1281 | } |
||
| 1282 | } |
||
| 1283 | } |
||
| 1284 | unset($getid3_mp3, $getid3_temp); |
||
| 1285 | $info['avdataend'] = $OldAVDataEnd; |
||
| 1286 | unset($OldAVDataEnd); |
||
| 1287 | |||
| 1288 | } |
||
| 1289 | |||
| 1290 | unset($mdat_offset, $chapter_string_length, $chapter_matches); |
||
| 1291 | break; |
||
| 1292 | |||
| 1293 | case 'free': // FREE space atom |
||
| 1294 | case 'skip': // SKIP atom |
||
| 1295 | case 'wide': // 64-bit expansion placeholder atom |
||
| 1296 | // 'free', 'skip' and 'wide' are just padding, contains no useful data at all |
||
| 1297 | |||
| 1298 | // When writing QuickTime files, it is sometimes necessary to update an atom's size. |
||
| 1299 | // It is impossible to update a 32-bit atom to a 64-bit atom since the 32-bit atom |
||
| 1300 | // is only 8 bytes in size, and the 64-bit atom requires 16 bytes. Therefore, QuickTime |
||
| 1301 | // puts an 8-byte placeholder atom before any atoms it may have to update the size of. |
||
| 1302 | // In this way, if the atom needs to be converted from a 32-bit to a 64-bit atom, the |
||
| 1303 | // placeholder atom can be overwritten to obtain the necessary 8 extra bytes. |
||
| 1304 | // The placeholder atom has a type of kWideAtomPlaceholderType ( 'wide' ). |
||
| 1305 | break; |
||
| 1306 | |||
| 1307 | |||
| 1308 | case 'nsav': // NoSAVe atom |
||
| 1309 | // http://developer.apple.com/technotes/tn/tn2038.html |
||
| 1310 | $atom_structure['data'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 4)); |
||
| 1311 | break; |
||
| 1312 | |||
| 1313 | case 'ctyp': // Controller TYPe atom (seen on QTVR) |
||
| 1314 | // http://homepages.slingshot.co.nz/~helmboy/quicktime/formats/qtm-layout.txt |
||
| 1315 | // some controller names are: |
||
| 1316 | // 0x00 + 'std' for linear movie |
||
| 1317 | // 'none' for no controls |
||
| 1318 | $atom_structure['ctyp'] = substr($atom_data, 0, 4); |
||
| 1319 | $info['quicktime']['controller'] = $atom_structure['ctyp']; |
||
| 1320 | switch ($atom_structure['ctyp']) { |
||
| 1321 | case 'qtvr': |
||
| 1322 | $info['video']['dataformat'] = 'quicktimevr'; |
||
| 1323 | break; |
||
| 1324 | } |
||
| 1325 | break; |
||
| 1326 | |||
| 1327 | case 'pano': // PANOrama track (seen on QTVR) |
||
| 1328 | $atom_structure['pano'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 4)); |
||
| 1329 | break; |
||
| 1330 | |||
| 1331 | case 'hint': // HINT track |
||
| 1332 | case 'hinf': // |
||
| 1333 | case 'hinv': // |
||
| 1334 | case 'hnti': // |
||
| 1335 | $info['quicktime']['hinting'] = true; |
||
| 1336 | break; |
||
| 1337 | |||
| 1338 | case 'imgt': // IMaGe Track reference (kQTVRImageTrackRefType) (seen on QTVR) |
||
| 1339 | for ($i = 0; $i < ($atom_structure['size'] - 8); $i += 4) { |
||
| 1340 | $atom_structure['imgt'][] = getid3_lib::BigEndian2Int(substr($atom_data, $i, 4)); |
||
| 1341 | } |
||
| 1342 | break; |
||
| 1343 | |||
| 1344 | |||
| 1345 | // Observed-but-not-handled atom types are just listed here to prevent warnings being generated |
||
| 1346 | case 'FXTC': // Something to do with Adobe After Effects (?) |
||
| 1347 | case 'PrmA': |
||
| 1348 | case 'code': |
||
| 1349 | case 'FIEL': // this is NOT "fiel" (Field Ordering) as describe here: http://developer.apple.com/documentation/QuickTime/QTFF/QTFFChap3/chapter_4_section_2.html |
||
| 1350 | case 'tapt': // TrackApertureModeDimensionsAID - http://developer.apple.com/documentation/QuickTime/Reference/QT7-1_Update_Reference/Constants/Constants.html |
||
| 1351 | // tapt seems to be used to compute the video size [http://www.getid3.org/phpBB3/viewtopic.php?t=838] |
||
| 1352 | // * http://lists.apple.com/archives/quicktime-api/2006/Aug/msg00014.html |
||
| 1353 | // * http://handbrake.fr/irclogs/handbrake-dev/handbrake-dev20080128_pg2.html |
||
| 1354 | case 'ctts':// STCompositionOffsetAID - http://developer.apple.com/documentation/QuickTime/Reference/QTRef_Constants/Reference/reference.html |
||
| 1355 | case 'cslg':// STCompositionShiftLeastGreatestAID - http://developer.apple.com/documentation/QuickTime/Reference/QTRef_Constants/Reference/reference.html |
||
| 1356 | case 'sdtp':// STSampleDependencyAID - http://developer.apple.com/documentation/QuickTime/Reference/QTRef_Constants/Reference/reference.html |
||
| 1357 | case 'stps':// STPartialSyncSampleAID - http://developer.apple.com/documentation/QuickTime/Reference/QTRef_Constants/Reference/reference.html |
||
| 1358 | //$atom_structure['data'] = $atom_data; |
||
| 1359 | break; |
||
| 1360 | |||
| 1361 | case "\xA9".'xyz': // GPS latitude+longitude+altitude |
||
| 1362 | $atom_structure['data'] = $atom_data; |
||
| 1363 | if (preg_match('#([\\+\\-][0-9\\.]+)([\\+\\-][0-9\\.]+)([\\+\\-][0-9\\.]+)?/$#i', $atom_data, $matches)) { |
||
| 1364 | @list($all, $latitude, $longitude, $altitude) = $matches; |
||
| 1365 | $info['quicktime']['comments']['gps_latitude'][] = floatval($latitude); |
||
| 1366 | $info['quicktime']['comments']['gps_longitude'][] = floatval($longitude); |
||
| 1367 | if (!empty($altitude)) { |
||
| 1368 | $info['quicktime']['comments']['gps_altitude'][] = floatval($altitude); |
||
| 1369 | } |
||
| 1370 | } else { |
||
| 1371 | $info['warning'][] = 'QuickTime atom "©xyz" data does not match expected data pattern at offset '.$baseoffset.'. Please report as getID3() bug.'; |
||
| 1372 | } |
||
| 1373 | break; |
||
| 1374 | |||
| 1375 | case 'NCDT': |
||
| 1376 | // http://www.sno.phy.queensu.ca/~phil/exiftool/TagNames/Nikon.html |
||
| 1377 | // Nikon-specific QuickTime tags found in the NCDT atom of MOV videos from some Nikon cameras such as the Coolpix S8000 and D5100 |
||
| 1378 | $atom_structure['subatoms'] = $this->QuicktimeParseContainerAtom($atom_data, $baseoffset + 4, $atomHierarchy, $ParseAllPossibleAtoms); |
||
| 1379 | break; |
||
| 1380 | case 'NCTH': // Nikon Camera THumbnail image |
||
| 1381 | case 'NCVW': // Nikon Camera preVieW image |
||
| 1382 | // http://www.sno.phy.queensu.ca/~phil/exiftool/TagNames/Nikon.html |
||
| 1383 | if (preg_match('/^\xFF\xD8\xFF/', $atom_data)) { |
||
| 1384 | $atom_structure['data'] = $atom_data; |
||
| 1385 | $atom_structure['image_mime'] = 'image/jpeg'; |
||
| 1386 | $atom_structure['description'] = (($atomname == 'NCTH') ? 'Nikon Camera Thumbnail Image' : (($atomname == 'NCVW') ? 'Nikon Camera Preview Image' : 'Nikon preview image')); |
||
| 1387 | $info['quicktime']['comments']['picture'][] = array('image_mime'=>$atom_structure['image_mime'], 'data'=>$atom_data, 'description'=>$atom_structure['description']); |
||
| 1388 | } |
||
| 1389 | break; |
||
| 1390 | case 'NCTG': // Nikon - http://www.sno.phy.queensu.ca/~phil/exiftool/TagNames/Nikon.html#NCTG |
||
| 1391 | $atom_structure['data'] = $this->QuicktimeParseNikonNCTG($atom_data); |
||
| 1392 | break; |
||
| 1393 | case 'NCHD': // Nikon:MakerNoteVersion - http://www.sno.phy.queensu.ca/~phil/exiftool/TagNames/Nikon.html |
||
| 1394 | case 'NCDB': // Nikon - http://www.sno.phy.queensu.ca/~phil/exiftool/TagNames/Nikon.html |
||
| 1395 | case 'CNCV': // Canon:CompressorVersion - http://www.sno.phy.queensu.ca/~phil/exiftool/TagNames/Canon.html |
||
| 1396 | $atom_structure['data'] = $atom_data; |
||
| 1397 | break; |
||
| 1398 | |||
| 1399 | case "\x00\x00\x00\x00": |
||
| 1400 | case 'meta': // METAdata atom |
||
| 1401 | // some kind of metacontainer, may contain a big data dump such as: |
||
| 1402 | // mdta keys \005 mdtacom.apple.quicktime.make (mdtacom.apple.quicktime.creationdate ,mdtacom.apple.quicktime.location.ISO6709 $mdtacom.apple.quicktime.software !mdtacom.apple.quicktime.model ilst \01D \001 \015data \001DE\010Apple 0 \002 (data \001DE\0102011-05-11T17:54:04+0200 2 \003 *data \001DE\010+52.4936+013.3897+040.247/ \01D \004 \015data \001DE\0104.3.1 \005 \018data \001DE\010iPhone 4 |
||
| 1403 | // http://www.geocities.com/xhelmboyx/quicktime/formats/qti-layout.txt |
||
| 1404 | |||
| 1405 | $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); |
||
| 1406 | $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); |
||
| 1407 | $atom_structure['subatoms'] = $this->QuicktimeParseContainerAtom(substr($atom_data, 4), $baseoffset + 8, $atomHierarchy, $ParseAllPossibleAtoms); |
||
| 1408 | //$atom_structure['subatoms'] = $this->QuicktimeParseContainerAtom($atom_data, $baseoffset + 8, $atomHierarchy, $ParseAllPossibleAtoms); |
||
| 1409 | break; |
||
| 1410 | |||
| 1411 | case 'data': // metaDATA atom |
||
| 1412 | // seems to be 2 bytes language code (ASCII), 2 bytes unknown (set to 0x10B5 in sample I have), remainder is useful data |
||
| 1413 | $atom_structure['language'] = substr($atom_data, 4 + 0, 2); |
||
| 1414 | $atom_structure['unknown'] = getid3_lib::BigEndian2Int(substr($atom_data, 4 + 2, 2)); |
||
| 1415 | $atom_structure['data'] = substr($atom_data, 4 + 4); |
||
| 1416 | break; |
||
| 1417 | |||
| 1418 | default: |
||
| 1419 | $info['warning'][] = 'Unknown QuickTime atom type: "'.preg_replace('#[^a-zA-Z0-9 _\\-]#', '?', $atomname).'" ('.trim(getid3_lib::PrintHexBytes($atomname)).') at offset '.$baseoffset; |
||
| 1420 | $atom_structure['data'] = $atom_data; |
||
| 1421 | break; |
||
| 1422 | } |
||
| 1423 | array_pop($atomHierarchy); |
||
| 1424 | return $atom_structure; |
||
| 1425 | } |
||
| 1426 | |||
| 2247 |