AVCSequenceParameterSetReader::expGolombSe() –
You appear to be a bot. Output may be restricted
Description
Usage
$int = AVCSequenceParameterSetReader::expGolombSe();
Parameters
Returns
int
Source
File name: wordpress/wp-includes/ID3/module.audio-video.flv.php
Lines:
1 to 8 of 8
public function expGolombSe() { $result = $this->AVCSequenceParameterSetReader::expGolombUe(); if (($result & 0x01) == 0) { return -($result >> 1); } else { return ($result + 1) >> 1; } }