wppaste
WordPress

getid3_dts::Analyze(): bool

Source
wp-includes/ID3/module.audio.dts.php:48

Compatibility

WordPress
core
PHP
7.4–8.6-dev
  • 6.7.7
  • 6.8.8
  • 6.9.7
  • 7.0.4
  • 7.1.0

Present in every tracked release (6.7.7 to 7.1.0), and compiles on PHP 7.4 through 8.6-dev.

Return value

bool

Performance profile

How much work a call to getid3_dts::Analyze() does, and what it touches: the algorithmic scaling, the Zend instruction count per call across PHP versions, the hooks it hands control to, and the core code that calls it. Measured from the compiled opcodes, not a stopwatch, so every number is identical on any machine running the same PHP version, and every function in core is ranked by cost.

Cost class
Moderate

Touches nothing outside its own arguments.

Scaling
Scales with input

The body loops, so the work grows with how much data it finds.

Instructions
49–416

Executed per call on PHP 8.5, depending on the branch taken. The body compiles to 493.

Plugin surface
None

Nothing here hands control to plugin code.

Called by
0

Nothing in core calls this; the cost is only what you spend yourself.

What one call costs · 5 distinct outcomes

One number would be a lie: the work depends on which branch runs. These are every distinct cost getid3_dts::Analyze() can have, taken from its control-flow graph on PHP 8.5.

