AVCSequenceParameterSetReader::skipBits() –
You appear to be a bot. Output may be restricted
Description
Usage
AVCSequenceParameterSetReader::skipBits( $bits );
Parameters
- $bits
- ( int ) required –
Returns
void
Source
File name: wordpress/wp-includes/ID3/module.audio-video.flv.php
Lines:
1 to 5 of 5
public function skipBits($bits) { $newBits = $this->currentBits + $bits; $this->currentBytes += (int)floor($newBits / 8); $this->currentBits = $newBits % 8; }