Home
last modified time | relevance | path

Searched refs:BlockLacingType (Results 1 – 1 of 1) sorted by relevance

/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
H A Dmodule.audio-video.matroska.php1501 $block_data['flags']['lacing_type'] = self::BlockLacingType($block_data['flags']['lacing']);
1623 public static function BlockLacingType($lacingtype) { function in getid3_matroska
1625 static $BlockLacingType = array();
1626 if (empty($BlockLacingType)) {
1627 $BlockLacingType[0x00] = 'no lacing';
1628 $BlockLacingType[0x01] = 'Xiph lacing';
1629 $BlockLacingType[0x02] = 'fixed-size lacing';
1630 $BlockLacingType[0x03] = 'EBML lacing';
1632 return (isset($BlockLacingType[$lacingtype]) ? $BlockLacingType[$lacingtype] : $lacingtype);