AVCSequenceParameterSetReader::getBit

Advertisement

Syntax Syntax

AVCSequenceParameterSetReader::getBit()

Return Return

(int)

Source Source

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

	/**
	 * @return int
	 */
	public function getBit() {
		$result = (getid3_lib::BigEndian2Int(substr($this->sps, $this->currentBytes, 1)) >> (7 - $this->currentBits)) & 0x01;

Advertisement

Advertisement

Leave a Reply