getid3_matroska::TargetTypeValue

Advertisement

Syntax Syntax

getid3_matroska::TargetTypeValue( int $target_type )

Parameters Parameters

$target_type

(Required)

Return Return

(string|int)

Source Source

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

		} elseif (0x08 & $first_byte_int) {
			$EBMLstring[0] = chr($first_byte_int & 0x07);
		} elseif (0x04 & $first_byte_int) {
			$EBMLstring[0] = chr($first_byte_int & 0x03);
		} elseif (0x02 & $first_byte_int) {
			$EBMLstring[0] = chr($first_byte_int & 0x01);
		} elseif (0x01 & $first_byte_int) {
			$EBMLstring[0] = chr($first_byte_int & 0x00);
		}

		return getid3_lib::BigEndian2Int($EBMLstring);
	}

	/**

Advertisement

Advertisement

Leave a Reply