AVCSequenceParameterSetReader::expGolombSe()
{} It's a method of the class: AVCSequenceParameterSetReader{}
No Hooks.
Return
Int
.
Usage
$AVCSequenceParameterSetReader = new AVCSequenceParameterSetReader(); $AVCSequenceParameterSetReader->expGolombSe();
Code of AVCSequenceParameterSetReader::expGolombSe() AVCSequenceParameterSetReader::expGolombSe WP 6.0
public function expGolombSe() { $result = $this->expGolombUe(); if (($result & 0x01) == 0) { return -($result >> 1); } else { return ($result + 1) >> 1; } }