AVCSequenceParameterSetReader::getBit()
{} It's a method of the class: AVCSequenceParameterSetReader{}
No Hooks.
Return
Int
.
Usage
$AVCSequenceParameterSetReader = new AVCSequenceParameterSetReader(); $AVCSequenceParameterSetReader->getBit();
Code of AVCSequenceParameterSetReader::getBit() AVCSequenceParameterSetReader::getBit WP 6.0
public function getBit() { $result = (getid3_lib::BigEndian2Int(substr($this->sps, $this->currentBytes, 1)) >> (7 - $this->currentBits)) & 0x01; $this->skipBits(1); return $result; }