AVCSequenceParameterSetReader::expGolombUe

Advertisement

Syntax Syntax

AVCSequenceParameterSetReader::expGolombUe()

Return Return

(int)

Source Source

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

	/**
	 * @return int
	 */
	public function expGolombUe() {
		$significantBits = 0;
		$bit = $this->getBit();
		while ($bit == 0) {
			$significantBits++;
			$bit = $this->getBit();

			if ($significantBits > 31) {
				// something is broken, this is an emergency escape to prevent infinite loops
				return 0;
			}

Advertisement

Advertisement

Leave a Reply