getid3_matroska::EBMLdate2unix

Advertisement

Private Access Private Access

This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

Syntax Syntax

getid3_matroska::EBMLdate2unix( int $EBMLdatestamp )

Parameters Parameters

$EBMLdatestamp

(Required)

Return Return

(float)

Source Source

File: wp-includes/ID3/module.audio-video.matroska.php

		// 0000 0001  xxxx xxxx  xxxx xxxx  xxxx xxxx  xxxx xxxx  xxxx xxxx  xxxx xxxx  xxxx xxxx - value 0 to 2^56-2

		$first_byte_int = ord($EBMLstring[0]);
		if (0x80 & $first_byte_int) {
			$EBMLstring[0] = chr($first_byte_int & 0x7F);

Advertisement

Advertisement

Leave a Reply