/usr/share/php/getid3/autoload.php is in php-getid3 1.9.15+dfsg-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 | <?php
// @codingStandardsIgnoreFile
// @codeCoverageIgnoreStart
// this is an autogenerated file - do not edit
spl_autoload_register(
function($class) {
static $classes = null;
if ($classes === null) {
$classes = array(
'amfreader' => '/module.audio-video.flv.php',
'amfstream' => '/module.audio-video.flv.php',
'avcsequenceparametersetreader' => '/module.audio-video.flv.php',
'getid3' => '/getid3.php',
'getid3_aa' => '/module.audio.aa.php',
'getid3_aac' => '/module.audio.aac.php',
'getid3_ac3' => '/module.audio.ac3.php',
'getid3_amr' => '/module.audio.amr.php',
'getid3_apetag' => '/module.tag.apetag.php',
'getid3_asf' => '/module.audio-video.asf.php',
'getid3_au' => '/module.audio.au.php',
'getid3_avr' => '/module.audio.avr.php',
'getid3_bink' => '/module.audio-video.bink.php',
'getid3_bmp' => '/module.graphic.bmp.php',
'getid3_bonk' => '/module.audio.bonk.php',
'getid3_cached_dbm' => '/extension.cache.dbm.php',
'getid3_cached_mysql' => '/extension.cache.mysql.php',
'getid3_cached_mysqli' => '/extension.cache.mysqli.php',
'getid3_cached_sqlite3' => '/extension.cache.sqlite3.php',
'getid3_cue' => '/module.misc.cue.php',
'getid3_dsf' => '/module.audio.dsf.php',
'getid3_dss' => '/module.audio.dss.php',
'getid3_dts' => '/module.audio.dts.php',
'getid3_efax' => '/module.graphic.efax.php',
'getid3_exception' => '/getid3.php',
'getid3_exe' => '/module.misc.exe.php',
'getid3_flac' => '/module.audio.flac.php',
'getid3_flv' => '/module.audio-video.flv.php',
'getid3_gif' => '/module.graphic.gif.php',
'getid3_gzip' => '/module.archive.gzip.php',
'getid3_handler' => '/getid3.php',
'getid3_id3v1' => '/module.tag.id3v1.php',
'getid3_id3v2' => '/module.tag.id3v2.php',
'getid3_iso' => '/module.misc.iso.php',
'getid3_jpg' => '/module.graphic.jpg.php',
'getid3_la' => '/module.audio.la.php',
'getid3_lib' => '/getid3.lib.php',
'getid3_lpac' => '/module.audio.lpac.php',
'getid3_lyrics3' => '/module.tag.lyrics3.php',
'getid3_matroska' => '/module.audio-video.matroska.php',
'getid3_midi' => '/module.audio.midi.php',
'getid3_mod' => '/module.audio.mod.php',
'getid3_monkey' => '/module.audio.monkey.php',
'getid3_mp3' => '/module.audio.mp3.php',
'getid3_mpc' => '/module.audio.mpc.php',
'getid3_mpeg' => '/module.audio-video.mpeg.php',
'getid3_msoffice' => '/module.misc.msoffice.php',
'getid3_nsv' => '/module.audio-video.nsv.php',
'getid3_ogg' => '/module.audio.ogg.php',
'getid3_optimfrog' => '/module.audio.optimfrog.php',
'getid3_par2' => '/module.misc.par2.php',
'getid3_pcd' => '/module.graphic.pcd.php',
'getid3_pdf' => '/module.misc.pdf.php',
'getid3_png' => '/module.graphic.png.php',
'getid3_quicktime' => '/module.audio-video.quicktime.php',
'getid3_rar' => '/module.archive.rar.php',
'getid3_real' => '/module.audio-video.real.php',
'getid3_riff' => '/module.audio-video.riff.php',
'getid3_rkau' => '/module.audio.rkau.php',
'getid3_shorten' => '/module.audio.shorten.php',
'getid3_svg' => '/module.graphic.svg.php',
'getid3_swf' => '/module.audio-video.swf.php',
'getid3_szip' => '/module.archive.szip.php',
'getid3_tar' => '/module.archive.tar.php',
'getid3_tiff' => '/module.graphic.tiff.php',
'getid3_ts' => '/module.audio-video.ts.php',
'getid3_tta' => '/module.audio.tta.php',
'getid3_voc' => '/module.audio.voc.php',
'getid3_vqf' => '/module.audio.vqf.php',
'getid3_wavpack' => '/module.audio.wavpack.php',
'getid3_write_apetag' => '/write.apetag.php',
'getid3_write_id3v1' => '/write.id3v1.php',
'getid3_write_id3v2' => '/write.id3v2.php',
'getid3_write_lyrics3' => '/write.lyrics3.php',
'getid3_write_metaflac' => '/write.metaflac.php',
'getid3_write_real' => '/write.real.php',
'getid3_write_vorbiscomment' => '/write.vorbiscomment.php',
'getid3_writetags' => '/write.php',
'getid3_zip' => '/module.archive.zip.php',
'image_xmp' => '/module.tag.xmp.php'
);
}
$cn = strtolower($class);
if (isset($classes[$cn])) {
require __DIR__ . $classes[$cn];
}
},
true,
false
);
// @codeCoverageIgnoreEnd
|