AVCSequenceParameterSetReader::expGolombUe() –
You appear to be a bot. Output may be restricted
Description
Usage
$int = AVCSequenceParameterSetReader::expGolombUe();
Parameters
Returns
int
Source
File name: wordpress/wp-includes/ID3/module.audio-video.flv.php
Lines:
1 to 14 of 14
public function expGolombUe() { $significantBits = 0; $bit = $this->AVCSequenceParameterSetReader::getBit(); while ($bit == 0) { $significantBits++; $bit = $this->AVCSequenceParameterSetReader::getBit(); if ($significantBits > 31) { // something is broken, this is an emergency escape to prevent infinite loops return 0; } } return (1 << $significantBits) + $this->AVCSequenceParameterSetReader::getBits($significantBits) - 1; }