Searched refs:getBits (Results 1 – 3 of 3) sorted by relevance
786 $profile = $this->getBits(8); // read profile789 $level_idc = $this->getBits(8); // level_idc809 $frame_mbs_only_flag = $this->getBits(1); // frame_mbs_only_flag814 $frame_cropping_flag = $this->getBits(1); // frame_cropping_flag858 public function getBits($bits) { function in AVCSequenceParameterSetReader881 return (1 << $significantBits) + $this->getBits($significantBits) - 1;
17474 FlateStream.prototype.getBits = function FlateStream_getBits(bits) {17565 var hdr = this.getBits(3);17636 var numLitCodes = this.getBits(5) + 257;17637 var numDistCodes = this.getBits(5) + 1;17638 var numCodeLenCodes = this.getBits(4) + 4;17643 codeLenCodeLengths[codeLenCodeMap[i]] = this.getBits(3);17673 var repeatLength = this.getBits(bitsLength) + bitsOffset;17713 code2 = this.getBits(code2);17722 code2 = this.getBits(code2);
1 …getBits = function FlateStream_getBits(bits) {\n var str = this.str;\n var codeSize = this.c…