We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ec67df commit 031fee8Copy full SHA for 031fee8
src/Module/AudioVideo/Riff.php
@@ -1830,7 +1830,7 @@ public static function parseWAVEFORMATex($WaveFormatExData) {
1830
if (strlen($WaveFormatExData) > 16) {
1831
$WaveFormatEx_raw['cbSize'] = substr($WaveFormatExData, 16, 2);
1832
}
1833
- $WaveFormatEx_raw = array_map('Utils::LittleEndian2Int', $WaveFormatEx_raw);
+ $WaveFormatEx_raw = array_map(array('JamesHeinrich\GetID3\Utils', 'LittleEndian2Int'), $WaveFormatEx_raw);
1834
1835
$WaveFormatEx['codec'] = self::wFormatTagLookup($WaveFormatEx_raw['wFormatTag']);
1836
$WaveFormatEx['channels'] = $WaveFormatEx_raw['nChannels'];
0 commit comments