wp-includes/ID3/module.audio-video.matroska.php:2033Fetch TimecodeScale from Info element
$infoarrayint private function getTimecodeScale(&$info) { $timecodeScale = MATROSKA_DEFAULT_TIMECODESCALE; if (isset($info['matroska']['info']) && is_array($info['matroska']['info'])) { foreach ($info['matroska']['info'] as $infoarray) { if (isset($infoarray['TimecodeScale'])) { $timecodeScale = $infoarray['TimecodeScale']; break; } } } return $timecodeScale; }Unchanged from 7.0.4 through 7.1.0.
Signature, return type and hooks compared across 2 parsed releases.
src/wp-includes/ID3/module.audio-video.matroska.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.