Code Duplication    Length = 2-2 lines in 2 locations

projects/plugins/jetpack/modules/videopress/class.videopress-player.php 2 locations

@@ 341-342 (lines=2) @@
338
		$html .= '>';
339
		if ( ! isset( $this->options['freedom'] ) || $this->options['freedom'] === false ) {
340
			$mp4 = $this->video->videos->mp4->url;
341
			if ( ! empty( $mp4 ) ) {
342
				$html .= '<source src="' . esc_url( $mp4 ) . '" type="video/mp4; codecs=&quot;' . esc_attr( $this->video->videos->mp4->codecs ) . '&quot;" />';
343
			}
344
			unset( $mp4 );
345
		}
@@ 349-350 (lines=2) @@
346
347
		if ( isset( $this->video->videos->ogv ) ) {
348
			$ogg = $this->video->videos->ogv->url;
349
			if ( ! empty( $ogg ) ) {
350
				$html .= '<source src="' . esc_url( $ogg ) . '" type="video/ogg; codecs=&quot;' . esc_attr( $this->video->videos->ogv->codecs ) . '&quot;" />';
351
			}
352
353
			unset( $ogg );