Code Duplication    Length = 5-5 lines in 2 locations

src/wp-includes/ID3/module.audio-video.quicktime.php 1 location

@@ 1266-1270 (lines=5) @@
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'])) {

src/wp-includes/ID3/module.audio-video.riff.php 1 location

@@ 1510-1514 (lines=5) @@
1507
										if (empty($getid3_temp->info['error'])) {
1508
											$info['audio']   = $getid3_temp->info['audio'];
1509
											$info['ac3']     = $getid3_temp->info['ac3'];
1510
											if (!empty($getid3_temp->info['warning'])) {
1511
												foreach ($getid3_temp->info['warning'] as $key => $value) {
1512
													$info['warning'][] = $value;
1513
												}
1514
											}
1515
										}
1516
										unset($getid3_temp, $getid3_ac3);
1517
									}