getid3_ac3::readHeaderBSI

Advertisement

Private Access Private Access

This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

Syntax Syntax

getid3_ac3::readHeaderBSI( int $length )

Parameters Parameters

$length

(Required)

Return Return

(float|int)

Source Source

File: wp-includes/ID3/module.audio.ac3.php

	 *
	 * @return int
	 */
	private function readHeaderBSI($length) {
		$data = substr($this->AC3header['bsi'], $this->BSIoffset, $length);
		$this->BSIoffset += $length;

Advertisement

Advertisement

Leave a Reply