WhenInstructionsCalls it makes
$encoding === false && !->isDependencyFor()49->fseek(), ->fread(), array_search(), ->isDependencyFor(), array_map(), ::getid3_lib(), ->error()
$encoding !== false && !$word_offset383–407->fseek(), ->fread(), array_search(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ::bitrateLookup(), ::bitPerSampleLookup(), ::sampleRateLookup(), ::dialogNormalization(), ::numChannelsLookup(), ::channelArrangementLookup()
$encoding === false && ->isDependencyFor() && !$word_offset384–408->fseek(), ->fread(), array_search(), ->isDependencyFor(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ::bitrateLookup(), ::bitPerSampleLookup(), ::sampleRateLookup(), ::dialogNormalization(), ::numChannelsLookup(), ::channelArrangementLookup()
$encoding !== false && !$word_offset391–415->fseek(), ->fread(), array_search(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ::bitrateLookup(), ::bitPerSampleLookup(), ::sampleRateLookup(), ::dialogNormalization(), ::numChannelsLookup(), ::channelArrangementLookup()
$encoding === false && ->isDependencyFor() && !$word_offset392–416->fseek(), ->fread(), array_search(), ->isDependencyFor(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ->readBinData(), ::bitrateLookup(), ::bitPerSampleLookup(), ::sampleRateLookup(), ::dialogNormalization(), ::numChannelsLookup(), ::channelArrangementLookup()

Across PHP versions

PHPCompiledExecutedBranchesNotes
8.6-dev49349–41615
8.549349–41615
8.449349–4161527 fewer instructions than PHP 8.3
8.352056–42215
8.252056–422151 more instruction than PHP 8.1
8.151956–42215
7.451956–42215

An instruction is not a fixed amount of time, so a matching count is not necessarily the same speed; what it rules out is a difference in the work itself.

Uses · 13

Show all 13

Source code

	public function Analyze() {		$info = &$this->getid3->info;		$info['fileformat'] = 'dts'; 		$this->fseek($info['avdataoffset']);		$DTSheader = $this->fread(20); // we only need 2 words magic + 6 words frame header, but these words may be normal 16-bit words OR 14-bit words with 2 highest bits set to zero, so 8 words can be either 8*16/8 = 16 bytes OR 8*16*(16/14)/8 = 18.3 bytes 		// check syncword		$sync = substr($DTSheader, 0, 4);		if (($encoding = array_search($sync, self::$syncwords)) !== false) { 			$info['dts']['raw']['magic'] = $sync;			$this->readBinDataOffset = 32; 		} elseif ($this->isDependencyFor('matroska')) { 			// Matroska contains DTS without syncword encoded as raw big-endian format			$encoding = 0;			$this->readBinDataOffset = 0; 		} else { 			unset($info['fileformat']);			return $this->error('Expecting "'.implode('| ', array_map('getid3_lib::PrintHexBytes', self::$syncwords)).'" at offset '.$info['avdataoffset'].', found "'.getid3_lib::PrintHexBytes($sync).'"'); 		} 		// decode header		$fhBS = '';		for ($word_offset = 0; $word_offset <= strlen($DTSheader); $word_offset += 2) {			switch ($encoding) {				case 0: // raw big-endian					$fhBS .=        getid3_lib::BigEndian2Bin(       substr($DTSheader, $word_offset, 2) );					break;				case 1: // raw little-endian					$fhBS .=        getid3_lib::BigEndian2Bin(strrev(substr($DTSheader, $word_offset, 2)));					break;				case 2: // 14-bit big-endian					$fhBS .= substr(getid3_lib::BigEndian2Bin(       substr($DTSheader, $word_offset, 2) ), 2, 14);					break;				case 3: // 14-bit little-endian					$fhBS .= substr(getid3_lib::BigEndian2Bin(strrev(substr($DTSheader, $word_offset, 2))), 2, 14);					break;			}		} 		$info['dts']['raw']['frame_type']             =        $this->readBinData($fhBS,  1);		$info['dts']['raw']['deficit_samples']        =        $this->readBinData($fhBS,  5);		$info['dts']['flags']['crc_present']          = (bool) $this->readBinData($fhBS,  1);		$info['dts']['raw']['pcm_sample_blocks']      =        $this->readBinData($fhBS,  7);		$info['dts']['raw']['frame_byte_size']        =        $this->readBinData($fhBS, 14);		$info['dts']['raw']['channel_arrangement']    =        $this->readBinData($fhBS,  6);		$info['dts']['raw']['sample_frequency']       =        $this->readBinData($fhBS,  4);		$info['dts']['raw']['bitrate']                =        $this->readBinData($fhBS,  5);		$info['dts']['flags']['embedded_downmix']     = (bool) $this->readBinData($fhBS,  1);		$info['dts']['flags']['dynamicrange']         = (bool) $this->readBinData($fhBS,  1);		$info['dts']['flags']['timestamp']            = (bool) $this->readBinData($fhBS,  1);		$info['dts']['flags']['auxdata']              = (bool) $this->readBinData($fhBS,  1);		$info['dts']['flags']['hdcd']                 = (bool) $this->readBinData($fhBS,  1);		$info['dts']['raw']['extension_audio']        =        $this->readBinData($fhBS,  3);		$info['dts']['flags']['extended_coding']      = (bool) $this->readBinData($fhBS,  1);		$info['dts']['flags']['audio_sync_insertion'] = (bool) $this->readBinData($fhBS,  1);		$info['dts']['raw']['lfe_effects']            =        $this->readBinData($fhBS,  2);		$info['dts']['flags']['predictor_history']    = (bool) $this->readBinData($fhBS,  1);		if ($info['dts']['flags']['crc_present']) {			$info['dts']['raw']['crc16']              =        $this->readBinData($fhBS, 16);		}		$info['dts']['flags']['mri_perfect_reconst']  = (bool) $this->readBinData($fhBS,  1);		$info['dts']['raw']['encoder_soft_version']   =        $this->readBinData($fhBS,  4);		$info['dts']['raw']['copy_history']           =        $this->readBinData($fhBS,  2);		$info['dts']['raw']['bits_per_sample']        =        $this->readBinData($fhBS,  2);		$info['dts']['flags']['surround_es']          = (bool) $this->readBinData($fhBS,  1);		$info['dts']['flags']['front_sum_diff']       = (bool) $this->readBinData($fhBS,  1);		$info['dts']['flags']['surround_sum_diff']    = (bool) $this->readBinData($fhBS,  1);		$info['dts']['raw']['dialog_normalization']   =        $this->readBinData($fhBS,  4);  		$info['dts']['bitrate']              = self::bitrateLookup($info['dts']['raw']['bitrate']);		$info['dts']['bits_per_sample']      = self::bitPerSampleLookup($info['dts']['raw']['bits_per_sample']);		$info['dts']['sample_rate']          = self::sampleRateLookup($info['dts']['raw']['sample_frequency']);

Changelog

Unchanged from 6.7.7 through 7.1.0.

  1. 6.7.7
  2. 6.8.8
  3. 6.9.7
  4. 7.0.4
  5. 7.1.0

Signature, return type and hooks compared across 5 parsed releases.

About this page

Parsed data
Generated from the wordpress-develop 7.1.0 tag, from src/wp-includes/ID3/module.audio.dts.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
Corrections
Something wrong on this page? Report it and it gets fixed in the next regeneration.