Code Duplication    Length = 4-4 lines in 2 locations

src/wp-includes/ID3/module.audio-video.quicktime.php 2 locations

@@ 330-333 (lines=4) @@
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
						}
@@ 1418-1421 (lines=4) @@
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;