Code Duplication    Length = 3-3 lines in 2 locations

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

@@ 176-178 (lines=3) @@
173
			//$info['audio']['lossless']     = false;
174
			$info['video']['resolution_x'] = $info['ogg']['pageheader']['theora']['resolution_x'];
175
			$info['video']['resolution_y'] = $info['ogg']['pageheader']['theora']['resolution_y'];
176
			if ($info['ogg']['pageheader']['theora']['frame_rate_denominator'] > 0) {
177
				$info['video']['frame_rate'] = (float) $info['ogg']['pageheader']['theora']['frame_rate_numerator'] / $info['ogg']['pageheader']['theora']['frame_rate_denominator'];
178
			}
179
			if ($info['ogg']['pageheader']['theora']['pixel_aspect_denominator'] > 0) {
180
				$info['video']['pixel_aspect_ratio'] = (float) $info['ogg']['pageheader']['theora']['pixel_aspect_numerator'] / $info['ogg']['pageheader']['theora']['pixel_aspect_denominator'];
181
			}
@@ 179-181 (lines=3) @@
176
			if ($info['ogg']['pageheader']['theora']['frame_rate_denominator'] > 0) {
177
				$info['video']['frame_rate'] = (float) $info['ogg']['pageheader']['theora']['frame_rate_numerator'] / $info['ogg']['pageheader']['theora']['frame_rate_denominator'];
178
			}
179
			if ($info['ogg']['pageheader']['theora']['pixel_aspect_denominator'] > 0) {
180
				$info['video']['pixel_aspect_ratio'] = (float) $info['ogg']['pageheader']['theora']['pixel_aspect_numerator'] / $info['ogg']['pageheader']['theora']['pixel_aspect_denominator'];
181
			}
182
$info['warning'][] = 'Ogg Theora (v3) not fully supported in this version of getID3 ['.$this->getid3->version().'] -- bitrate, playtime and all audio data are currently unavailable';
183
184