getid3_matroska::unhandledElement() –
You appear to be a bot. Output may be restricted
Description
Usage
getid3_matroska::unhandledElement( $type, $line, $element );
Parameters
- $type
- ( string ) required –
- $line
- ( int ) required –
- $element
- ( array ) required –
Returns
void
Source
File name: wordpress/wp-includes/ID3/module.audio-video.matroska.php
Lines:
1 to 11 of 11
private function unhandledElement($type, $line, $element) { // warn only about unknown and missed elements, not about unuseful if (!in_array($element['id'], $this->unuseful_elements)) { $this->warning('Unhandled '.$type.' element ['.basename(__FILE__).':'.$line.'] ('.$element['id'].'::'.$element['id_name'].' ['.$element['length'].' bytes]) at '.$element['offset']); } // increase offset for unparsed elements if (!isset($element['data'])) { $this->current_offset = $element['end']; } }