├── .gitignore ├── .vscode └── settings.json ├── 3rdparty ├── algif_1.3 │ ├── Makefile.dj │ ├── Makefile.mingw │ ├── Makefile.unix │ ├── README │ ├── example_gifs │ │ ├── alex.gif │ │ ├── allefant.gif │ │ ├── dispose.gif │ │ └── rgb.gif │ ├── examples │ │ ├── load_animation │ │ │ └── main.c │ │ ├── load_gif │ │ │ └── main.c │ │ ├── load_raw_animation │ │ │ └── main.c │ │ └── save_raw_animation │ │ │ └── main.c │ ├── readme.html │ └── src │ │ ├── algif.c │ │ ├── algif.h │ │ ├── gif.c │ │ ├── gif.h │ │ ├── icon.res │ │ ├── lzw.c │ │ └── lzw.h ├── allegro-4.2.2-xc-master │ ├── .gitignore │ ├── aclocal.m4 │ ├── allegro.cfg │ ├── configure.in │ ├── demo │ │ ├── animsel.c │ │ ├── animsel.h │ │ ├── aster.c │ │ ├── aster.h │ │ ├── bullet.c │ │ ├── bullet.h │ │ ├── data.h │ │ ├── demo.c │ │ ├── demo.dat │ │ ├── demo.h │ │ ├── dirty.c │ │ ├── dirty.h │ │ ├── display.c │ │ ├── display.h │ │ ├── expl.c │ │ ├── expl.h │ │ ├── game.c │ │ ├── game.h │ │ ├── music.txt │ │ ├── star.c │ │ ├── star.h │ │ ├── title.c │ │ └── title.h │ ├── docs │ │ ├── chm │ │ │ └── tmpfile.txt │ │ ├── devhelp │ │ │ └── tmpfile.txt │ │ ├── html │ │ │ ├── abi.html │ │ │ ├── ahack.html │ │ │ ├── allegro.aux │ │ │ ├── allegro.cp │ │ │ ├── allegro.css │ │ │ ├── allegro.dvi │ │ │ ├── allegro.fn │ │ │ ├── allegro.fns │ │ │ ├── allegro.html │ │ │ ├── allegro.ky │ │ │ ├── allegro.pdf │ │ │ ├── allegro.pg │ │ │ ├── allegro.ps │ │ │ ├── allegro.texi │ │ │ ├── allegro.toc │ │ │ ├── allegro.tp │ │ │ ├── allegro.vr │ │ │ ├── api.html │ │ │ ├── changes.html │ │ │ ├── const.html │ │ │ ├── dat.html │ │ │ ├── dat2c.html │ │ │ ├── dat2s.html │ │ │ ├── datafile.html │ │ │ ├── faq.html │ │ │ ├── grabber.html │ │ │ ├── help.html │ │ │ ├── index.html │ │ │ ├── license.html │ │ │ ├── makedoc.html │ │ │ ├── mistakes.html │ │ │ ├── packfile.html │ │ │ ├── readme.html │ │ │ ├── thanks.html │ │ │ └── tmpfile.txt │ │ ├── info │ │ │ └── tmpfile.txt │ │ ├── man │ │ │ └── tmpfile.txt │ │ ├── rtf │ │ │ └── tmpfile.txt │ │ ├── scite │ │ │ └── tmpfile.txt │ │ ├── src │ │ │ ├── abi._tx │ │ │ ├── ahack._tx │ │ │ ├── allegro._tx │ │ │ ├── api._tx │ │ │ ├── changes._tx │ │ │ ├── const._tx │ │ │ ├── dat._tx │ │ │ ├── dat2c._tx │ │ │ ├── dat2s._tx │ │ │ ├── datafile._tx │ │ │ ├── faq._tx │ │ │ ├── grabber._tx │ │ │ ├── help._tx │ │ │ ├── index._tx │ │ │ ├── license._tx │ │ │ ├── makedoc._tx │ │ │ ├── makedoc │ │ │ │ ├── format.txt │ │ │ │ ├── makechm.c │ │ │ │ ├── makechm.h │ │ │ │ ├── makedevh.c │ │ │ │ ├── makedevh.h │ │ │ │ ├── makedoc.c │ │ │ │ ├── makedoc.h │ │ │ │ ├── makehtml.c │ │ │ │ ├── makehtml.h │ │ │ │ ├── makeman.c │ │ │ │ ├── makeman.h │ │ │ │ ├── makemisc.c │ │ │ │ ├── makemisc.h │ │ │ │ ├── makertf.c │ │ │ │ ├── makertf.h │ │ │ │ ├── makesci.c │ │ │ │ ├── makesci.h │ │ │ │ ├── maketexi.c │ │ │ │ ├── maketexi.h │ │ │ │ ├── maketxt.c │ │ │ │ └── maketxt.h │ │ │ ├── mistakes._tx │ │ │ ├── packfile._tx │ │ │ ├── readme._tx │ │ │ └── thanks._tx │ │ ├── texi │ │ │ └── tmpfile.txt │ │ └── txt │ │ │ └── tmpfile.zzz │ ├── examples │ │ ├── allegro.pcx │ │ ├── ex12bit.c │ │ ├── ex3buf.c │ │ ├── ex3d.c │ │ ├── exaccel.c │ │ ├── exalpha.c │ │ ├── example.dat │ │ ├── example.h │ │ ├── examples.txt │ │ ├── exbitmap.c │ │ ├── exblend.c │ │ ├── excamera.c │ │ ├── excolmap.c │ │ ├── exconfig.c │ │ ├── exconfig.ini │ │ ├── excustom.c │ │ ├── exdata.c │ │ ├── exdbuf.c │ │ ├── exexedat.c │ │ ├── exfixed.c │ │ ├── exflame.c │ │ ├── exflip.c │ │ ├── exfont.c │ │ ├── exgui.c │ │ ├── exhello.c │ │ ├── exjoy.c │ │ ├── exkeys.c │ │ ├── exlights.c │ │ ├── exmem.c │ │ ├── exmidi.c │ │ ├── exmouse.c │ │ ├── expackf.c │ │ ├── expal.c │ │ ├── expat.c │ │ ├── exquat.c │ │ ├── exrgbhsv.c │ │ ├── exsample.c │ │ ├── exscale.c │ │ ├── exscn3d.c │ │ ├── exscroll.c │ │ ├── exshade.c │ │ ├── exspline.c │ │ ├── exsprite.c │ │ ├── exstars.c │ │ ├── exstream.c │ │ ├── exswitch.c │ │ ├── exsyscur.c │ │ ├── extimer.c │ │ ├── extrans.c │ │ ├── extruec.c │ │ ├── exunicod.c │ │ ├── exupdate.c │ │ ├── exxfade.c │ │ ├── exzbuf.c │ │ ├── mysha.pcx │ │ ├── planet.pcx │ │ ├── running.dat │ │ ├── running.h │ │ └── unifont.dat │ ├── fix.bat │ ├── fix.sh │ ├── include │ │ ├── allegro.h │ │ ├── allegro │ │ │ ├── 3d.h │ │ │ ├── 3dmaths.h │ │ │ ├── alcompat.h │ │ │ ├── alinline.h │ │ │ ├── base.h │ │ │ ├── color.h │ │ │ ├── compiled.h │ │ │ ├── config.h │ │ │ ├── datafile.h │ │ │ ├── debug.h │ │ │ ├── digi.h │ │ │ ├── draw.h │ │ │ ├── file.h │ │ │ ├── fix.h │ │ │ ├── fixed.h │ │ │ ├── fli.h │ │ │ ├── fmaths.h │ │ │ ├── font.h │ │ │ ├── gfx.h │ │ │ ├── graphics.h │ │ │ ├── gui.h │ │ │ ├── inline │ │ │ │ ├── 3dmaths.inl │ │ │ │ ├── asm.inl │ │ │ │ ├── color.inl │ │ │ │ ├── draw.inl │ │ │ │ ├── file.inl │ │ │ │ ├── fix.inl │ │ │ │ ├── fmaths.inl │ │ │ │ ├── gfx.inl │ │ │ │ ├── matrix.inl │ │ │ │ ├── rle.inl │ │ │ │ └── system.inl │ │ │ ├── internal │ │ │ │ ├── aintern.h │ │ │ │ ├── aintvga.h │ │ │ │ └── alconfig.h │ │ │ ├── joystick.h │ │ │ ├── keyboard.h │ │ │ ├── lzss.h │ │ │ ├── matrix.h │ │ │ ├── midi.h │ │ │ ├── mouse.h │ │ │ ├── palette.h │ │ │ ├── platform │ │ │ │ ├── aintbeos.h │ │ │ │ ├── aintdos.h │ │ │ │ ├── aintlnx.h │ │ │ │ ├── aintmac.h │ │ │ │ ├── aintosx.h │ │ │ │ ├── aintqnx.h │ │ │ │ ├── aintunix.h │ │ │ │ ├── aintwin.h │ │ │ │ ├── al386gcc.h │ │ │ │ ├── al386vc.h │ │ │ │ ├── al386wat.h │ │ │ │ ├── albcc32.h │ │ │ │ ├── albecfg.h │ │ │ │ ├── albeos.h │ │ │ │ ├── aldjgpp.h │ │ │ │ ├── aldmc.h │ │ │ │ ├── aldos.h │ │ │ │ ├── almac.h │ │ │ │ ├── almaccfg.h │ │ │ │ ├── almngw32.h │ │ │ │ ├── almsvc.h │ │ │ │ ├── alosx.h │ │ │ │ ├── alosxcfg.h │ │ │ │ ├── alplatf.h │ │ │ │ ├── alqnx.h │ │ │ │ ├── alqnxcfg.h │ │ │ │ ├── alucfg.h │ │ │ │ ├── alunix.h │ │ │ │ ├── alunixac.hin │ │ │ │ ├── alwatcom.h │ │ │ │ ├── alwin.h │ │ │ │ ├── astdint.h │ │ │ │ └── macdef.h │ │ │ ├── quat.h │ │ │ ├── rle.h │ │ │ ├── sound.h │ │ │ ├── stream.h │ │ │ ├── system.h │ │ │ ├── text.h │ │ │ ├── timer.h │ │ │ └── unicode.h │ │ ├── bealleg.h │ │ ├── linalleg.h │ │ ├── macalleg.h │ │ ├── osxalleg.h │ │ ├── qnxalleg.h │ │ ├── winalleg.h │ │ └── xalleg.h │ ├── indent.pro │ ├── lib │ │ ├── beos │ │ │ └── tmpfile.txt │ │ ├── djgpp │ │ │ └── tmpfile.txt │ │ ├── dmc │ │ │ └── tmpfile.txt │ │ ├── macosx │ │ │ └── tmpfile.txt │ │ ├── qnx │ │ │ └── tmpfile.txt │ │ ├── unix │ │ │ └── tmpfile.txt │ │ └── watcom │ │ │ └── tmpfile.txt │ ├── makefile │ ├── makefile.all │ ├── makefile.bcc │ ├── makefile.be │ ├── makefile.dj │ ├── makefile.dmc │ ├── makefile.in │ ├── makefile.lst │ ├── makefile.mgw │ ├── makefile.osx │ ├── makefile.qnx │ ├── makefile.tst │ ├── makefile.vc │ ├── makefile.ver │ ├── makefile.wat │ ├── misc │ │ ├── Info.plist │ │ ├── TemplateInfo.plist │ │ ├── alex.png │ │ ├── alex.xpm │ │ ├── allegro-config-qnx.sh │ │ ├── allegro-config.in │ │ ├── allegro.m4 │ │ ├── allegro.spec │ │ ├── askq.c │ │ ├── asmdef.sh │ │ ├── cmplog.pl │ │ ├── depdexe.sh │ │ ├── depdlib.sh │ │ ├── deplexe.sh │ │ ├── deplib.sh │ │ ├── depmexe.sh │ │ ├── depmod.sh │ │ ├── depnexe.sh │ │ ├── dllsyms.lst │ │ ├── embedman.bat │ │ ├── findheaders.c │ │ ├── findtext.sh │ │ ├── fixdll.bat │ │ ├── fixdll.sh │ │ ├── fixpatch.sh │ │ ├── fixver.sh │ │ ├── gcc-uni.sh │ │ ├── genexamp.py │ │ ├── install.sh │ │ ├── mdhelper.bat │ │ ├── mdhelper.sh │ │ ├── mkdata.bat │ │ ├── mkdata.sh │ │ ├── mkdirs.sh │ │ ├── mkpkg.sh │ │ ├── mkunixdists.sh │ │ ├── msvchelp.c │ │ ├── pkgreadme._tx │ │ ├── project.pbxproj │ │ ├── project.pbxuser │ │ ├── release.txt │ │ ├── scanexp.c │ │ ├── sf-cf.py │ │ ├── template.c │ │ ├── vcvars.c │ │ ├── zipup.sh │ │ └── zipwin.sh │ ├── modules.lst │ ├── obj │ │ ├── djgpp │ │ │ ├── alld │ │ │ │ └── makefile.dep │ │ │ ├── alleg │ │ │ │ └── makefile.dep │ │ │ └── allp │ │ │ │ └── makefile.dep │ │ └── unix │ │ │ ├── alld │ │ │ └── tmpfile.txt │ │ │ ├── alleg │ │ │ └── tmpfile.txt │ │ │ ├── allp │ │ │ └── tmpfile.txt │ │ │ ├── module │ │ │ └── tmpfile.txt │ │ │ └── shared │ │ │ ├── alld │ │ │ └── tmpfile.txt │ │ │ ├── alleg │ │ │ └── tmpfile.txt │ │ │ └── allp │ │ │ └── tmpfile.txt │ ├── readme.md │ ├── resource │ │ ├── keyboard │ │ │ ├── be.cfg │ │ │ ├── br.cfg │ │ │ ├── cf.cfg │ │ │ ├── ch.cfg │ │ │ ├── cz.cfg │ │ │ ├── de.cfg │ │ │ ├── dk.cfg │ │ │ ├── dvorak.cfg │ │ │ ├── es.cfg │ │ │ ├── fi.cfg │ │ │ ├── fr.cfg │ │ │ ├── it.cfg │ │ │ ├── no.cfg │ │ │ ├── pl.cfg │ │ │ ├── pt.cfg │ │ │ ├── ru.cfg │ │ │ ├── se.cfg │ │ │ ├── sk.cfg │ │ │ ├── uk.cfg │ │ │ └── us.cfg │ │ └── language │ │ │ ├── catext.cfg │ │ │ ├── cztext.cfg │ │ │ ├── detext.cfg │ │ │ ├── dktext.cfg │ │ │ ├── entext.cfg │ │ │ ├── estext.cfg │ │ │ ├── fitext.cfg │ │ │ ├── frtext.cfg │ │ │ ├── ittext.cfg │ │ │ ├── nltext.cfg │ │ │ ├── notext.cfg │ │ │ ├── pltext.cfg │ │ │ ├── pttext.cfg │ │ │ ├── rutext.cfg │ │ │ ├── setext.cfg │ │ │ └── sktext.cfg │ ├── setup │ │ ├── keyconf.c │ │ ├── keyconf.txt │ │ ├── setup.c │ │ ├── setup.dat │ │ ├── setup.h │ │ └── setup.txt │ ├── src │ │ ├── allegro.c │ │ ├── amd64 │ │ │ ├── acpus.s │ │ │ └── asmdefs.inc │ │ ├── beos │ │ │ ├── baccel.cpp │ │ │ ├── bdispsw.cpp │ │ │ ├── bdwindow.cpp │ │ │ ├── bgfx.c │ │ │ ├── bgfxapi.cpp │ │ │ ├── bgfxdrv.c │ │ │ ├── bjoy.c │ │ │ ├── bjoyapi.cpp │ │ │ ├── bjoydrv.c │ │ │ ├── bkey.c │ │ │ ├── bkeyapi.cpp │ │ │ ├── bkeydrv.c │ │ │ ├── bmidi.c │ │ │ ├── bmidiapi.cpp │ │ │ ├── bmididrv.c │ │ │ ├── bmousapi.cpp │ │ │ ├── bmousdrv.c │ │ │ ├── bmouse.c │ │ │ ├── boverlay.cpp │ │ │ ├── bsnd.c │ │ │ ├── bsndapi.cpp │ │ │ ├── bsnddrv.c │ │ │ ├── bswitch.s │ │ │ ├── bsysapi.cpp │ │ │ ├── bsysdrv.c │ │ │ ├── bsystem.c │ │ │ ├── btimeapi.cpp │ │ │ ├── btimedrv.c │ │ │ ├── btimer.c │ │ │ ├── bwindow.cpp │ │ │ └── bwscreen.cpp │ │ ├── blit.c │ │ ├── bmp.c │ │ ├── c │ │ │ ├── cblit.h │ │ │ ├── cblit16.c │ │ │ ├── cblit24.c │ │ │ ├── cblit32.c │ │ │ ├── cblit8.c │ │ │ ├── ccpu.c │ │ │ ├── ccsprite.c │ │ │ ├── cdefs15.h │ │ │ ├── cdefs16.h │ │ │ ├── cdefs24.h │ │ │ ├── cdefs32.h │ │ │ ├── cdefs8.h │ │ │ ├── cgfx.h │ │ │ ├── cgfx15.c │ │ │ ├── cgfx16.c │ │ │ ├── cgfx24.c │ │ │ ├── cgfx32.c │ │ │ ├── cgfx8.c │ │ │ ├── cmisc.c │ │ │ ├── cmiscs.s │ │ │ ├── cscan.h │ │ │ ├── cscan15.c │ │ │ ├── cscan16.c │ │ │ ├── cscan24.c │ │ │ ├── cscan32.c │ │ │ ├── cscan8.c │ │ │ ├── cspr.h │ │ │ ├── cspr15.c │ │ │ ├── cspr16.c │ │ │ ├── cspr24.c │ │ │ ├── cspr32.c │ │ │ ├── cspr8.c │ │ │ ├── cstretch.c │ │ │ ├── czscan.h │ │ │ ├── czscan15.c │ │ │ ├── czscan16.c │ │ │ ├── czscan24.c │ │ │ ├── czscan32.c │ │ │ └── czscan8.c │ │ ├── clip3d.c │ │ ├── clip3df.c │ │ ├── colblend.c │ │ ├── color.c │ │ ├── config.c │ │ ├── datafile.c │ │ ├── dataregi.c │ │ ├── digmid.c │ │ ├── dispsw.c │ │ ├── dither.c │ │ ├── dos │ │ │ ├── adlib.c │ │ │ ├── awedata.c │ │ │ ├── dfile.c │ │ │ ├── dgfxdrv.c │ │ │ ├── djirq.c │ │ │ ├── djirqs.s │ │ │ ├── djoydrv.c │ │ │ ├── dkeybd.c │ │ │ ├── dma.c │ │ │ ├── dmouse.c │ │ │ ├── dpmi.c │ │ │ ├── dsnddrv.c │ │ │ ├── dsystem.c │ │ │ ├── dtimer.c │ │ │ ├── emu8k.c │ │ │ ├── emu8k.h │ │ │ ├── emu8kmid.c │ │ │ ├── essaudio.c │ │ │ ├── gpro.c │ │ │ ├── grip.c │ │ │ ├── grip.h │ │ │ ├── gripfnc.s │ │ │ ├── gripjoy.c │ │ │ ├── ifsega.c │ │ │ ├── ifsega2f.c │ │ │ ├── ifsega2p.c │ │ │ ├── joystd.c │ │ │ ├── mpu.c │ │ │ ├── multijoy.c │ │ │ ├── n64pad.c │ │ │ ├── pic.c │ │ │ ├── psxpad.c │ │ │ ├── sb.c │ │ │ ├── sndscape.c │ │ │ ├── snespad.c │ │ │ ├── sw.c │ │ │ ├── swpp.c │ │ │ ├── swpps.s │ │ │ ├── vesa.c │ │ │ ├── vesas.s │ │ │ ├── wat.c │ │ │ ├── wss.c │ │ │ └── ww.c │ │ ├── drvlist.c │ │ ├── file.c │ │ ├── fli.c │ │ ├── flood.c │ │ ├── font.c │ │ ├── fontbios.c │ │ ├── fontbmp.c │ │ ├── fontdat.c │ │ ├── fontgrx.c │ │ ├── fonttxt.c │ │ ├── fsel.c │ │ ├── gfx.c │ │ ├── glyph.c │ │ ├── graphics.c │ │ ├── gsprite.c │ │ ├── gui.c │ │ ├── guiproc.c │ │ ├── i386 │ │ │ ├── asmdef.c │ │ │ ├── asmdefs.inc │ │ │ ├── blit.inc │ │ │ ├── iblit16.s │ │ │ ├── iblit24.s │ │ │ ├── iblit32.s │ │ │ ├── iblit8.s │ │ │ ├── icpu.c │ │ │ ├── icpus.s │ │ │ ├── icsprite.c │ │ │ ├── igfx15.s │ │ │ ├── igfx16.s │ │ │ ├── igfx24.s │ │ │ ├── igfx32.s │ │ │ ├── igfx8.s │ │ │ ├── imisc.s │ │ │ ├── iscan.s │ │ │ ├── iscanmmx.s │ │ │ ├── ispr15.s │ │ │ ├── ispr16.s │ │ │ ├── ispr24.s │ │ │ ├── ispr32.s │ │ │ ├── ispr8.s │ │ │ ├── istretch.c │ │ │ ├── izbuf.s │ │ │ ├── opcodes.h │ │ │ └── sprite.inc │ │ ├── inline.c │ │ ├── joystick.c │ │ ├── keyboard.c │ │ ├── lbm.c │ │ ├── libc.c │ │ ├── linux │ │ │ ├── fbcon.c │ │ │ ├── lasyncio.c │ │ │ ├── lconsole.c │ │ │ ├── lgfxdrv.c │ │ │ ├── ljoy.c │ │ │ ├── lkeybd.c │ │ │ ├── lmemory.c │ │ │ ├── lmouse.c │ │ │ ├── lmsedrv.c │ │ │ ├── lmseev.c │ │ │ ├── lmsegpmd.c │ │ │ ├── lmsems.c │ │ │ ├── lmseps2.c │ │ │ ├── lstddrv.c │ │ │ ├── lsystem.c │ │ │ ├── ltimer.c │ │ │ ├── lvga.c │ │ │ ├── lvgahelp.c │ │ │ ├── svgalib.c │ │ │ ├── svgalibs.s │ │ │ └── vtswitch.c │ │ ├── lzss.c │ │ ├── mac │ │ │ ├── allegro.r │ │ │ ├── madb.c │ │ │ ├── mdraw.c │ │ │ ├── mdrv.c │ │ │ ├── mfile.c │ │ │ ├── mkey.c │ │ │ ├── mlock.c │ │ │ ├── mmid.c │ │ │ ├── msbmp.c │ │ │ ├── msnd.c │ │ │ └── msys.c │ │ ├── macosx │ │ │ ├── cadigi.m │ │ │ ├── camidi.m │ │ │ ├── drivers.m │ │ │ ├── hidjoy.m │ │ │ ├── hidman.m │ │ │ ├── keybd.m │ │ │ ├── main.m │ │ │ ├── pcpu.m │ │ │ ├── qtmidi.m │ │ │ ├── quartz.m │ │ │ ├── qzfull.m │ │ │ ├── qzmouse.m │ │ │ ├── qzwindow.m │ │ │ ├── soundman.m │ │ │ └── system.m │ │ ├── math.c │ │ ├── math3d.c │ │ ├── midi.c │ │ ├── misc │ │ │ ├── asmcapa.s │ │ │ ├── ccolconv.c │ │ │ ├── colconv.c │ │ │ ├── fm_drum.h │ │ │ ├── fm_emu.h │ │ │ ├── fm_instr.h │ │ │ ├── icolconv.s │ │ │ ├── modex.c │ │ │ ├── modexgfx.s │ │ │ ├── modexsms.c │ │ │ ├── modexsms.h │ │ │ ├── pckeys.c │ │ │ ├── runner.c │ │ │ ├── runnergw.c │ │ │ ├── test.cpp │ │ │ ├── vbeaf.c │ │ │ ├── vbeafex.c │ │ │ ├── vbeafs.s │ │ │ ├── vga.c │ │ │ └── vgaregs.c │ │ ├── mixer.c │ │ ├── modesel.c │ │ ├── mouse.c │ │ ├── pcx.c │ │ ├── poly3d.c │ │ ├── polygon.c │ │ ├── ppc │ │ │ ├── pgfx8.inc │ │ │ ├── ppccc15.inc │ │ │ ├── ppccc8.inc │ │ │ ├── ppcdef.inc │ │ │ ├── ppcfr8.inc │ │ │ ├── ppcgfx.s │ │ │ ├── ppchl8.inc │ │ │ ├── ppcpp8.inc │ │ │ └── ppcvl8.inc │ │ ├── qnx │ │ │ ├── qdrivers.c │ │ │ ├── qkeydrv.c │ │ │ ├── qmouse.c │ │ │ ├── qphaccel.c │ │ │ ├── qphbmp.c │ │ │ ├── qphfull.c │ │ │ ├── qphoton.c │ │ │ ├── qphwin.c │ │ │ ├── qswitch.s │ │ │ └── qsystem.c │ │ ├── quantize.c │ │ ├── quat.c │ │ ├── readbmp.c │ │ ├── readfont.c │ │ ├── readsmp.c │ │ ├── rle.c │ │ ├── rotate.c │ │ ├── scene3d.c │ │ ├── sound.c │ │ ├── spline.c │ │ ├── stream.c │ │ ├── text.c │ │ ├── tga.c │ │ ├── timer.c │ │ ├── unicode.c │ │ ├── unix │ │ │ ├── alsa5.c │ │ │ ├── alsa9.c │ │ │ ├── alsamidi.c │ │ │ ├── arts.c │ │ │ ├── jack.c │ │ │ ├── sgial.c │ │ │ ├── udjgpp.c │ │ │ ├── udrvlist.c │ │ │ ├── udummy.c │ │ │ ├── uesd.c │ │ │ ├── ufile.c │ │ │ ├── ugfxdrv.c │ │ │ ├── ujoydrv.c │ │ │ ├── ukeybd.c │ │ │ ├── umain.c │ │ │ ├── umodules.c │ │ │ ├── umouse.c │ │ │ ├── uoss.c │ │ │ ├── uossmidi.c │ │ │ ├── uptimer.c │ │ │ ├── usigalrm.c │ │ │ ├── usnddrv.c │ │ │ ├── ustimer.c │ │ │ ├── usystem.c │ │ │ ├── uthreads.c │ │ │ └── utimer.c │ │ ├── vtable.c │ │ ├── vtable15.c │ │ ├── vtable16.c │ │ ├── vtable24.c │ │ ├── vtable32.c │ │ ├── vtable8.c │ │ ├── win │ │ │ ├── asmlock.s │ │ │ ├── dllver.rc │ │ │ ├── gdi.c │ │ │ ├── wddaccel.c │ │ │ ├── wddbmp.c │ │ │ ├── wddbmpl.c │ │ │ ├── wddfull.c │ │ │ ├── wddlock.c │ │ │ ├── wddmode.c │ │ │ ├── wddovl.c │ │ │ ├── wddraw.c │ │ │ ├── wddraw.h │ │ │ ├── wddwin.c │ │ │ ├── wdispsw.c │ │ │ ├── wdsinput.c │ │ │ ├── wdsndmix.c │ │ │ ├── wdsound.c │ │ │ ├── wdxver.c │ │ │ ├── wfile.c │ │ │ ├── wgdi.c │ │ │ ├── wgfxdrv.c │ │ │ ├── winput.c │ │ │ ├── wjoydrv.c │ │ │ ├── wjoydx.c │ │ │ ├── wjoyhelp.c │ │ │ ├── wjoyw32.c │ │ │ ├── wkeybd.c │ │ │ ├── wmidi.c │ │ │ ├── wmouse.c │ │ │ ├── wsnddrv.c │ │ │ ├── wsndwo.c │ │ │ ├── wsystem.c │ │ │ ├── wthread.c │ │ │ ├── wtimer.c │ │ │ └── wwnd.c │ │ └── x │ │ │ ├── alex.xpm │ │ │ ├── xdga2.c │ │ │ ├── xdga2s.s │ │ │ ├── xgfxdrv.c │ │ │ ├── xkeyboard.c │ │ │ ├── xmouse.c │ │ │ ├── xsystem.c │ │ │ ├── xtimer.c │ │ │ ├── xvtable.c │ │ │ ├── xwin.c │ │ │ ├── xwin.h │ │ │ └── xwins.s │ ├── stamp-h.in │ ├── tests │ │ ├── afinfo.c │ │ ├── akaitest.c │ │ ├── cpptest.cpp │ │ ├── digitest.c │ │ ├── filetest.c │ │ ├── gfxinfo.c │ │ ├── mac │ │ │ ├── exhello.make │ │ │ ├── template.make │ │ │ └── test.make │ │ ├── mathtest.c │ │ ├── miditest.c │ │ ├── play.c │ │ ├── playfli.c │ │ ├── test.c │ │ ├── vesainfo.c │ │ └── win │ │ │ ├── dibgrab.c │ │ │ ├── dibhello.c │ │ │ ├── dibsound.c │ │ │ ├── dibsound.rc │ │ │ ├── dibsound.rh │ │ │ ├── dxwindow.c │ │ │ ├── dxwindow.rc │ │ │ ├── dxwindow.rh │ │ │ ├── scrsave.c │ │ │ ├── scrsave.rc │ │ │ └── scrsave.rh │ ├── todo.txt │ ├── tools │ │ ├── beos │ │ │ ├── bfixicon.cpp │ │ │ └── bfixicon.txt │ │ ├── colormap.c │ │ ├── dat.c │ │ ├── dat2c.c │ │ ├── dat2s.c │ │ ├── datedit.c │ │ ├── datedit.h │ │ ├── exedat.c │ │ ├── grabber.c │ │ ├── macosx │ │ │ └── fixbundle.c │ │ ├── pack.c │ │ ├── pat2dat.c │ │ ├── plugins │ │ │ ├── datalpha.c │ │ │ ├── datalpha.inc │ │ │ ├── datfli.c │ │ │ ├── datfli.inc │ │ │ ├── datfname.c │ │ │ ├── datfname.inc │ │ │ ├── datfont.c │ │ │ ├── datfont.inc │ │ │ ├── datgrab.c │ │ │ ├── datgrab.inc │ │ │ ├── datgrid.c │ │ │ ├── datgrid.inc │ │ │ ├── datimage.c │ │ │ ├── datimage.inc │ │ │ ├── datitype.c │ │ │ ├── datitype.inc │ │ │ ├── datmidi.c │ │ │ ├── datmidi.inc │ │ │ ├── datpal.c │ │ │ ├── datpal.inc │ │ │ ├── datsamp.c │ │ │ ├── datsamp.inc │ │ │ ├── datworms.c │ │ │ ├── datworms.inc │ │ │ └── plugins.txt │ │ ├── rgbmap.c │ │ ├── textconv.c │ │ ├── win │ │ │ ├── wfixicon.c │ │ │ └── wfixicon.txt │ │ └── x11 │ │ │ ├── xf2pcx.c │ │ │ ├── xfixicon.sh │ │ │ ├── xkeymap.c │ │ │ └── xkeymap.txt │ └── xmake.sh ├── alpng13 │ ├── Makefile.nozlib │ ├── Makefile.zlib │ ├── changes.txt │ ├── configure │ ├── configure.bat │ ├── doc.html │ ├── ex01.c │ ├── image.png │ ├── makefiles │ │ ├── makefile.linux0 │ │ ├── makefile.linux1 │ │ ├── makefile.linux2 │ │ ├── makefile.mingw0 │ │ ├── makefile.mingw1 │ │ ├── makefile.mingw2 │ │ ├── makefile.msvc0 │ │ ├── makefile.msvc1 │ │ └── makefile.msvc2 │ ├── objects │ │ └── removeme.txt │ └── src │ │ ├── alpng.h │ │ ├── alpng_common.c │ │ ├── alpng_drawer.c │ │ ├── alpng_filereader.c │ │ ├── alpng_filters.c │ │ ├── alpng_interlacing.c │ │ ├── alpng_internal.h │ │ ├── alpng_private.h │ │ ├── alpng_save.c │ │ ├── inflate │ │ ├── huffman.c │ │ ├── huffman.h │ │ ├── inflate.c │ │ ├── inflate.h │ │ ├── input.c │ │ └── input.h │ │ ├── quantization │ │ ├── octree.c │ │ └── octree.h │ │ └── wrappers │ │ ├── cryptopp_zlib.cpp │ │ ├── deflate.h │ │ └── original_zlib.c ├── jasper-4.2.4 │ ├── CMakeLists.txt │ ├── COPYRIGHT.txt │ ├── ChangeLog │ ├── INSTALL.txt │ ├── LICENSE.txt │ ├── NEWS.txt │ ├── README.md │ ├── bin │ │ └── base_utilities │ ├── build │ │ ├── base_utilities │ │ ├── build │ │ ├── build_all │ │ ├── build_wasi_jasper │ │ ├── cmake │ │ │ ├── modules │ │ │ │ ├── EnableAssertions.cmake │ │ │ │ ├── InSourceBuild.cmake │ │ │ │ ├── JasCheckType.cmake │ │ │ │ ├── JasGetIncludes.cmake │ │ │ │ ├── JasGetStdcVersion.cmake │ │ │ │ └── Sanitizers.cmake │ │ │ └── src │ │ │ │ └── print_stdc.c │ │ ├── install_wasi_sdk │ │ ├── install_wasmtime │ │ ├── pkgconfig │ │ │ └── jasper.pc.in │ │ ├── sysinfo │ │ └── wasm_cc │ ├── cmake-djgpp.sh │ ├── data │ │ ├── colorprofiles │ │ │ ├── README.txt │ │ │ ├── erimm.icm │ │ │ ├── esrgb.icm │ │ │ ├── esrgbgrey.icm │ │ │ ├── grey.icm │ │ │ ├── greyromm.icm │ │ │ ├── romm.icm │ │ │ ├── sgray.icm │ │ │ ├── srgb.icm │ │ │ └── sycc.icm │ │ ├── images │ │ │ ├── README.txt │ │ │ ├── example.mif │ │ │ ├── example.mif0 │ │ │ ├── feed.pnm │ │ │ ├── feep.pnm │ │ │ ├── feep2.pnm │ │ │ ├── goldenears.bmp │ │ │ ├── goldenears.jp2 │ │ │ ├── goldenears.jpg │ │ │ ├── goldenears.pnm │ │ │ ├── goldenears.ras │ │ │ ├── goldenears_gray.jp2 │ │ │ ├── goldenears_gray.jpg │ │ │ ├── goldenears_gray.pnm │ │ │ ├── goldenears_gray.ras │ │ │ ├── signed_12.pgx │ │ │ ├── signed_16.pgx │ │ │ ├── signed_8.pgx │ │ │ ├── small_16x1.pnm │ │ │ ├── small_1x1.pnm │ │ │ ├── stawamuschief.pnm │ │ │ ├── stawamuschief_gray.pnm │ │ │ └── test.pnm │ │ └── test │ │ │ ├── bad │ │ │ ├── 00003-jasper-assert-jas_matrix_t.jp2 │ │ │ ├── 00005-jasper-assert-ras_getcmap.ras │ │ │ ├── 00006-jasper-assert-jpc_irct.jpc │ │ │ ├── 00007-jasper-assert-jas_matrix_t.jpc │ │ │ ├── 00008-jasper-assert-jpc_iict.jp2 │ │ │ ├── 00009-jasper-assert-jpc_iict.jp2 │ │ │ ├── 00012-jasper-assert-calcstepsizes.jp2 │ │ │ ├── 00013-jasper-assert-jpc_pi_nextrpcl.jpc │ │ │ ├── 00014-jasper-assert-jpc_bitstream_getbits.jpc │ │ │ ├── 00016-jasper-assert-jas_matrix_t.jp2 │ │ │ ├── 00020-jasper-signedintoverflow-jas_image_c.jpc │ │ │ ├── 00028-jasper-uaf-jas_realloc.jpg │ │ │ ├── 00029-jasper-uninitvalue-jpc_pi_nextcprl.jp2 │ │ │ ├── 00043-jasper-assert-jas_matrix_t.jpc │ │ │ ├── 00047-jasper-stackoverflow-jpc_tsfb_getbands2.jpc │ │ │ ├── 00052-jasper-misalignedaddress.jp2 │ │ │ ├── 00124-jasper-nullptr-jp2_cdef_destroy.jp2 │ │ │ ├── 10_crash.bmp │ │ │ ├── 11_crash.jpc │ │ │ ├── 12_crash.jpc │ │ │ ├── 132_crashes.jp2 │ │ │ ├── 268_poc.jp2 │ │ │ ├── 269.jp2 │ │ │ ├── 271a.pgx │ │ │ ├── 271b.pgx │ │ │ ├── 274.pgx │ │ │ ├── 276.pgx │ │ │ ├── 277.jp2 │ │ │ ├── 281a.pgx │ │ │ ├── 281b.pgx │ │ │ ├── 291.jp2 │ │ │ ├── 2_crashes.bmp │ │ │ ├── 307_empty_iccp.jp2 │ │ │ ├── 309.jpc │ │ │ ├── 318.jpc │ │ │ ├── 345-0.pnm │ │ │ ├── 345-1.pnm │ │ │ ├── 353.pnm │ │ │ ├── 367-PoC.jp2 │ │ │ ├── 383.heic │ │ │ ├── 5_crashes.bmp │ │ │ ├── 642_crashes.jpc │ │ │ ├── 681_crashes.jp2 │ │ │ ├── 8_crashes.jp2 │ │ │ ├── 9_crash.bmp │ │ │ ├── README.txt │ │ │ ├── heap-out-of-bound-read-due-to-off-by-1-poc.jp2 │ │ │ ├── hoob_8.jp2 │ │ │ ├── invalid_free.jp2 │ │ │ ├── invalid_munmap.jp2 │ │ │ ├── jasper-abort-new.mif │ │ │ ├── jasper-abort.mif │ │ │ ├── jasper-assert-jpc_dec_tiledecode.jp2 │ │ │ ├── jasper-doublefree-mem_close.jpg │ │ │ ├── jasper-heapoverflow-jpc_dec_cp_setfromcox.jp2 │ │ │ ├── jasper-heapoverflow-jpc_getuint16.jp2 │ │ │ ├── null-pointer-dereference-poc.jp2 │ │ │ ├── nullptr.mif │ │ │ ├── poc.jp2 │ │ │ ├── poc_2.jp2 │ │ │ ├── poc_264.jp2 │ │ │ ├── poc_265.jp2 │ │ │ ├── sigsegv.jp2 │ │ │ └── vertcraig-heap-buffer-overflow-in-jpc_pi_nextrpcl.jp2 │ │ │ ├── good │ │ │ ├── 00021-jasper-uninitvalue-jpg_mkimage.jpg │ │ │ ├── 105-PoC1.jp2 │ │ │ ├── 109-PoC.jp2 │ │ │ ├── 120-master1.mif │ │ │ ├── 120-master2.mif │ │ │ ├── 120-master3.mif │ │ │ ├── 120-other.mif │ │ │ ├── 368_poc_min.pnm │ │ │ ├── PoC1.jpc │ │ │ ├── PoC2.jpc │ │ │ ├── README.txt │ │ │ ├── assert-pnm_getsint.mif │ │ │ ├── jasper-nullptr-jpc_pi_destroy.jp2 │ │ │ ├── jasper-segfault-nullpointer.mif │ │ │ ├── signed_pnm.pnm │ │ │ └── small_1x1.jpg │ │ │ └── other │ │ │ ├── 278.jp2 │ │ │ └── pr325-bad-icc-profile.jp2 │ ├── doc │ │ ├── CMakeLists.txt │ │ ├── Doxyfile.in │ │ ├── README.txt │ │ ├── jpeg2000.pdf │ │ └── src │ │ │ ├── apps.dox │ │ │ ├── apps_imgcmp.dox │ │ │ ├── apps_imginfo.dox │ │ │ ├── apps_jasper.dox │ │ │ ├── apps_jiv.dox │ │ │ ├── bugs.dox │ │ │ ├── codecs.dox │ │ │ ├── figures │ │ │ ├── comp.fig │ │ │ ├── make_figures │ │ │ ├── refgridex.fig │ │ │ ├── software.fig │ │ │ └── srcimgmodel.fig │ │ │ ├── figures_generated │ │ │ ├── comp.eps │ │ │ ├── comp.png │ │ │ ├── refgridex.eps │ │ │ ├── refgridex.png │ │ │ ├── software.eps │ │ │ ├── software.png │ │ │ ├── srcimgmodel.eps │ │ │ └── srcimgmodel.png │ │ │ ├── install.dox.in │ │ │ ├── intro.dox │ │ │ ├── lib.dox │ │ │ ├── lib_images.dox │ │ │ ├── lib_init.dox │ │ │ ├── lib_iostreams.dox │ │ │ ├── lib_log.dox │ │ │ ├── lib_math.dox │ │ │ ├── lib_misc.dox │ │ │ ├── lib_string.dox │ │ │ ├── lib_threads.dox │ │ │ ├── lib_timers.dox │ │ │ ├── license.dox.in │ │ │ ├── modules.dox │ │ │ ├── overview.dox.in │ │ │ └── references.bib │ ├── src │ │ ├── README.txt │ │ ├── app │ │ │ ├── CMakeLists.txt │ │ │ ├── fuzz.c │ │ │ ├── imgcmp.1 │ │ │ ├── imgcmp.c │ │ │ ├── imginfo.1 │ │ │ ├── imginfo.c │ │ │ ├── jasper.1 │ │ │ ├── jasper.c │ │ │ ├── jiv.1 │ │ │ ├── jiv.c │ │ │ ├── multithread.c │ │ │ ├── test_1.c │ │ │ ├── test_2.cpp │ │ │ └── tmrdemo.c │ │ └── libjasper │ │ │ ├── CMakeLists.txt │ │ │ ├── README.txt │ │ │ ├── base │ │ │ ├── jas_cm.c │ │ │ ├── jas_debug.c │ │ │ ├── jas_getopt.c │ │ │ ├── jas_icc.c │ │ │ ├── jas_iccdata.c │ │ │ ├── jas_image.c │ │ │ ├── jas_init.c │ │ │ ├── jas_malloc.c │ │ │ ├── jas_seq.c │ │ │ ├── jas_stream.c │ │ │ ├── jas_string.c │ │ │ ├── jas_tmr.c │ │ │ ├── jas_tvp.c │ │ │ └── jas_version.c │ │ │ ├── bmp │ │ │ ├── bmp_cod.c │ │ │ ├── bmp_cod.h │ │ │ ├── bmp_dec.c │ │ │ ├── bmp_enc.c │ │ │ └── bmp_enc.h │ │ │ ├── heic │ │ │ ├── heic_dec.c │ │ │ ├── heic_enc.c │ │ │ └── heic_val.c │ │ │ ├── include │ │ │ └── jasper │ │ │ │ ├── jas_cm.h │ │ │ │ ├── jas_compiler.h │ │ │ │ ├── jas_config.h.in │ │ │ │ ├── jas_debug.h │ │ │ │ ├── jas_dll.h │ │ │ │ ├── jas_fix.h │ │ │ │ ├── jas_getopt.h │ │ │ │ ├── jas_icc.h │ │ │ │ ├── jas_image.h │ │ │ │ ├── jas_init.h │ │ │ │ ├── jas_log.h │ │ │ │ ├── jas_malloc.h │ │ │ │ ├── jas_math.h │ │ │ │ ├── jas_seq.h │ │ │ │ ├── jas_stream.h │ │ │ │ ├── jas_string.h │ │ │ │ ├── jas_thread.h │ │ │ │ ├── jas_tmr.h │ │ │ │ ├── jas_tvp.h │ │ │ │ ├── jas_types.h │ │ │ │ ├── jas_version.h │ │ │ │ └── jasper.h │ │ │ ├── jp2 │ │ │ ├── jp2_cod.c │ │ │ ├── jp2_cod.h │ │ │ ├── jp2_dec.c │ │ │ ├── jp2_dec.h │ │ │ └── jp2_enc.c │ │ │ ├── jpc │ │ │ ├── jpc_bs.c │ │ │ ├── jpc_bs.h │ │ │ ├── jpc_cod.c │ │ │ ├── jpc_cod.h │ │ │ ├── jpc_cs.c │ │ │ ├── jpc_cs.h │ │ │ ├── jpc_dec.c │ │ │ ├── jpc_dec.h │ │ │ ├── jpc_enc.c │ │ │ ├── jpc_enc.h │ │ │ ├── jpc_fix.h │ │ │ ├── jpc_flt.h │ │ │ ├── jpc_math.c │ │ │ ├── jpc_math.h │ │ │ ├── jpc_mct.c │ │ │ ├── jpc_mct.h │ │ │ ├── jpc_mqcod.c │ │ │ ├── jpc_mqcod.h │ │ │ ├── jpc_mqdec.c │ │ │ ├── jpc_mqdec.h │ │ │ ├── jpc_mqenc.c │ │ │ ├── jpc_mqenc.h │ │ │ ├── jpc_qmfb.c │ │ │ ├── jpc_qmfb.h │ │ │ ├── jpc_t1cod.c │ │ │ ├── jpc_t1cod.h │ │ │ ├── jpc_t1dec.c │ │ │ ├── jpc_t1dec.h │ │ │ ├── jpc_t1enc.c │ │ │ ├── jpc_t1enc.h │ │ │ ├── jpc_t2cod.c │ │ │ ├── jpc_t2cod.h │ │ │ ├── jpc_t2dec.c │ │ │ ├── jpc_t2dec.h │ │ │ ├── jpc_t2enc.c │ │ │ ├── jpc_t2enc.h │ │ │ ├── jpc_tagtree.c │ │ │ ├── jpc_tagtree.h │ │ │ ├── jpc_tsfb.c │ │ │ ├── jpc_tsfb.h │ │ │ ├── jpc_util.c │ │ │ └── jpc_util.h │ │ │ ├── jpg │ │ │ ├── README.txt │ │ │ ├── jpg_cod.h │ │ │ ├── jpg_dec.c │ │ │ ├── jpg_enc.c │ │ │ ├── jpg_enc.h │ │ │ ├── jpg_jpeglib.h │ │ │ └── jpg_val.c │ │ │ ├── mif │ │ │ ├── README.txt │ │ │ ├── mif_cod.c │ │ │ └── mif_cod.h │ │ │ ├── pgx │ │ │ ├── pgx_cod.c │ │ │ ├── pgx_cod.h │ │ │ ├── pgx_dec.c │ │ │ ├── pgx_enc.c │ │ │ └── pgx_enc.h │ │ │ ├── pnm │ │ │ ├── pnm_cod.c │ │ │ ├── pnm_cod.h │ │ │ ├── pnm_dec.c │ │ │ ├── pnm_enc.c │ │ │ └── pnm_enc.h │ │ │ └── ras │ │ │ ├── ras_cod.c │ │ │ ├── ras_cod.h │ │ │ ├── ras_dec.c │ │ │ ├── ras_enc.c │ │ │ └── ras_enc.h │ └── test │ │ └── bin │ │ ├── base_utilities │ │ ├── codec_tests │ │ ├── conformance_tests │ │ ├── jpcod │ │ ├── jpdec │ │ ├── jpenc │ │ ├── run_codec_test │ │ ├── run_conformance_tests │ │ ├── run_mem_test │ │ ├── run_test_1 │ │ ├── run_test_2 │ │ ├── run_test_3 │ │ ├── run_test_5 │ │ ├── run_test_imgcmp │ │ ├── run_test_imginfo │ │ ├── test_utilities │ │ └── wrapper.in ├── jpeg-9f │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── aclocal.m4 │ ├── ar-lib │ ├── cdaltui.txt │ ├── cderror.h │ ├── cdjpeg.c │ ├── cdjpeg.h │ ├── change.log │ ├── cjpeg.1 │ ├── cjpeg.c │ ├── cjpegalt.c │ ├── ckconfig.c │ ├── coderules.txt │ ├── compile │ ├── config.guess │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── depcomp │ ├── djpeg.1 │ ├── djpeg.c │ ├── djpegalt.c │ ├── example.c │ ├── filelist.txt │ ├── install-sh │ ├── install.txt │ ├── jaricom.c │ ├── jcapimin.c │ ├── jcapistd.c │ ├── jcarith.c │ ├── jccoefct.c │ ├── jccolor.c │ ├── jcdctmgr.c │ ├── jchuff.c │ ├── jcinit.c │ ├── jcmainct.c │ ├── jcmarker.c │ ├── jcmaster.c │ ├── jcomapi.c │ ├── jconfig.bcc │ ├── jconfig.cfg │ ├── jconfig.dj │ ├── jconfig.h │ ├── jconfig.mac │ ├── jconfig.manx │ ├── jconfig.mc6 │ ├── jconfig.sas │ ├── jconfig.st │ ├── jconfig.txt │ ├── jconfig.vc │ ├── jconfig.vms │ ├── jconfig.wat │ ├── jconfig.xc │ ├── jcparam.c │ ├── jcprepct.c │ ├── jcsample.c │ ├── jctrans.c │ ├── jdapimin.c │ ├── jdapistd.c │ ├── jdarith.c │ ├── jdatadst.c │ ├── jdatasrc.c │ ├── jdcoefct.c │ ├── jdcolor.c │ ├── jdct.h │ ├── jddctmgr.c │ ├── jdhuff.c │ ├── jdinput.c │ ├── jdmainct.c │ ├── jdmarker.c │ ├── jdmaster.c │ ├── jdmerge.c │ ├── jdosaobj.txt │ ├── jdpostct.c │ ├── jdsample.c │ ├── jdtrans.c │ ├── jerror.c │ ├── jerror.h │ ├── jfdctflt.c │ ├── jfdctfst.c │ ├── jfdctint.c │ ├── jidctflt.c │ ├── jidctfst.c │ ├── jidctint.c │ ├── jinclude.h │ ├── jmemansi.c │ ├── jmemdos.c │ ├── jmemdosa.asm │ ├── jmemmac.c │ ├── jmemmgr.c │ ├── jmemname.c │ ├── jmemnobs.c │ ├── jmemsys.h │ ├── jmorecfg.h │ ├── jpegint.h │ ├── jpeglib.h │ ├── jpegtran.1 │ ├── jpegtran.c │ ├── jquant1.c │ ├── jquant2.c │ ├── jutils.c │ ├── jversion.h │ ├── libjpeg.pc.in │ ├── libjpeg.txt │ ├── ltmain.sh │ ├── makajpeg.bcb │ ├── makcjpeg.bcb │ ├── makcjpeg.st │ ├── makdjpeg.bcb │ ├── makdjpeg.st │ ├── makeadsw.vc6 │ ├── makeasln.v16 │ ├── makecdep.vc6 │ ├── makecdsp.vc6 │ ├── makecfil.v16 │ ├── makecmak.vc6 │ ├── makecvcx.v16 │ ├── makeddep.vc6 │ ├── makeddsp.vc6 │ ├── makedfil.v16 │ ├── makedmak.vc6 │ ├── makedvcx.v16 │ ├── makefile.ansi │ ├── makefile.b32 │ ├── makefile.b64 │ ├── makefile.bcc │ ├── makefile.c32 │ ├── makefile.d32 │ ├── makefile.dj │ ├── makefile.dj.bak │ ├── makefile.manx │ ├── makefile.mc6 │ ├── makefile.mms │ ├── makefile.sas │ ├── makefile.unix │ ├── makefile.vc │ ├── makefile.vms │ ├── makefile.vs │ ├── makefile.wat │ ├── makefile.x32 │ ├── makefile.xc │ ├── makejdep.vc6 │ ├── makejdsp.vc6 │ ├── makejdsw.vc6 │ ├── makejfil.v16 │ ├── makejmak.vc6 │ ├── makejsln.v16 │ ├── makejvcx.v16 │ ├── makeproj.mac │ ├── makerdep.vc6 │ ├── makerdsp.vc6 │ ├── makerfil.v16 │ ├── makermak.vc6 │ ├── makervcx.v16 │ ├── maketdep.vc6 │ ├── maketdsp.vc6 │ ├── maketfil.v16 │ ├── maketmak.vc6 │ ├── maketvcx.v16 │ ├── makewdep.vc6 │ ├── makewdsp.vc6 │ ├── makewfil.v16 │ ├── makewmak.vc6 │ ├── makewvcx.v16 │ ├── makljpeg.bcb │ ├── makljpeg.st │ ├── makrjpeg.bcb │ ├── maktjpeg.bcb │ ├── maktjpeg.st │ ├── makvms.opt │ ├── makwjpeg.bcb │ ├── missing │ ├── rdbmp.c │ ├── rdcolmap.c │ ├── rdgif.c │ ├── rdjpgcom.1 │ ├── rdjpgcom.c │ ├── rdppm.c │ ├── rdrle.c │ ├── rdswitch.c │ ├── rdtarga.c │ ├── readme.dos │ ├── structure.txt │ ├── testimg.bmp │ ├── testimg.gif │ ├── testimg.jpg │ ├── testimg.ppm │ ├── testimgp.jpg │ ├── testorig.jpg │ ├── testprog.jpg │ ├── transupp.c │ ├── transupp.h │ ├── usage.txt │ ├── wizard.txt │ ├── wrbmp.c │ ├── wrgif.c │ ├── wrjpgcom.1 │ ├── wrjpgcom.c │ ├── wrppm.c │ ├── wrrle.c │ └── wrtarga.c ├── libwebp-1.3.2 │ ├── .cmake-format.py │ ├── .gitignore │ ├── .mailmap │ ├── .pylintrc │ ├── .style.yapf │ ├── AUTHORS │ ├── Android.mk │ ├── CMakeLists.txt │ ├── CONTRIBUTING.md │ ├── COPYING │ ├── ChangeLog │ ├── Makefile.am │ ├── Makefile.vc │ ├── NEWS │ ├── PATENTS │ ├── PRESUBMIT.py │ ├── README.md │ ├── autogen.sh │ ├── build.gradle │ ├── cmake │ │ ├── WebPConfig.cmake.in │ │ ├── config.h.in │ │ ├── cpu.cmake │ │ └── deps.cmake │ ├── codereview.settings │ ├── configure.ac │ ├── doc │ │ ├── TODO │ │ ├── api.md │ │ ├── building.md │ │ ├── specs_generation.md │ │ ├── template.html │ │ ├── tools.md │ │ ├── webp-container-spec.txt │ │ └── webp-lossless-bitstream-spec.txt │ ├── examples │ │ ├── Android.mk │ │ ├── Makefile.am │ │ ├── anim_diff.c │ │ ├── anim_dump.c │ │ ├── anim_util.c │ │ ├── anim_util.h │ │ ├── cwebp.c │ │ ├── dwebp.c │ │ ├── example_util.c │ │ ├── example_util.h │ │ ├── gif2webp.c │ │ ├── gifdec.c │ │ ├── gifdec.h │ │ ├── img2webp.c │ │ ├── stopwatch.h │ │ ├── test.webp │ │ ├── test_ref.ppm │ │ ├── unicode.h │ │ ├── unicode_gif.h │ │ ├── vwebp.c │ │ ├── webpinfo.c │ │ └── webpmux.c │ ├── extras │ │ ├── Makefile.am │ │ ├── extras.c │ │ ├── extras.h │ │ ├── get_disto.c │ │ ├── quality_estimate.c │ │ ├── vwebp_sdl.c │ │ ├── webp_quality.c │ │ ├── webp_to_sdl.c │ │ └── webp_to_sdl.h │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── imageio │ │ ├── Android.mk │ │ ├── Makefile.am │ │ ├── image_dec.c │ │ ├── image_dec.h │ │ ├── image_enc.c │ │ ├── image_enc.h │ │ ├── imageio_util.c │ │ ├── imageio_util.h │ │ ├── jpegdec.c │ │ ├── jpegdec.h │ │ ├── metadata.c │ │ ├── metadata.h │ │ ├── pngdec.c │ │ ├── pngdec.h │ │ ├── pnmdec.c │ │ ├── pnmdec.h │ │ ├── tiffdec.c │ │ ├── tiffdec.h │ │ ├── webpdec.c │ │ ├── webpdec.h │ │ ├── wicdec.c │ │ └── wicdec.h │ ├── infra │ │ ├── common.sh │ │ ├── compile.sh │ │ ├── compile_android.sh │ │ ├── compile_js.sh │ │ └── run_static_analysis.sh │ ├── iosbuild.sh │ ├── m4 │ │ ├── .gitignore │ │ └── ax_pthread.m4 │ ├── makefile.djgpp │ ├── makefile.unix │ ├── man │ │ ├── Makefile.am │ │ ├── cwebp.1 │ │ ├── dwebp.1 │ │ ├── gif2webp.1 │ │ ├── img2webp.1 │ │ ├── vwebp.1 │ │ ├── webpinfo.1 │ │ └── webpmux.1 │ ├── sharpyuv │ │ ├── Makefile.am │ │ ├── libsharpyuv.pc.in │ │ ├── libsharpyuv.rc │ │ ├── sharpyuv.c │ │ ├── sharpyuv.h │ │ ├── sharpyuv_cpu.c │ │ ├── sharpyuv_cpu.h │ │ ├── sharpyuv_csp.c │ │ ├── sharpyuv_csp.h │ │ ├── sharpyuv_dsp.c │ │ ├── sharpyuv_dsp.h │ │ ├── sharpyuv_gamma.c │ │ ├── sharpyuv_gamma.h │ │ ├── sharpyuv_neon.c │ │ └── sharpyuv_sse2.c │ ├── src │ │ ├── Makefile.am │ │ ├── dec │ │ │ ├── Makefile.am │ │ │ ├── alpha_dec.c │ │ │ ├── alphai_dec.h │ │ │ ├── buffer_dec.c │ │ │ ├── common_dec.h │ │ │ ├── frame_dec.c │ │ │ ├── idec_dec.c │ │ │ ├── io_dec.c │ │ │ ├── quant_dec.c │ │ │ ├── tree_dec.c │ │ │ ├── vp8_dec.c │ │ │ ├── vp8_dec.h │ │ │ ├── vp8i_dec.h │ │ │ ├── vp8l_dec.c │ │ │ ├── vp8li_dec.h │ │ │ ├── webp_dec.c │ │ │ └── webpi_dec.h │ │ ├── demux │ │ │ ├── Makefile.am │ │ │ ├── anim_decode.c │ │ │ ├── demux.c │ │ │ ├── libwebpdemux.pc.in │ │ │ └── libwebpdemux.rc │ │ ├── dsp │ │ │ ├── Makefile.am │ │ │ ├── alpha_processing.c │ │ │ ├── alpha_processing_mips_dsp_r2.c │ │ │ ├── alpha_processing_neon.c │ │ │ ├── alpha_processing_sse2.c │ │ │ ├── alpha_processing_sse41.c │ │ │ ├── common_sse2.h │ │ │ ├── common_sse41.h │ │ │ ├── cost.c │ │ │ ├── cost_mips32.c │ │ │ ├── cost_mips_dsp_r2.c │ │ │ ├── cost_neon.c │ │ │ ├── cost_sse2.c │ │ │ ├── cpu.c │ │ │ ├── cpu.h │ │ │ ├── dec.c │ │ │ ├── dec_clip_tables.c │ │ │ ├── dec_mips32.c │ │ │ ├── dec_mips_dsp_r2.c │ │ │ ├── dec_msa.c │ │ │ ├── dec_neon.c │ │ │ ├── dec_sse2.c │ │ │ ├── dec_sse41.c │ │ │ ├── dsp.h │ │ │ ├── enc.c │ │ │ ├── enc_mips32.c │ │ │ ├── enc_mips_dsp_r2.c │ │ │ ├── enc_msa.c │ │ │ ├── enc_neon.c │ │ │ ├── enc_sse2.c │ │ │ ├── enc_sse41.c │ │ │ ├── filters.c │ │ │ ├── filters_mips_dsp_r2.c │ │ │ ├── filters_msa.c │ │ │ ├── filters_neon.c │ │ │ ├── filters_sse2.c │ │ │ ├── lossless.c │ │ │ ├── lossless.h │ │ │ ├── lossless_common.h │ │ │ ├── lossless_enc.c │ │ │ ├── lossless_enc_mips32.c │ │ │ ├── lossless_enc_mips_dsp_r2.c │ │ │ ├── lossless_enc_msa.c │ │ │ ├── lossless_enc_neon.c │ │ │ ├── lossless_enc_sse2.c │ │ │ ├── lossless_enc_sse41.c │ │ │ ├── lossless_mips_dsp_r2.c │ │ │ ├── lossless_msa.c │ │ │ ├── lossless_neon.c │ │ │ ├── lossless_sse2.c │ │ │ ├── lossless_sse41.c │ │ │ ├── mips_macro.h │ │ │ ├── msa_macro.h │ │ │ ├── neon.h │ │ │ ├── quant.h │ │ │ ├── rescaler.c │ │ │ ├── rescaler_mips32.c │ │ │ ├── rescaler_mips_dsp_r2.c │ │ │ ├── rescaler_msa.c │ │ │ ├── rescaler_neon.c │ │ │ ├── rescaler_sse2.c │ │ │ ├── ssim.c │ │ │ ├── ssim_sse2.c │ │ │ ├── upsampling.c │ │ │ ├── upsampling_mips_dsp_r2.c │ │ │ ├── upsampling_msa.c │ │ │ ├── upsampling_neon.c │ │ │ ├── upsampling_sse2.c │ │ │ ├── upsampling_sse41.c │ │ │ ├── yuv.c │ │ │ ├── yuv.h │ │ │ ├── yuv_mips32.c │ │ │ ├── yuv_mips_dsp_r2.c │ │ │ ├── yuv_neon.c │ │ │ ├── yuv_sse2.c │ │ │ └── yuv_sse41.c │ │ ├── enc │ │ │ ├── Makefile.am │ │ │ ├── alpha_enc.c │ │ │ ├── analysis_enc.c │ │ │ ├── backward_references_cost_enc.c │ │ │ ├── backward_references_enc.c │ │ │ ├── backward_references_enc.h │ │ │ ├── config_enc.c │ │ │ ├── cost_enc.c │ │ │ ├── cost_enc.h │ │ │ ├── filter_enc.c │ │ │ ├── frame_enc.c │ │ │ ├── histogram_enc.c │ │ │ ├── histogram_enc.h │ │ │ ├── iterator_enc.c │ │ │ ├── near_lossless_enc.c │ │ │ ├── picture_csp_enc.c │ │ │ ├── picture_enc.c │ │ │ ├── picture_psnr_enc.c │ │ │ ├── picture_rescale_enc.c │ │ │ ├── picture_tools_enc.c │ │ │ ├── predictor_enc.c │ │ │ ├── quant_enc.c │ │ │ ├── syntax_enc.c │ │ │ ├── token_enc.c │ │ │ ├── tree_enc.c │ │ │ ├── vp8i_enc.h │ │ │ ├── vp8l_enc.c │ │ │ ├── vp8li_enc.h │ │ │ └── webp_enc.c │ │ ├── libwebp.pc.in │ │ ├── libwebp.rc │ │ ├── libwebpdecoder.pc.in │ │ ├── libwebpdecoder.rc │ │ ├── mux │ │ │ ├── Makefile.am │ │ │ ├── anim_encode.c │ │ │ ├── animi.h │ │ │ ├── libwebpmux.pc.in │ │ │ ├── libwebpmux.rc │ │ │ ├── muxedit.c │ │ │ ├── muxi.h │ │ │ ├── muxinternal.c │ │ │ └── muxread.c │ │ ├── utils │ │ │ ├── Makefile.am │ │ │ ├── bit_reader_inl_utils.h │ │ │ ├── bit_reader_utils.c │ │ │ ├── bit_reader_utils.h │ │ │ ├── bit_writer_utils.c │ │ │ ├── bit_writer_utils.h │ │ │ ├── color_cache_utils.c │ │ │ ├── color_cache_utils.h │ │ │ ├── endian_inl_utils.h │ │ │ ├── filters_utils.c │ │ │ ├── filters_utils.h │ │ │ ├── huffman_encode_utils.c │ │ │ ├── huffman_encode_utils.h │ │ │ ├── huffman_utils.c │ │ │ ├── huffman_utils.h │ │ │ ├── quant_levels_dec_utils.c │ │ │ ├── quant_levels_dec_utils.h │ │ │ ├── quant_levels_utils.c │ │ │ ├── quant_levels_utils.h │ │ │ ├── random_utils.c │ │ │ ├── random_utils.h │ │ │ ├── rescaler_utils.c │ │ │ ├── rescaler_utils.h │ │ │ ├── thread_utils.c │ │ │ ├── thread_utils.h │ │ │ ├── utils.c │ │ │ └── utils.h │ │ └── webp │ │ │ ├── decode.h │ │ │ ├── demux.h │ │ │ ├── encode.h │ │ │ ├── format_constants.h │ │ │ ├── mux.h │ │ │ ├── mux_types.h │ │ │ └── types.h │ ├── swig │ │ ├── README.md │ │ ├── libwebp.go │ │ ├── libwebp.jar │ │ ├── libwebp.py │ │ ├── libwebp.swig │ │ ├── libwebp_gc.c │ │ ├── libwebp_go_wrap.c │ │ ├── libwebp_java_wrap.c │ │ ├── libwebp_python_wrap.c │ │ └── setup.py │ ├── tests │ │ ├── README.md │ │ └── fuzzer │ │ │ ├── advanced_api_fuzzer.c │ │ │ ├── animation_api_fuzzer.c │ │ │ ├── animdecoder_fuzzer.cc │ │ │ ├── animencoder_fuzzer.cc │ │ │ ├── enc_dec_fuzzer.cc │ │ │ ├── fuzz.dict │ │ │ ├── fuzz_utils.h │ │ │ ├── img_alpha.h │ │ │ ├── img_grid.h │ │ │ ├── img_peak.h │ │ │ ├── makefile.unix │ │ │ ├── mux_demux_api_fuzzer.c │ │ │ └── simple_api_fuzzer.c │ ├── webp_js │ │ ├── README.md │ │ ├── index.html │ │ ├── index_wasm.html │ │ ├── test_webp_js.webp │ │ └── test_webp_wasm.webp │ └── xcframeworkbuild.sh ├── stb │ └── stb_image.h ├── tiff-4.6.0 │ ├── CMakeLists.txt │ ├── ChangeLog │ ├── HOWTO-RELEASE │ ├── LICENSE.md │ ├── Makefile.am │ ├── Makefile.in │ ├── README.md │ ├── RELEASE-DATE │ ├── TODO │ ├── VERSION │ ├── aclocal.m4 │ ├── autogen.sh │ ├── build │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ └── README │ ├── cmake │ │ ├── AutotoolsCompat.cmake │ │ ├── AutotoolsVersion.cmake │ │ ├── CXXLibrary.cmake │ │ ├── CompilerChecks.cmake │ │ ├── DeflateCodec.cmake │ │ ├── FindCMath.cmake │ │ ├── FindDeflate.cmake │ │ ├── FindJBIG.cmake │ │ ├── FindJPEG.cmake │ │ ├── FindLERC.cmake │ │ ├── FindWebP.cmake │ │ ├── FindZSTD.cmake │ │ ├── Findliblzma.cmake │ │ ├── IncludeChecks.cmake │ │ ├── InternalCodecs.cmake │ │ ├── JBIGCodec.cmake │ │ ├── JPEGCodec.cmake │ │ ├── LERCCodec.cmake │ │ ├── LZMACodec.cmake │ │ ├── LargeFileSupport.cmake │ │ ├── LibraryFeatures.cmake │ │ ├── LinkerChecks.cmake │ │ ├── PixarLogCodec.cmake │ │ ├── PkgConfig.cmake │ │ ├── ProcessorChecks.cmake │ │ ├── Release.cmake │ │ ├── ReleaseScript.cmake │ │ ├── Sphinx.cmake │ │ ├── SphinxCheckInternalLinks.cmake │ │ ├── SymbolChecks.cmake │ │ ├── TiffConfig.cmake.in │ │ ├── TypeSizeChecks.cmake │ │ ├── WebPCodec.cmake │ │ ├── WindowsSupport.cmake │ │ ├── ZSTDCodec.cmake │ │ ├── list-manpage-dependencies.py │ │ └── list-manpages.py │ ├── config │ │ ├── compile │ │ ├── config.guess │ │ ├── config.h.in │ │ ├── config.sub │ │ ├── depcomp │ │ ├── install-sh │ │ ├── ltmain.sh │ │ ├── missing │ │ └── test-driver │ ├── configure │ ├── configure.ac │ ├── contrib │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── addtiffo │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── addtiffo.c │ │ │ ├── tif_overview.c │ │ │ ├── tif_ovrcache.c │ │ │ └── tif_ovrcache.h │ │ ├── dbs │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── tiff-bi.c │ │ │ ├── tiff-grayscale.c │ │ │ ├── tiff-palette.c │ │ │ ├── tiff-rgb.c │ │ │ └── xtiff │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── patchlevel.h │ │ │ │ ├── xtiff.c │ │ │ │ └── xtifficon.h │ │ ├── iptcutil │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── iptcutil.c │ │ │ ├── test.iptc │ │ │ └── test.txt │ │ ├── mfs │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ └── mfs_file.c │ │ ├── pds │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── tif_imageiter.c │ │ │ ├── tif_imageiter.h │ │ │ ├── tif_pdsdirread.c │ │ │ └── tif_pdsdirwrite.c │ │ ├── ras │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── ras2tif.c │ │ │ └── tif2ras.c │ │ ├── stream │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── tiffstream.cpp │ │ │ └── tiffstream.h │ │ ├── tags │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── listtif.c │ │ │ ├── maketif.c │ │ │ ├── xtif_dir.c │ │ │ ├── xtiffio.h │ │ │ └── xtiffiop.h │ │ └── win_dib │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── Makefile.w95 │ │ │ ├── README.Tiffile │ │ │ ├── README.tiff2dib │ │ │ ├── Tiffile.cpp │ │ │ └── tiff2dib.c │ ├── djgpp-config.sh │ ├── doc │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── addingtags.rst │ │ ├── build.rst │ │ ├── conf.py │ │ ├── contrib.rst │ │ ├── functions.rst │ │ ├── functions │ │ │ ├── TIFFAccessTagMethods.rst │ │ │ ├── TIFFClientInfo.rst │ │ │ ├── TIFFClose.rst │ │ │ ├── TIFFCreateDirectory.rst │ │ │ ├── TIFFCustomDirectory.rst │ │ │ ├── TIFFCustomTagList.rst │ │ │ ├── TIFFDataWidth.rst │ │ │ ├── TIFFDeferStrileArrayWriting.rst │ │ │ ├── TIFFError.rst │ │ │ ├── TIFFFieldDataType.rst │ │ │ ├── TIFFFieldName.rst │ │ │ ├── TIFFFieldPassCount.rst │ │ │ ├── TIFFFieldQuery.rst │ │ │ ├── TIFFFieldReadCount.rst │ │ │ ├── TIFFFieldTag.rst │ │ │ ├── TIFFFieldWriteCount.rst │ │ │ ├── TIFFFlush.rst │ │ │ ├── TIFFGetField.rst │ │ │ ├── TIFFMergeFieldInfo.rst │ │ │ ├── TIFFOpen.rst │ │ │ ├── TIFFOpenOptions.rst │ │ │ ├── TIFFPrintDirectory.rst │ │ │ ├── TIFFProcFunctions.rst │ │ │ ├── TIFFRGBAImage.rst │ │ │ ├── TIFFReadDirectory.rst │ │ │ ├── TIFFReadEncodedStrip.rst │ │ │ ├── TIFFReadEncodedTile.rst │ │ │ ├── TIFFReadFromUserBuffer.rst │ │ │ ├── TIFFReadRGBAImage.rst │ │ │ ├── TIFFReadRGBAStrip.rst │ │ │ ├── TIFFReadRGBATile.rst │ │ │ ├── TIFFReadRawStrip.rst │ │ │ ├── TIFFReadRawTile.rst │ │ │ ├── TIFFReadScanline.rst │ │ │ ├── TIFFReadTile.rst │ │ │ ├── TIFFSetDirectory.rst │ │ │ ├── TIFFSetField.rst │ │ │ ├── TIFFSetTagExtender.rst │ │ │ ├── TIFFStrileQuery.rst │ │ │ ├── TIFFWarning.rst │ │ │ ├── TIFFWriteDirectory.rst │ │ │ ├── TIFFWriteEncodedStrip.rst │ │ │ ├── TIFFWriteEncodedTile.rst │ │ │ ├── TIFFWriteRawStrip.rst │ │ │ ├── TIFFWriteRawTile.rst │ │ │ ├── TIFFWriteScanline.rst │ │ │ ├── TIFFWriteTile.rst │ │ │ ├── TIFFbuffer.rst │ │ │ ├── TIFFcodec.rst │ │ │ ├── TIFFcolor.rst │ │ │ ├── TIFFmemory.rst │ │ │ ├── TIFFquery.rst │ │ │ ├── TIFFsize.rst │ │ │ ├── TIFFstrip.rst │ │ │ ├── TIFFswab.rst │ │ │ ├── TIFFtile.rst │ │ │ ├── _TIFFRewriteField.rst │ │ │ ├── _TIFFauxiliary.rst │ │ │ └── libtiff.rst │ │ ├── html-prebuilt │ │ │ ├── .buildinfo │ │ │ ├── _images │ │ │ │ ├── bali.jpg │ │ │ │ ├── cat.gif │ │ │ │ ├── cover.jpg │ │ │ │ ├── cramps.gif │ │ │ │ ├── dave.gif │ │ │ │ ├── esri.png │ │ │ │ ├── jim.gif │ │ │ │ ├── leica.png │ │ │ │ ├── quad.jpg │ │ │ │ ├── ring.gif │ │ │ │ ├── safe.png │ │ │ │ ├── smallliz.jpg │ │ │ │ ├── strike.gif │ │ │ │ └── weogeo.png │ │ │ ├── _sources │ │ │ │ ├── addingtags.rst.txt │ │ │ │ ├── build.rst.txt │ │ │ │ ├── contrib.rst.txt │ │ │ │ ├── functions.rst.txt │ │ │ │ ├── functions │ │ │ │ │ ├── TIFFAccessTagMethods.rst.txt │ │ │ │ │ ├── TIFFClientInfo.rst.txt │ │ │ │ │ ├── TIFFClose.rst.txt │ │ │ │ │ ├── TIFFCreateDirectory.rst.txt │ │ │ │ │ ├── TIFFCustomDirectory.rst.txt │ │ │ │ │ ├── TIFFCustomTagList.rst.txt │ │ │ │ │ ├── TIFFDataWidth.rst.txt │ │ │ │ │ ├── TIFFDeferStrileArrayWriting.rst.txt │ │ │ │ │ ├── TIFFError.rst.txt │ │ │ │ │ ├── TIFFFieldDataType.rst.txt │ │ │ │ │ ├── TIFFFieldName.rst.txt │ │ │ │ │ ├── TIFFFieldPassCount.rst.txt │ │ │ │ │ ├── TIFFFieldQuery.rst.txt │ │ │ │ │ ├── TIFFFieldReadCount.rst.txt │ │ │ │ │ ├── TIFFFieldTag.rst.txt │ │ │ │ │ ├── TIFFFieldWriteCount.rst.txt │ │ │ │ │ ├── TIFFFlush.rst.txt │ │ │ │ │ ├── TIFFGetField.rst.txt │ │ │ │ │ ├── TIFFMergeFieldInfo.rst.txt │ │ │ │ │ ├── TIFFOpen.rst.txt │ │ │ │ │ ├── TIFFOpenOptions.rst.txt │ │ │ │ │ ├── TIFFPrintDirectory.rst.txt │ │ │ │ │ ├── TIFFProcFunctions.rst.txt │ │ │ │ │ ├── TIFFRGBAImage.rst.txt │ │ │ │ │ ├── TIFFReadDirectory.rst.txt │ │ │ │ │ ├── TIFFReadEncodedStrip.rst.txt │ │ │ │ │ ├── TIFFReadEncodedTile.rst.txt │ │ │ │ │ ├── TIFFReadFromUserBuffer.rst.txt │ │ │ │ │ ├── TIFFReadRGBAImage.rst.txt │ │ │ │ │ ├── TIFFReadRGBAStrip.rst.txt │ │ │ │ │ ├── TIFFReadRGBATile.rst.txt │ │ │ │ │ ├── TIFFReadRawStrip.rst.txt │ │ │ │ │ ├── TIFFReadRawTile.rst.txt │ │ │ │ │ ├── TIFFReadScanline.rst.txt │ │ │ │ │ ├── TIFFReadTile.rst.txt │ │ │ │ │ ├── TIFFSetDirectory.rst.txt │ │ │ │ │ ├── TIFFSetField.rst.txt │ │ │ │ │ ├── TIFFSetTagExtender.rst.txt │ │ │ │ │ ├── TIFFStrileQuery.rst.txt │ │ │ │ │ ├── TIFFWarning.rst.txt │ │ │ │ │ ├── TIFFWriteDirectory.rst.txt │ │ │ │ │ ├── TIFFWriteEncodedStrip.rst.txt │ │ │ │ │ ├── TIFFWriteEncodedTile.rst.txt │ │ │ │ │ ├── TIFFWriteRawStrip.rst.txt │ │ │ │ │ ├── TIFFWriteRawTile.rst.txt │ │ │ │ │ ├── TIFFWriteScanline.rst.txt │ │ │ │ │ ├── TIFFWriteTile.rst.txt │ │ │ │ │ ├── TIFFbuffer.rst.txt │ │ │ │ │ ├── TIFFcodec.rst.txt │ │ │ │ │ ├── TIFFcolor.rst.txt │ │ │ │ │ ├── TIFFmemory.rst.txt │ │ │ │ │ ├── TIFFquery.rst.txt │ │ │ │ │ ├── TIFFsize.rst.txt │ │ │ │ │ ├── TIFFstrip.rst.txt │ │ │ │ │ ├── TIFFswab.rst.txt │ │ │ │ │ ├── TIFFtile.rst.txt │ │ │ │ │ ├── _TIFFRewriteField.rst.txt │ │ │ │ │ ├── _TIFFauxiliary.rst.txt │ │ │ │ │ └── libtiff.rst.txt │ │ │ │ ├── images.rst.txt │ │ │ │ ├── index.rst.txt │ │ │ │ ├── internals.rst.txt │ │ │ │ ├── libtiff.rst.txt │ │ │ │ ├── multi_page.rst.txt │ │ │ │ ├── project │ │ │ │ │ ├── acknowledgements.rst.txt │ │ │ │ │ ├── bugs.rst.txt │ │ │ │ │ ├── index.rst.txt │ │ │ │ │ ├── license.rst.txt │ │ │ │ │ └── mailinglist.rst.txt │ │ │ │ ├── releases │ │ │ │ │ ├── historical.rst.txt │ │ │ │ │ ├── index.rst.txt │ │ │ │ │ ├── v3.4beta007.rst.txt │ │ │ │ │ ├── v3.4beta016.rst.txt │ │ │ │ │ ├── v3.4beta018.rst.txt │ │ │ │ │ ├── v3.4beta024.rst.txt │ │ │ │ │ ├── v3.4beta028.rst.txt │ │ │ │ │ ├── v3.4beta029.rst.txt │ │ │ │ │ ├── v3.4beta031.rst.txt │ │ │ │ │ ├── v3.4beta032.rst.txt │ │ │ │ │ ├── v3.4beta033.rst.txt │ │ │ │ │ ├── v3.4beta034.rst.txt │ │ │ │ │ ├── v3.4beta035.rst.txt │ │ │ │ │ ├── v3.4beta036.rst.txt │ │ │ │ │ ├── v3.5.1.rst.txt │ │ │ │ │ ├── v3.5.2.rst.txt │ │ │ │ │ ├── v3.5.3.rst.txt │ │ │ │ │ ├── v3.5.4.rst.txt │ │ │ │ │ ├── v3.5.5.rst.txt │ │ │ │ │ ├── v3.5.6beta.rst.txt │ │ │ │ │ ├── v3.5.7.rst.txt │ │ │ │ │ ├── v3.6.0.rst.txt │ │ │ │ │ ├── v3.6.1.rst.txt │ │ │ │ │ ├── v3.7.0.rst.txt │ │ │ │ │ ├── v3.7.0alpha.rst.txt │ │ │ │ │ ├── v3.7.0beta.rst.txt │ │ │ │ │ ├── v3.7.0beta2.rst.txt │ │ │ │ │ ├── v3.7.1.rst.txt │ │ │ │ │ ├── v3.7.2.rst.txt │ │ │ │ │ ├── v3.7.3.rst.txt │ │ │ │ │ ├── v3.7.4.rst.txt │ │ │ │ │ ├── v3.8.0.rst.txt │ │ │ │ │ ├── v3.8.1.rst.txt │ │ │ │ │ ├── v3.8.2.rst.txt │ │ │ │ │ ├── v3.9.0.rst.txt │ │ │ │ │ ├── v3.9.0beta.rst.txt │ │ │ │ │ ├── v3.9.1.rst.txt │ │ │ │ │ ├── v3.9.2.rst.txt │ │ │ │ │ ├── v3.9.3.rst.txt │ │ │ │ │ ├── v3.9.4.rst.txt │ │ │ │ │ ├── v3.9.5.rst.txt │ │ │ │ │ ├── v4.0.0.rst.txt │ │ │ │ │ ├── v4.0.1.rst.txt │ │ │ │ │ ├── v4.0.10.rst.txt │ │ │ │ │ ├── v4.0.2.rst.txt │ │ │ │ │ ├── v4.0.3.rst.txt │ │ │ │ │ ├── v4.0.4.rst.txt │ │ │ │ │ ├── v4.0.4beta.rst.txt │ │ │ │ │ ├── v4.0.5.rst.txt │ │ │ │ │ ├── v4.0.6.rst.txt │ │ │ │ │ ├── v4.0.7.rst.txt │ │ │ │ │ ├── v4.0.8.rst.txt │ │ │ │ │ ├── v4.0.9.rst.txt │ │ │ │ │ ├── v4.1.0.rst.txt │ │ │ │ │ ├── v4.2.0.rst.txt │ │ │ │ │ ├── v4.3.0.rst.txt │ │ │ │ │ ├── v4.4.0.rst.txt │ │ │ │ │ ├── v4.5.0.rst.txt │ │ │ │ │ ├── v4.5.1.rst.txt │ │ │ │ │ └── v4.6.0.rst.txt │ │ │ │ ├── specification │ │ │ │ │ ├── bigtiff.rst.txt │ │ │ │ │ ├── coverage-bigtiff.rst.txt │ │ │ │ │ ├── coverage.rst.txt │ │ │ │ │ ├── index.rst.txt │ │ │ │ │ └── technote2.rst.txt │ │ │ │ ├── terms.rst.txt │ │ │ │ ├── tools.rst.txt │ │ │ │ └── tools │ │ │ │ │ ├── tiffcp.rst.txt │ │ │ │ │ ├── tiffdump.rst.txt │ │ │ │ │ ├── tiffinfo.rst.txt │ │ │ │ │ ├── tiffset.rst.txt │ │ │ │ │ └── tiffsplit.rst.txt │ │ │ ├── _static │ │ │ │ ├── basic.css │ │ │ │ ├── contents.png │ │ │ │ ├── doctools.js │ │ │ │ ├── documentation_options.js │ │ │ │ ├── file.png │ │ │ │ ├── language_data.js │ │ │ │ ├── minus.png │ │ │ │ ├── navigation.png │ │ │ │ ├── plus.png │ │ │ │ ├── pygments.css │ │ │ │ ├── searchtools.js │ │ │ │ ├── sphinx_highlight.js │ │ │ │ └── sphinxdoc.css │ │ │ ├── addingtags.html │ │ │ ├── build.html │ │ │ ├── contrib.html │ │ │ ├── functions.html │ │ │ ├── functions │ │ │ │ ├── TIFFAccessTagMethods.html │ │ │ │ ├── TIFFClientInfo.html │ │ │ │ ├── TIFFClose.html │ │ │ │ ├── TIFFCreateDirectory.html │ │ │ │ ├── TIFFCustomDirectory.html │ │ │ │ ├── TIFFCustomTagList.html │ │ │ │ ├── TIFFDataWidth.html │ │ │ │ ├── TIFFDeferStrileArrayWriting.html │ │ │ │ ├── TIFFError.html │ │ │ │ ├── TIFFFieldDataType.html │ │ │ │ ├── TIFFFieldName.html │ │ │ │ ├── TIFFFieldPassCount.html │ │ │ │ ├── TIFFFieldQuery.html │ │ │ │ ├── TIFFFieldReadCount.html │ │ │ │ ├── TIFFFieldTag.html │ │ │ │ ├── TIFFFieldWriteCount.html │ │ │ │ ├── TIFFFlush.html │ │ │ │ ├── TIFFGetField.html │ │ │ │ ├── TIFFMergeFieldInfo.html │ │ │ │ ├── TIFFOpen.html │ │ │ │ ├── TIFFOpenOptions.html │ │ │ │ ├── TIFFPrintDirectory.html │ │ │ │ ├── TIFFProcFunctions.html │ │ │ │ ├── TIFFRGBAImage.html │ │ │ │ ├── TIFFReadDirectory.html │ │ │ │ ├── TIFFReadEncodedStrip.html │ │ │ │ ├── TIFFReadEncodedTile.html │ │ │ │ ├── TIFFReadFromUserBuffer.html │ │ │ │ ├── TIFFReadRGBAImage.html │ │ │ │ ├── TIFFReadRGBAStrip.html │ │ │ │ ├── TIFFReadRGBATile.html │ │ │ │ ├── TIFFReadRawStrip.html │ │ │ │ ├── TIFFReadRawTile.html │ │ │ │ ├── TIFFReadScanline.html │ │ │ │ ├── TIFFReadTile.html │ │ │ │ ├── TIFFSetDirectory.html │ │ │ │ ├── TIFFSetField.html │ │ │ │ ├── TIFFSetTagExtender.html │ │ │ │ ├── TIFFStrileQuery.html │ │ │ │ ├── TIFFWarning.html │ │ │ │ ├── TIFFWriteDirectory.html │ │ │ │ ├── TIFFWriteEncodedStrip.html │ │ │ │ ├── TIFFWriteEncodedTile.html │ │ │ │ ├── TIFFWriteRawStrip.html │ │ │ │ ├── TIFFWriteRawTile.html │ │ │ │ ├── TIFFWriteScanline.html │ │ │ │ ├── TIFFWriteTile.html │ │ │ │ ├── TIFFbuffer.html │ │ │ │ ├── TIFFcodec.html │ │ │ │ ├── TIFFcolor.html │ │ │ │ ├── TIFFmemory.html │ │ │ │ ├── TIFFquery.html │ │ │ │ ├── TIFFsize.html │ │ │ │ ├── TIFFstrip.html │ │ │ │ ├── TIFFswab.html │ │ │ │ ├── TIFFtile.html │ │ │ │ ├── _TIFFRewriteField.html │ │ │ │ ├── _TIFFauxiliary.html │ │ │ │ └── libtiff.html │ │ │ ├── genindex.html │ │ │ ├── images.html │ │ │ ├── index.html │ │ │ ├── internals.html │ │ │ ├── libtiff.html │ │ │ ├── multi_page.html │ │ │ ├── objects.inv │ │ │ ├── project │ │ │ │ ├── acknowledgements.html │ │ │ │ ├── bugs.html │ │ │ │ ├── index.html │ │ │ │ ├── license.html │ │ │ │ └── mailinglist.html │ │ │ ├── releases │ │ │ │ ├── historical.html │ │ │ │ ├── index.html │ │ │ │ ├── v3.4beta007.html │ │ │ │ ├── v3.4beta016.html │ │ │ │ ├── v3.4beta018.html │ │ │ │ ├── v3.4beta024.html │ │ │ │ ├── v3.4beta028.html │ │ │ │ ├── v3.4beta029.html │ │ │ │ ├── v3.4beta031.html │ │ │ │ ├── v3.4beta032.html │ │ │ │ ├── v3.4beta033.html │ │ │ │ ├── v3.4beta034.html │ │ │ │ ├── v3.4beta035.html │ │ │ │ ├── v3.4beta036.html │ │ │ │ ├── v3.5.1.html │ │ │ │ ├── v3.5.2.html │ │ │ │ ├── v3.5.3.html │ │ │ │ ├── v3.5.4.html │ │ │ │ ├── v3.5.5.html │ │ │ │ ├── v3.5.6beta.html │ │ │ │ ├── v3.5.7.html │ │ │ │ ├── v3.6.0.html │ │ │ │ ├── v3.6.1.html │ │ │ │ ├── v3.7.0.html │ │ │ │ ├── v3.7.0alpha.html │ │ │ │ ├── v3.7.0beta.html │ │ │ │ ├── v3.7.0beta2.html │ │ │ │ ├── v3.7.1.html │ │ │ │ ├── v3.7.2.html │ │ │ │ ├── v3.7.3.html │ │ │ │ ├── v3.7.4.html │ │ │ │ ├── v3.8.0.html │ │ │ │ ├── v3.8.1.html │ │ │ │ ├── v3.8.2.html │ │ │ │ ├── v3.9.0.html │ │ │ │ ├── v3.9.0beta.html │ │ │ │ ├── v3.9.1.html │ │ │ │ ├── v3.9.2.html │ │ │ │ ├── v3.9.3.html │ │ │ │ ├── v3.9.4.html │ │ │ │ ├── v3.9.5.html │ │ │ │ ├── v4.0.0.html │ │ │ │ ├── v4.0.1.html │ │ │ │ ├── v4.0.10.html │ │ │ │ ├── v4.0.2.html │ │ │ │ ├── v4.0.3.html │ │ │ │ ├── v4.0.4.html │ │ │ │ ├── v4.0.4beta.html │ │ │ │ ├── v4.0.5.html │ │ │ │ ├── v4.0.6.html │ │ │ │ ├── v4.0.7.html │ │ │ │ ├── v4.0.8.html │ │ │ │ ├── v4.0.9.html │ │ │ │ ├── v4.1.0.html │ │ │ │ ├── v4.2.0.html │ │ │ │ ├── v4.3.0.html │ │ │ │ ├── v4.4.0.html │ │ │ │ ├── v4.5.0.html │ │ │ │ ├── v4.5.1.html │ │ │ │ └── v4.6.0.html │ │ │ ├── search.html │ │ │ ├── searchindex.js │ │ │ ├── specification │ │ │ │ ├── bigtiff.html │ │ │ │ ├── coverage-bigtiff.html │ │ │ │ ├── coverage.html │ │ │ │ ├── index.html │ │ │ │ └── technote2.html │ │ │ ├── terms.html │ │ │ ├── tools.html │ │ │ └── tools │ │ │ │ ├── tiffcp.html │ │ │ │ ├── tiffdump.html │ │ │ │ ├── tiffinfo.html │ │ │ │ ├── tiffset.html │ │ │ │ └── tiffsplit.html │ │ ├── images.rst │ │ ├── images │ │ │ ├── back.gif │ │ │ ├── bali.jpg │ │ │ ├── cat.gif │ │ │ ├── cover.jpg │ │ │ ├── cramps.gif │ │ │ ├── dave.gif │ │ │ ├── info.gif │ │ │ ├── jello.jpg │ │ │ ├── jim.gif │ │ │ ├── note.gif │ │ │ ├── oxford.gif │ │ │ ├── quad.jpg │ │ │ ├── ring.gif │ │ │ ├── smallliz.jpg │ │ │ ├── strike.gif │ │ │ └── warning.gif │ │ ├── index.rst │ │ ├── internals.rst │ │ ├── libtiff.rst │ │ ├── man-prebuilt │ │ │ ├── TIFFAccessTagMethods.3tiff │ │ │ ├── TIFFClientInfo.3tiff │ │ │ ├── TIFFClose.3tiff │ │ │ ├── TIFFCreateDirectory.3tiff │ │ │ ├── TIFFCustomDirectory.3tiff │ │ │ ├── TIFFCustomTagList.3tiff │ │ │ ├── TIFFDataWidth.3tiff │ │ │ ├── TIFFDeferStrileArrayWriting.3tiff │ │ │ ├── TIFFError.3tiff │ │ │ ├── TIFFFieldDataType.3tiff │ │ │ ├── TIFFFieldName.3tiff │ │ │ ├── TIFFFieldPassCount.3tiff │ │ │ ├── TIFFFieldQuery.3tiff │ │ │ ├── TIFFFieldReadCount.3tiff │ │ │ ├── TIFFFieldTag.3tiff │ │ │ ├── TIFFFieldWriteCount.3tiff │ │ │ ├── TIFFFlush.3tiff │ │ │ ├── TIFFGetField.3tiff │ │ │ ├── TIFFMergeFieldInfo.3tiff │ │ │ ├── TIFFOpen.3tiff │ │ │ ├── TIFFPrintDirectory.3tiff │ │ │ ├── TIFFProcFunctions.3tiff │ │ │ ├── TIFFRGBAImage.3tiff │ │ │ ├── TIFFReadDirectory.3tiff │ │ │ ├── TIFFReadEncodedStrip.3tiff │ │ │ ├── TIFFReadEncodedTile.3tiff │ │ │ ├── TIFFReadFromUserBuffer.3tiff │ │ │ ├── TIFFReadRGBAImage.3tiff │ │ │ ├── TIFFReadRGBAStrip.3tiff │ │ │ ├── TIFFReadRGBATile.3tiff │ │ │ ├── TIFFReadRawStrip.3tiff │ │ │ ├── TIFFReadRawTile.3tiff │ │ │ ├── TIFFReadScanline.3tiff │ │ │ ├── TIFFReadTile.3tiff │ │ │ ├── TIFFSetDirectory.3tiff │ │ │ ├── TIFFSetField.3tiff │ │ │ ├── TIFFSetTagExtender.3tiff │ │ │ ├── TIFFStrileQuery.3tiff │ │ │ ├── TIFFWarning.3tiff │ │ │ ├── TIFFWriteDirectory.3tiff │ │ │ ├── TIFFWriteEncodedStrip.3tiff │ │ │ ├── TIFFWriteEncodedTile.3tiff │ │ │ ├── TIFFWriteRawStrip.3tiff │ │ │ ├── TIFFWriteRawTile.3tiff │ │ │ ├── TIFFWriteScanline.3tiff │ │ │ ├── TIFFWriteTile.3tiff │ │ │ ├── TIFFbuffer.3tiff │ │ │ ├── TIFFcodec.3tiff │ │ │ ├── TIFFcolor.3tiff │ │ │ ├── TIFFmemory.3tiff │ │ │ ├── TIFFquery.3tiff │ │ │ ├── TIFFsize.3tiff │ │ │ ├── TIFFstrip.3tiff │ │ │ ├── TIFFswab.3tiff │ │ │ ├── TIFFtile.3tiff │ │ │ ├── _TIFFRewriteField.3tiff │ │ │ ├── _TIFFauxiliary.3tiff │ │ │ ├── libtiff.3tiff │ │ │ ├── tiffcp.1 │ │ │ ├── tiffdump.1 │ │ │ ├── tiffinfo.1 │ │ │ ├── tiffset.1 │ │ │ └── tiffsplit.1 │ │ ├── multi_page.rst │ │ ├── project │ │ │ ├── acknowledgements.rst │ │ │ ├── bugs.rst │ │ │ ├── index.rst │ │ │ ├── license.rst │ │ │ └── mailinglist.rst │ │ ├── releases │ │ │ ├── historical.rst │ │ │ ├── index.rst │ │ │ ├── v3.4beta007.rst │ │ │ ├── v3.4beta016.rst │ │ │ ├── v3.4beta018.rst │ │ │ ├── v3.4beta024.rst │ │ │ ├── v3.4beta028.rst │ │ │ ├── v3.4beta029.rst │ │ │ ├── v3.4beta031.rst │ │ │ ├── v3.4beta032.rst │ │ │ ├── v3.4beta033.rst │ │ │ ├── v3.4beta034.rst │ │ │ ├── v3.4beta035.rst │ │ │ ├── v3.4beta036.rst │ │ │ ├── v3.5.1.rst │ │ │ ├── v3.5.2.rst │ │ │ ├── v3.5.3.rst │ │ │ ├── v3.5.4.rst │ │ │ ├── v3.5.5.rst │ │ │ ├── v3.5.6beta.rst │ │ │ ├── v3.5.7.rst │ │ │ ├── v3.6.0.rst │ │ │ ├── v3.6.1.rst │ │ │ ├── v3.7.0.rst │ │ │ ├── v3.7.0alpha.rst │ │ │ ├── v3.7.0beta.rst │ │ │ ├── v3.7.0beta2.rst │ │ │ ├── v3.7.1.rst │ │ │ ├── v3.7.2.rst │ │ │ ├── v3.7.3.rst │ │ │ ├── v3.7.4.rst │ │ │ ├── v3.8.0.rst │ │ │ ├── v3.8.1.rst │ │ │ ├── v3.8.2.rst │ │ │ ├── v3.9.0.rst │ │ │ ├── v3.9.0beta.rst │ │ │ ├── v3.9.1.rst │ │ │ ├── v3.9.2.rst │ │ │ ├── v3.9.3.rst │ │ │ ├── v3.9.4.rst │ │ │ ├── v3.9.5.rst │ │ │ ├── v4.0.0.rst │ │ │ ├── v4.0.1.rst │ │ │ ├── v4.0.10.rst │ │ │ ├── v4.0.2.rst │ │ │ ├── v4.0.3.rst │ │ │ ├── v4.0.4.rst │ │ │ ├── v4.0.4beta.rst │ │ │ ├── v4.0.5.rst │ │ │ ├── v4.0.6.rst │ │ │ ├── v4.0.7.rst │ │ │ ├── v4.0.8.rst │ │ │ ├── v4.0.9.rst │ │ │ ├── v4.1.0.rst │ │ │ ├── v4.2.0.rst │ │ │ ├── v4.3.0.rst │ │ │ ├── v4.4.0.rst │ │ │ ├── v4.5.0.rst │ │ │ ├── v4.5.1.rst │ │ │ └── v4.6.0.rst │ │ ├── specification │ │ │ ├── bigtiff.rst │ │ │ ├── bigtiffpr_images │ │ │ │ ├── esri.png │ │ │ │ ├── leica.png │ │ │ │ ├── safe.png │ │ │ │ └── weogeo.png │ │ │ ├── coverage-bigtiff.rst │ │ │ ├── coverage.rst │ │ │ ├── index.rst │ │ │ └── technote2.rst │ │ ├── terms.rst │ │ ├── tools.rst │ │ └── tools │ │ │ ├── tiffcp.rst │ │ │ ├── tiffdump.rst │ │ │ ├── tiffinfo.rst │ │ │ ├── tiffset.rst │ │ │ └── tiffsplit.rst │ ├── libtiff-4.pc.in │ ├── libtiff │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── libtiff.def │ │ ├── libtiff.map │ │ ├── libtiffxx.map │ │ ├── mkg3states.c │ │ ├── t4.h │ │ ├── tif_aux.c │ │ ├── tif_close.c │ │ ├── tif_codec.c │ │ ├── tif_color.c │ │ ├── tif_compress.c │ │ ├── tif_config.h.cmake.in │ │ ├── tif_config.h.in │ │ ├── tif_dir.c │ │ ├── tif_dir.h │ │ ├── tif_dirinfo.c │ │ ├── tif_dirread.c │ │ ├── tif_dirwrite.c │ │ ├── tif_dumpmode.c │ │ ├── tif_error.c │ │ ├── tif_extension.c │ │ ├── tif_fax3.c │ │ ├── tif_fax3.h │ │ ├── tif_fax3sm.c │ │ ├── tif_flush.c │ │ ├── tif_getimage.c │ │ ├── tif_hash_set.c │ │ ├── tif_hash_set.h │ │ ├── tif_jbig.c │ │ ├── tif_jpeg.c │ │ ├── tif_jpeg_12.c │ │ ├── tif_lerc.c │ │ ├── tif_luv.c │ │ ├── tif_lzma.c │ │ ├── tif_lzw.c │ │ ├── tif_next.c │ │ ├── tif_ojpeg.c │ │ ├── tif_open.c │ │ ├── tif_packbits.c │ │ ├── tif_pixarlog.c │ │ ├── tif_predict.c │ │ ├── tif_predict.h │ │ ├── tif_print.c │ │ ├── tif_read.c │ │ ├── tif_stream.cxx │ │ ├── tif_strip.c │ │ ├── tif_swab.c │ │ ├── tif_thunder.c │ │ ├── tif_tile.c │ │ ├── tif_unix.c │ │ ├── tif_version.c │ │ ├── tif_warning.c │ │ ├── tif_webp.c │ │ ├── tif_win32.c │ │ ├── tif_win32_versioninfo.rc │ │ ├── tif_write.c │ │ ├── tif_zip.c │ │ ├── tif_zstd.c │ │ ├── tiff.h │ │ ├── tiffconf.h.cmake.in │ │ ├── tiffconf.h.in │ │ ├── tiffio.h │ │ ├── tiffio.hxx │ │ ├── tiffiop.h │ │ ├── tiffvers.h.cmake.in │ │ ├── tiffvers.h.in │ │ └── uvcode.h │ ├── m4 │ │ ├── acinclude.m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ └── lt~obsolete.m4 │ ├── placeholder.h │ ├── port │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── dummy.c │ │ ├── getopt.c │ │ ├── libport.h │ │ ├── libport_config.h.cmake.in │ │ └── libport_config.h.in │ ├── test │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── TiffSplitTest.cmake │ │ ├── TiffTest.cmake │ │ ├── TiffTestCommon.cmake │ │ ├── ascii_tag.c │ │ ├── check_tag.c │ │ ├── common.sh │ │ ├── custom_dir.c │ │ ├── custom_dir_EXIF_231.c │ │ ├── defer_strile_loading.c │ │ ├── defer_strile_writing.c │ │ ├── images │ │ │ ├── README.txt │ │ │ ├── custom_dir_EXIF_GPS.tiff │ │ │ ├── deflate-last-strip-extra-data.tiff │ │ │ ├── logluv-3c-16b.tiff │ │ │ ├── lzw-single-strip.tiff │ │ │ ├── minisblack-1c-16b.tiff │ │ │ ├── minisblack-1c-8b.pgm │ │ │ ├── minisblack-1c-8b.tiff │ │ │ ├── minisblack-2c-8b-alpha.tiff │ │ │ ├── miniswhite-1c-1b.g3 │ │ │ ├── miniswhite-1c-1b.pbm │ │ │ ├── miniswhite-1c-1b.tiff │ │ │ ├── ojpeg_chewey_subsamp21_multi_strip.tiff │ │ │ ├── ojpeg_single_strip_no_rowsperstrip.tiff │ │ │ ├── ojpeg_zackthecat_subsamp22_single_strip.tiff │ │ │ ├── palette-1c-1b.tiff │ │ │ ├── palette-1c-4b.tiff │ │ │ ├── palette-1c-8b.tiff │ │ │ ├── quad-lzw-compat.tiff │ │ │ ├── quad-tile.jpg.tiff │ │ │ ├── rgb-3c-16b.ppm │ │ │ ├── rgb-3c-16b.tiff │ │ │ ├── rgb-3c-8b.ppm │ │ │ ├── rgb-3c-8b.tiff │ │ │ ├── test_float64_predictor2_be_lzw.tif │ │ │ ├── test_float64_predictor2_le_lzw.tif │ │ │ ├── test_ifd_loop_subifd.tif │ │ │ ├── test_ifd_loop_to_first.tif │ │ │ ├── test_ifd_loop_to_self.tif │ │ │ ├── test_two_ifds.tif │ │ │ ├── testfax3_bug_513.tiff │ │ │ ├── testfax4.tiff │ │ │ ├── tiff_with_subifd_chain.tif │ │ │ └── webp_lossless_rgba_alpha_fully_opaque.tif │ │ ├── long_tag.c │ │ ├── rational_precision2double.c │ │ ├── raw_decode.c │ │ ├── refs │ │ │ ├── o-deflate-last-strip-extra-data.tiff │ │ │ ├── o-testfax3_bug_513.tiff │ │ │ ├── o-testfax4.tiff │ │ │ ├── o-tiff2ps-EPS1.ps │ │ │ ├── o-tiff2ps-PS1.ps │ │ │ ├── o-tiff2ps-PS2.ps │ │ │ └── o-tiff2ps-PS3.ps │ │ ├── rewrite_tag.c │ │ ├── short_tag.c │ │ ├── strip.c │ │ ├── strip_rw.c │ │ ├── test_append_to_strip.c │ │ ├── test_arrays.c │ │ ├── test_arrays.h │ │ ├── test_directory.c │ │ ├── test_ifd_loop_detection.c │ │ ├── test_open_options.c │ │ ├── test_signed_tags.c │ │ ├── test_transferfunction_write_read.c │ │ ├── test_write_read_tags.c │ │ ├── testtypes.c │ │ ├── tiffcp-g3-1d-fill.sh │ │ ├── tiffcp-g3-1d.sh │ │ ├── tiffcp-g3-2d-fill.sh │ │ ├── tiffcp-g3-2d.sh │ │ ├── tiffcp-g3.sh │ │ ├── tiffcp-g4.sh │ │ ├── tiffcp-logluv.sh │ │ ├── tiffcp-lzw-compat.sh │ │ ├── tiffcp-lzw-scanline-decode.sh │ │ ├── tiffcp-split-join.sh │ │ ├── tiffcp-split.sh │ │ ├── tiffdump.sh │ │ ├── tiffinfo.sh │ │ └── tifftest.h │ └── tools │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── tif_tools_versioninfo.rc │ │ ├── tiffcp.c │ │ ├── tiffdump.c │ │ ├── tiffinfo.c │ │ ├── tiffset.c │ │ ├── tiffsplit.c │ │ └── unsupported │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── tiff2pdf.c │ │ └── tiff2ps.c └── zlib-1.2.12 │ ├── CMakeLists.txt │ ├── ChangeLog │ ├── FAQ │ ├── INDEX │ ├── Makefile │ ├── Makefile.dojs │ ├── Makefile.in │ ├── README │ ├── adler32.c │ ├── amiga │ ├── Makefile.pup │ └── Makefile.sas │ ├── compress.c │ ├── configure │ ├── contrib │ ├── README.contrib │ ├── ada │ │ ├── buffer_demo.adb │ │ ├── mtest.adb │ │ ├── read.adb │ │ ├── readme.txt │ │ ├── test.adb │ │ ├── zlib-streams.adb │ │ ├── zlib-streams.ads │ │ ├── zlib-thin.adb │ │ ├── zlib-thin.ads │ │ ├── zlib.adb │ │ ├── zlib.ads │ │ └── zlib.gpr │ ├── blast │ │ ├── Makefile │ │ ├── README │ │ ├── blast.c │ │ ├── blast.h │ │ ├── test.pk │ │ └── test.txt │ ├── delphi │ │ ├── ZLib.pas │ │ ├── ZLibConst.pas │ │ ├── readme.txt │ │ └── zlibd32.mak │ ├── dotzlib │ │ ├── DotZLib.build │ │ ├── DotZLib.chm │ │ ├── DotZLib.sln │ │ ├── DotZLib │ │ │ ├── AssemblyInfo.cs │ │ │ ├── ChecksumImpl.cs │ │ │ ├── CircularBuffer.cs │ │ │ ├── CodecBase.cs │ │ │ ├── Deflater.cs │ │ │ ├── DotZLib.cs │ │ │ ├── DotZLib.csproj │ │ │ ├── GZipStream.cs │ │ │ ├── Inflater.cs │ │ │ └── UnitTests.cs │ │ ├── LICENSE_1_0.txt │ │ └── readme.txt │ ├── gcc_gvmat64 │ │ └── gvmat64.S │ ├── infback9 │ │ ├── README │ │ ├── infback9.c │ │ ├── infback9.h │ │ ├── inffix9.h │ │ ├── inflate9.h │ │ ├── inftree9.c │ │ └── inftree9.h │ ├── iostream │ │ ├── test.cpp │ │ ├── zfstream.cpp │ │ └── zfstream.h │ ├── iostream2 │ │ ├── zstream.h │ │ └── zstream_test.cpp │ ├── iostream3 │ │ ├── README │ │ ├── TODO │ │ ├── test.cc │ │ ├── zfstream.cc │ │ └── zfstream.h │ ├── minizip │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── MiniZip64_Changes.txt │ │ ├── MiniZip64_info.txt │ │ ├── configure.ac │ │ ├── crypt.h │ │ ├── ioapi.c │ │ ├── ioapi.h │ │ ├── iowin32.c │ │ ├── iowin32.h │ │ ├── make_vms.com │ │ ├── miniunz.c │ │ ├── miniunzip.1 │ │ ├── minizip.1 │ │ ├── minizip.c │ │ ├── minizip.pc.in │ │ ├── mztools.c │ │ ├── mztools.h │ │ ├── unzip.c │ │ ├── unzip.h │ │ ├── zip.c │ │ └── zip.h │ ├── pascal │ │ ├── example.pas │ │ ├── readme.txt │ │ ├── zlibd32.mak │ │ └── zlibpas.pas │ ├── puff │ │ ├── Makefile │ │ ├── README │ │ ├── puff.c │ │ ├── puff.h │ │ ├── pufftest.c │ │ └── zeros.raw │ ├── testzlib │ │ ├── testzlib.c │ │ └── testzlib.txt │ ├── untgz │ │ ├── Makefile │ │ ├── Makefile.msc │ │ └── untgz.c │ └── vstudio │ │ ├── readme.txt │ │ ├── vc10 │ │ ├── miniunz.vcxproj │ │ ├── miniunz.vcxproj.filters │ │ ├── minizip.vcxproj │ │ ├── minizip.vcxproj.filters │ │ ├── testzlib.vcxproj │ │ ├── testzlib.vcxproj.filters │ │ ├── testzlibdll.vcxproj │ │ ├── testzlibdll.vcxproj.filters │ │ ├── zlib.rc │ │ ├── zlibstat.vcxproj │ │ ├── zlibstat.vcxproj.filters │ │ ├── zlibvc.def │ │ ├── zlibvc.sln │ │ ├── zlibvc.vcxproj │ │ └── zlibvc.vcxproj.filters │ │ ├── vc11 │ │ ├── miniunz.vcxproj │ │ ├── minizip.vcxproj │ │ ├── testzlib.vcxproj │ │ ├── testzlibdll.vcxproj │ │ ├── zlib.rc │ │ ├── zlibstat.vcxproj │ │ ├── zlibvc.def │ │ ├── zlibvc.sln │ │ └── zlibvc.vcxproj │ │ ├── vc12 │ │ ├── miniunz.vcxproj │ │ ├── minizip.vcxproj │ │ ├── testzlib.vcxproj │ │ ├── testzlibdll.vcxproj │ │ ├── zlib.rc │ │ ├── zlibstat.vcxproj │ │ ├── zlibvc.def │ │ ├── zlibvc.sln │ │ └── zlibvc.vcxproj │ │ ├── vc14 │ │ ├── miniunz.vcxproj │ │ ├── minizip.vcxproj │ │ ├── testzlib.vcxproj │ │ ├── testzlibdll.vcxproj │ │ ├── zlib.rc │ │ ├── zlibstat.vcxproj │ │ ├── zlibvc.def │ │ ├── zlibvc.sln │ │ └── zlibvc.vcxproj │ │ └── vc9 │ │ ├── miniunz.vcproj │ │ ├── minizip.vcproj │ │ ├── testzlib.vcproj │ │ ├── testzlibdll.vcproj │ │ ├── zlib.rc │ │ ├── zlibstat.vcproj │ │ ├── zlibvc.def │ │ ├── zlibvc.sln │ │ └── zlibvc.vcproj │ ├── crc32.c │ ├── crc32.h │ ├── deflate.c │ ├── deflate.h │ ├── doc │ ├── algorithm.txt │ ├── crc-doc.1.0.pdf │ ├── rfc1950.txt │ ├── rfc1951.txt │ ├── rfc1952.txt │ └── txtvsbin.txt │ ├── examples │ ├── README.examples │ ├── enough.c │ ├── fitblk.c │ ├── gun.c │ ├── gzappend.c │ ├── gzjoin.c │ ├── gzlog.c │ ├── gzlog.h │ ├── gznorm.c │ ├── zlib_how.html │ ├── zpipe.c │ ├── zran.c │ └── zran.h │ ├── gzclose.c │ ├── gzguts.h │ ├── gzlib.c │ ├── gzread.c │ ├── gzwrite.c │ ├── infback.c │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── make_vms.com │ ├── msdos │ ├── Makefile.bor │ ├── Makefile.dj2 │ ├── Makefile.emx │ ├── Makefile.msc │ └── Makefile.tc │ ├── nintendods │ ├── Makefile │ └── README │ ├── old │ ├── Makefile.emx │ ├── Makefile.riscos │ ├── README │ ├── descrip.mms │ ├── os2 │ │ ├── Makefile.os2 │ │ └── zlib.def │ └── visual-basic.txt │ ├── os400 │ ├── README400 │ ├── bndsrc │ ├── make.sh │ └── zlib.inc │ ├── qnx │ └── package.qpg │ ├── test │ ├── example.c │ ├── infcover.c │ └── minigzip.c │ ├── treebuild.xml │ ├── trees.c │ ├── trees.h │ ├── uncompr.c │ ├── watcom │ ├── watcom_f.mak │ └── watcom_l.mak │ ├── win32 │ ├── DLL_FAQ.txt │ ├── Makefile.bor │ ├── Makefile.gcc │ ├── Makefile.msc │ ├── README-WIN32.txt │ ├── VisualC.txt │ ├── zlib.def │ └── zlib1.rc │ ├── zconf.h │ ├── zconf.h.cmakein │ ├── zconf.h.in │ ├── zlib.3 │ ├── zlib.3.pdf │ ├── zlib.h │ ├── zlib.pc.cmakein │ ├── zlib.pc.in │ ├── zlib2ansi │ ├── zutil.c │ └── zutil.h ├── CMake-DJGPP-Toolchain.txt ├── CWSDPMI.EXE ├── FDOS ├── DOSVIEW.DE └── DOSVIEW.LSM ├── LICENSE ├── Makefile ├── README.md ├── images ├── 1bpp.bmp ├── 1bpp.png ├── 24bpp.bmp ├── 24bpp.png ├── 2bpp.png ├── 4bpp.bmp ├── 4bpp.png ├── 640.bmp ├── 640.gif ├── 640.hdr ├── 640.jp2 ├── 640.jpg ├── 640.jxl ├── 640.pbm ├── 640.pcx ├── 640.png ├── 640.ppm ├── 640.psd ├── 640.qoi ├── 640.tga ├── 640.tif ├── 640.web ├── 8bpp.bmp ├── 8bpp.png ├── IMG_1940.bmp ├── IMG_1940.jp2 ├── IMG_1940.jpg ├── IMG_1940.jxl ├── IMG_1940.pbm ├── IMG_1940.pcx ├── IMG_1940.png ├── IMG_1940.qoi ├── IMG_1940.tga ├── IMG_1940.tif ├── IMG_1940.web ├── IMG_1941.jpg ├── bw.jpg ├── bw2.jpg ├── high.png ├── portrait.jpg ├── tsth.png ├── tstw.png └── wide.png ├── src ├── format-jasper.c ├── format-jasper.h ├── format-jpeg.c ├── format-jpeg.h ├── format-qoi.c ├── format-qoi.h ├── format-stb.c ├── format-stb.h ├── format-tiff.c ├── format-tiff.h ├── format-webp.c ├── format-webp.h ├── main.c ├── main.h ├── qoi.h ├── util.c └── util.h └── test.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /3rdparty/algif_1.3/Makefile.dj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/algif_1.3/Makefile.dj -------------------------------------------------------------------------------- /3rdparty/algif_1.3/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/algif_1.3/Makefile.mingw -------------------------------------------------------------------------------- /3rdparty/algif_1.3/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/algif_1.3/Makefile.unix -------------------------------------------------------------------------------- /3rdparty/algif_1.3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/algif_1.3/README -------------------------------------------------------------------------------- /3rdparty/algif_1.3/example_gifs/alex.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/algif_1.3/example_gifs/alex.gif -------------------------------------------------------------------------------- /3rdparty/algif_1.3/example_gifs/dispose.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/algif_1.3/example_gifs/dispose.gif -------------------------------------------------------------------------------- /3rdparty/algif_1.3/example_gifs/rgb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/algif_1.3/example_gifs/rgb.gif -------------------------------------------------------------------------------- /3rdparty/algif_1.3/examples/load_gif/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/algif_1.3/examples/load_gif/main.c -------------------------------------------------------------------------------- /3rdparty/algif_1.3/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/algif_1.3/readme.html -------------------------------------------------------------------------------- /3rdparty/algif_1.3/src/algif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/algif_1.3/src/algif.c -------------------------------------------------------------------------------- /3rdparty/algif_1.3/src/algif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/algif_1.3/src/algif.h -------------------------------------------------------------------------------- /3rdparty/algif_1.3/src/gif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/algif_1.3/src/gif.c -------------------------------------------------------------------------------- /3rdparty/algif_1.3/src/gif.h: -------------------------------------------------------------------------------- 1 | #include "algif.h" 2 | -------------------------------------------------------------------------------- /3rdparty/algif_1.3/src/icon.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/algif_1.3/src/icon.res -------------------------------------------------------------------------------- /3rdparty/algif_1.3/src/lzw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/algif_1.3/src/lzw.c -------------------------------------------------------------------------------- /3rdparty/algif_1.3/src/lzw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/algif_1.3/src/lzw.h -------------------------------------------------------------------------------- /3rdparty/allegro-4.2.2-xc-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/allegro-4.2.2-xc-master/.gitignore -------------------------------------------------------------------------------- /3rdparty/allegro-4.2.2-xc-master/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/allegro-4.2.2-xc-master/aclocal.m4 -------------------------------------------------------------------------------- /3rdparty/allegro-4.2.2-xc-master/docs/html/allegro.cp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rdparty/allegro-4.2.2-xc-master/docs/html/allegro.ky: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rdparty/allegro-4.2.2-xc-master/docs/html/allegro.pg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rdparty/allegro-4.2.2-xc-master/docs/html/allegro.tp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rdparty/allegro-4.2.2-xc-master/docs/html/allegro.vr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rdparty/allegro-4.2.2-xc-master/fix.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/allegro-4.2.2-xc-master/fix.bat -------------------------------------------------------------------------------- /3rdparty/allegro-4.2.2-xc-master/fix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/allegro-4.2.2-xc-master/fix.sh -------------------------------------------------------------------------------- /3rdparty/allegro-4.2.2-xc-master/include/allegro/platform/alplatf.h: -------------------------------------------------------------------------------- 1 | /* generated by fix.sh */ 2 | #define ALLEGRO_DJGPP 3 | -------------------------------------------------------------------------------- /3rdparty/allegro-4.2.2-xc-master/indent.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/allegro-4.2.2-xc-master/indent.pro -------------------------------------------------------------------------------- /3rdparty/allegro-4.2.2-xc-master/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/allegro-4.2.2-xc-master/makefile -------------------------------------------------------------------------------- /3rdparty/allegro-4.2.2-xc-master/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/allegro-4.2.2-xc-master/readme.md -------------------------------------------------------------------------------- /3rdparty/allegro-4.2.2-xc-master/src/blit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/allegro-4.2.2-xc-master/src/blit.c -------------------------------------------------------------------------------- /3rdparty/allegro-4.2.2-xc-master/src/bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/allegro-4.2.2-xc-master/src/bmp.c -------------------------------------------------------------------------------- /3rdparty/allegro-4.2.2-xc-master/src/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/allegro-4.2.2-xc-master/src/file.c -------------------------------------------------------------------------------- /3rdparty/allegro-4.2.2-xc-master/src/fli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/allegro-4.2.2-xc-master/src/fli.c -------------------------------------------------------------------------------- /3rdparty/allegro-4.2.2-xc-master/src/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/allegro-4.2.2-xc-master/src/font.c -------------------------------------------------------------------------------- /3rdparty/allegro-4.2.2-xc-master/src/fsel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/allegro-4.2.2-xc-master/src/fsel.c -------------------------------------------------------------------------------- /3rdparty/allegro-4.2.2-xc-master/src/gfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/allegro-4.2.2-xc-master/src/gfx.c -------------------------------------------------------------------------------- /3rdparty/allegro-4.2.2-xc-master/src/gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/allegro-4.2.2-xc-master/src/gui.c -------------------------------------------------------------------------------- /3rdparty/allegro-4.2.2-xc-master/src/lbm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/allegro-4.2.2-xc-master/src/lbm.c -------------------------------------------------------------------------------- /3rdparty/allegro-4.2.2-xc-master/src/libc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/allegro-4.2.2-xc-master/src/libc.c -------------------------------------------------------------------------------- /3rdparty/allegro-4.2.2-xc-master/src/lzss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/allegro-4.2.2-xc-master/src/lzss.c -------------------------------------------------------------------------------- /3rdparty/allegro-4.2.2-xc-master/src/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/allegro-4.2.2-xc-master/src/math.c -------------------------------------------------------------------------------- /3rdparty/allegro-4.2.2-xc-master/src/midi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/allegro-4.2.2-xc-master/src/midi.c -------------------------------------------------------------------------------- /3rdparty/allegro-4.2.2-xc-master/src/misc/modexsms.h: -------------------------------------------------------------------------------- 1 | extern void (*_split_modex_screen_ptr)(int); 2 | -------------------------------------------------------------------------------- /3rdparty/allegro-4.2.2-xc-master/src/misc/test.cpp: -------------------------------------------------------------------------------- 1 | class foo {foo() {}}; 2 | -------------------------------------------------------------------------------- /3rdparty/allegro-4.2.2-xc-master/src/pcx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/allegro-4.2.2-xc-master/src/pcx.c -------------------------------------------------------------------------------- /3rdparty/allegro-4.2.2-xc-master/src/quat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/allegro-4.2.2-xc-master/src/quat.c -------------------------------------------------------------------------------- /3rdparty/allegro-4.2.2-xc-master/src/rle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/allegro-4.2.2-xc-master/src/rle.c -------------------------------------------------------------------------------- /3rdparty/allegro-4.2.2-xc-master/src/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/allegro-4.2.2-xc-master/src/text.c -------------------------------------------------------------------------------- /3rdparty/allegro-4.2.2-xc-master/src/tga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/allegro-4.2.2-xc-master/src/tga.c -------------------------------------------------------------------------------- /3rdparty/allegro-4.2.2-xc-master/stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /3rdparty/allegro-4.2.2-xc-master/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/allegro-4.2.2-xc-master/todo.txt -------------------------------------------------------------------------------- /3rdparty/allegro-4.2.2-xc-master/xmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/allegro-4.2.2-xc-master/xmake.sh -------------------------------------------------------------------------------- /3rdparty/alpng13/Makefile.nozlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/alpng13/Makefile.nozlib -------------------------------------------------------------------------------- /3rdparty/alpng13/Makefile.zlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/alpng13/Makefile.zlib -------------------------------------------------------------------------------- /3rdparty/alpng13/changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/alpng13/changes.txt -------------------------------------------------------------------------------- /3rdparty/alpng13/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/alpng13/configure -------------------------------------------------------------------------------- /3rdparty/alpng13/configure.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/alpng13/configure.bat -------------------------------------------------------------------------------- /3rdparty/alpng13/doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/alpng13/doc.html -------------------------------------------------------------------------------- /3rdparty/alpng13/ex01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/alpng13/ex01.c -------------------------------------------------------------------------------- /3rdparty/alpng13/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/alpng13/image.png -------------------------------------------------------------------------------- /3rdparty/alpng13/makefiles/makefile.linux0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/alpng13/makefiles/makefile.linux0 -------------------------------------------------------------------------------- /3rdparty/alpng13/makefiles/makefile.linux1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/alpng13/makefiles/makefile.linux1 -------------------------------------------------------------------------------- /3rdparty/alpng13/makefiles/makefile.linux2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/alpng13/makefiles/makefile.linux2 -------------------------------------------------------------------------------- /3rdparty/alpng13/makefiles/makefile.mingw0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/alpng13/makefiles/makefile.mingw0 -------------------------------------------------------------------------------- /3rdparty/alpng13/makefiles/makefile.mingw1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/alpng13/makefiles/makefile.mingw1 -------------------------------------------------------------------------------- /3rdparty/alpng13/makefiles/makefile.mingw2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/alpng13/makefiles/makefile.mingw2 -------------------------------------------------------------------------------- /3rdparty/alpng13/makefiles/makefile.msvc0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/alpng13/makefiles/makefile.msvc0 -------------------------------------------------------------------------------- /3rdparty/alpng13/makefiles/makefile.msvc1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/alpng13/makefiles/makefile.msvc1 -------------------------------------------------------------------------------- /3rdparty/alpng13/makefiles/makefile.msvc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/alpng13/makefiles/makefile.msvc2 -------------------------------------------------------------------------------- /3rdparty/alpng13/objects/removeme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/alpng13/objects/removeme.txt -------------------------------------------------------------------------------- /3rdparty/alpng13/src/alpng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/alpng13/src/alpng.h -------------------------------------------------------------------------------- /3rdparty/alpng13/src/alpng_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/alpng13/src/alpng_common.c -------------------------------------------------------------------------------- /3rdparty/alpng13/src/alpng_drawer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/alpng13/src/alpng_drawer.c -------------------------------------------------------------------------------- /3rdparty/alpng13/src/alpng_filereader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/alpng13/src/alpng_filereader.c -------------------------------------------------------------------------------- /3rdparty/alpng13/src/alpng_filters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/alpng13/src/alpng_filters.c -------------------------------------------------------------------------------- /3rdparty/alpng13/src/alpng_interlacing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/alpng13/src/alpng_interlacing.c -------------------------------------------------------------------------------- /3rdparty/alpng13/src/alpng_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/alpng13/src/alpng_internal.h -------------------------------------------------------------------------------- /3rdparty/alpng13/src/alpng_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/alpng13/src/alpng_private.h -------------------------------------------------------------------------------- /3rdparty/alpng13/src/alpng_save.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/alpng13/src/alpng_save.c -------------------------------------------------------------------------------- /3rdparty/alpng13/src/inflate/huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/alpng13/src/inflate/huffman.c -------------------------------------------------------------------------------- /3rdparty/alpng13/src/inflate/huffman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/alpng13/src/inflate/huffman.h -------------------------------------------------------------------------------- /3rdparty/alpng13/src/inflate/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/alpng13/src/inflate/inflate.c -------------------------------------------------------------------------------- /3rdparty/alpng13/src/inflate/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/alpng13/src/inflate/inflate.h -------------------------------------------------------------------------------- /3rdparty/alpng13/src/inflate/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/alpng13/src/inflate/input.c -------------------------------------------------------------------------------- /3rdparty/alpng13/src/inflate/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/alpng13/src/inflate/input.h -------------------------------------------------------------------------------- /3rdparty/alpng13/src/quantization/octree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/alpng13/src/quantization/octree.c -------------------------------------------------------------------------------- /3rdparty/alpng13/src/quantization/octree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/alpng13/src/quantization/octree.h -------------------------------------------------------------------------------- /3rdparty/alpng13/src/wrappers/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/alpng13/src/wrappers/deflate.h -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/COPYRIGHT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/COPYRIGHT.txt -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/ChangeLog -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/INSTALL.txt -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/LICENSE.txt -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/NEWS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/NEWS.txt -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/README.md -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/bin/base_utilities: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/bin/base_utilities -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/build/base_utilities: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/build/base_utilities -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/build/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/build/build -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/build/build_all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/build/build_all -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/build/sysinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/build/sysinfo -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/build/wasm_cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/build/wasm_cc -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/cmake-djgpp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/cmake-djgpp.sh -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/data/images/feed.pnm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/data/images/feed.pnm -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/data/images/feep.pnm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/data/images/feep.pnm -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/data/images/feep2.pnm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/data/images/feep2.pnm -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/data/images/test.pnm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/data/images/test.pnm -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/data/test/bad/269.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/data/test/bad/269.jp2 -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/data/test/bad/274.pgx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/data/test/bad/274.pgx -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/data/test/bad/276.pgx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/data/test/bad/276.pgx -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/data/test/bad/277.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/data/test/bad/277.jp2 -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/data/test/bad/291.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/data/test/bad/291.jp2 -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/data/test/bad/309.jpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/data/test/bad/309.jpc -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/data/test/bad/318.jpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/data/test/bad/318.jpc -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/data/test/bad/353.pnm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/data/test/bad/353.pnm -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/data/test/bad/poc.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/data/test/bad/poc.jp2 -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/data/test/good/368_poc_min.pnm: -------------------------------------------------------------------------------- 1 | P413 1 30 -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/data/test/good/jasper-segfault-nullpointer.mif: -------------------------------------------------------------------------------- 1 | MIF 2 | end 3 | -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/doc/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/doc/Doxyfile.in -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/doc/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/doc/README.txt -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/doc/jpeg2000.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/doc/jpeg2000.pdf -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/doc/src/apps.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/doc/src/apps.dox -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/doc/src/apps_jiv.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/doc/src/apps_jiv.dox -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/doc/src/bugs.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/doc/src/bugs.dox -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/doc/src/codecs.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/doc/src/codecs.dox -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/doc/src/intro.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/doc/src/intro.dox -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/doc/src/lib.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/doc/src/lib.dox -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/doc/src/lib_init.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/doc/src/lib_init.dox -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/doc/src/lib_log.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/doc/src/lib_log.dox -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/doc/src/lib_math.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/doc/src/lib_math.dox -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/doc/src/lib_misc.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/doc/src/lib_misc.dox -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/doc/src/modules.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/doc/src/modules.dox -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/src/README.txt: -------------------------------------------------------------------------------- 1 | This directory hierarchy contains the source code for JasPer. 2 | -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/src/app/fuzz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/src/app/fuzz.c -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/src/app/imgcmp.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/src/app/imgcmp.1 -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/src/app/imgcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/src/app/imgcmp.c -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/src/app/imginfo.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/src/app/imginfo.1 -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/src/app/imginfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/src/app/imginfo.c -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/src/app/jasper.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/src/app/jasper.1 -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/src/app/jasper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/src/app/jasper.c -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/src/app/jiv.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/src/app/jiv.1 -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/src/app/jiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/src/app/jiv.c -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/src/app/multithread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/src/app/multithread.c -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/src/app/test_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/src/app/test_1.c -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/src/app/test_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/src/app/test_2.cpp -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/src/app/tmrdemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/src/app/tmrdemo.c -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/test/bin/codec_tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/test/bin/codec_tests -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/test/bin/jpcod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/test/bin/jpcod -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/test/bin/jpdec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/test/bin/jpdec -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/test/bin/jpenc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/test/bin/jpenc -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/test/bin/run_mem_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/test/bin/run_mem_test -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/test/bin/run_test_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/test/bin/run_test_1 -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/test/bin/run_test_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/test/bin/run_test_2 -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/test/bin/run_test_3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/test/bin/run_test_3 -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/test/bin/run_test_5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/test/bin/run_test_5 -------------------------------------------------------------------------------- /3rdparty/jasper-4.2.4/test/bin/wrapper.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jasper-4.2.4/test/bin/wrapper.in -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/Makefile.am -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/Makefile.in -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/README -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/aclocal.m4 -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/ar-lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/ar-lib -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/cdaltui.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/cdaltui.txt -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/cderror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/cderror.h -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/cdjpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/cdjpeg.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/cdjpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/cdjpeg.h -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/change.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/change.log -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/cjpeg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/cjpeg.1 -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/cjpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/cjpeg.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/cjpegalt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/cjpegalt.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/ckconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/ckconfig.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/coderules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/coderules.txt -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/compile -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/config.guess -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/config.sub -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/configure -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/configure.ac -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/depcomp -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/djpeg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/djpeg.1 -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/djpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/djpeg.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/djpegalt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/djpegalt.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/example.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/filelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/filelist.txt -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/install-sh -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/install.txt -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jaricom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jaricom.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jcapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jcapimin.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jcapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jcapistd.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jcarith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jcarith.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jccoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jccoefct.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jccolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jccolor.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jcdctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jcdctmgr.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jchuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jchuff.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jcinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jcinit.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jcmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jcmainct.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jcmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jcmarker.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jcmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jcmaster.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jcomapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jcomapi.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jconfig.bcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jconfig.bcc -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jconfig.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jconfig.cfg -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jconfig.dj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jconfig.dj -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jconfig.h -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jconfig.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jconfig.mac -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jconfig.manx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jconfig.manx -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jconfig.mc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jconfig.mc6 -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jconfig.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jconfig.sas -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jconfig.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jconfig.st -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jconfig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jconfig.txt -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jconfig.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jconfig.vc -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jconfig.vms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jconfig.vms -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jconfig.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jconfig.wat -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jconfig.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jconfig.xc -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jcparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jcparam.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jcprepct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jcprepct.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jcsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jcsample.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jctrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jctrans.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jdapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jdapimin.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jdapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jdapistd.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jdarith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jdarith.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jdatadst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jdatadst.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jdatasrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jdatasrc.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jdcoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jdcoefct.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jdcolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jdcolor.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jdct.h -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jddctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jddctmgr.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jdhuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jdhuff.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jdinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jdinput.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jdmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jdmainct.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jdmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jdmarker.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jdmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jdmaster.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jdmerge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jdmerge.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jdosaobj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jdosaobj.txt -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jdpostct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jdpostct.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jdsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jdsample.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jdtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jdtrans.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jerror.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jerror.h -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jfdctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jfdctflt.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jfdctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jfdctfst.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jfdctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jfdctint.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jidctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jidctflt.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jidctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jidctfst.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jidctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jidctint.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jinclude.h -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jmemansi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jmemansi.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jmemdos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jmemdos.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jmemdosa.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jmemdosa.asm -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jmemmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jmemmac.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jmemmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jmemmgr.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jmemname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jmemname.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jmemnobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jmemnobs.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jmemsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jmemsys.h -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jmorecfg.h -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jpegint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jpegint.h -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jpeglib.h -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jpegtran.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jpegtran.1 -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jpegtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jpegtran.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jquant1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jquant1.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jquant2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jquant2.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jutils.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/jversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/jversion.h -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/libjpeg.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/libjpeg.pc.in -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/libjpeg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/libjpeg.txt -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/ltmain.sh -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makajpeg.bcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makajpeg.bcb -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makcjpeg.bcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makcjpeg.bcb -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makcjpeg.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makcjpeg.st -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makdjpeg.bcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makdjpeg.bcb -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makdjpeg.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makdjpeg.st -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makeadsw.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makeadsw.vc6 -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makeasln.v16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makeasln.v16 -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makecdep.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makecdep.vc6 -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makecdsp.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makecdsp.vc6 -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makecfil.v16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makecfil.v16 -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makecmak.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makecmak.vc6 -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makecvcx.v16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makecvcx.v16 -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makeddep.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makeddep.vc6 -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makeddsp.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makeddsp.vc6 -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makedfil.v16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makedfil.v16 -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makedmak.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makedmak.vc6 -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makedvcx.v16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makedvcx.v16 -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makefile.ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makefile.ansi -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makefile.b32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makefile.b32 -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makefile.b64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makefile.b64 -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makefile.bcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makefile.bcc -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makefile.c32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makefile.c32 -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makefile.d32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makefile.d32 -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makefile.dj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makefile.dj -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makefile.dj.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makefile.dj.bak -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makefile.manx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makefile.manx -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makefile.mc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makefile.mc6 -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makefile.mms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makefile.mms -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makefile.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makefile.sas -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makefile.unix -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makefile.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makefile.vc -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makefile.vms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makefile.vms -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makefile.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makefile.vs -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makefile.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makefile.wat -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makefile.x32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makefile.x32 -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makefile.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makefile.xc -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makejdep.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makejdep.vc6 -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makejdsp.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makejdsp.vc6 -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makejdsw.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makejdsw.vc6 -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makejfil.v16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makejfil.v16 -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makejmak.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makejmak.vc6 -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makejsln.v16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makejsln.v16 -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makejvcx.v16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makejvcx.v16 -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makeproj.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makeproj.mac -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makerdep.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makerdep.vc6 -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makerdsp.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makerdsp.vc6 -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makerfil.v16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makerfil.v16 -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makermak.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makermak.vc6 -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makervcx.v16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makervcx.v16 -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/maketdep.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/maketdep.vc6 -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/maketdsp.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/maketdsp.vc6 -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/maketfil.v16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/maketfil.v16 -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/maketmak.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/maketmak.vc6 -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/maketvcx.v16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/maketvcx.v16 -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makewdep.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makewdep.vc6 -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makewdsp.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makewdsp.vc6 -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makewfil.v16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makewfil.v16 -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makewmak.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makewmak.vc6 -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makewvcx.v16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makewvcx.v16 -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makljpeg.bcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makljpeg.bcb -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makljpeg.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makljpeg.st -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makrjpeg.bcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makrjpeg.bcb -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/maktjpeg.bcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/maktjpeg.bcb -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/maktjpeg.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/maktjpeg.st -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makvms.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makvms.opt -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/makwjpeg.bcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/makwjpeg.bcb -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/missing -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/rdbmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/rdbmp.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/rdcolmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/rdcolmap.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/rdgif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/rdgif.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/rdjpgcom.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/rdjpgcom.1 -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/rdjpgcom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/rdjpgcom.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/rdppm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/rdppm.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/rdrle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/rdrle.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/rdswitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/rdswitch.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/rdtarga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/rdtarga.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/readme.dos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/readme.dos -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/structure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/structure.txt -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/testimg.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/testimg.bmp -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/testimg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/testimg.gif -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/testimg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/testimg.jpg -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/testimg.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/testimg.ppm -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/testimgp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/testimgp.jpg -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/testorig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/testorig.jpg -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/testprog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/testprog.jpg -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/transupp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/transupp.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/transupp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/transupp.h -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/usage.txt -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/wizard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/wizard.txt -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/wrbmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/wrbmp.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/wrgif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/wrgif.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/wrjpgcom.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/wrjpgcom.1 -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/wrjpgcom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/wrjpgcom.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/wrppm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/wrppm.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/wrrle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/wrrle.c -------------------------------------------------------------------------------- /3rdparty/jpeg-9f/wrtarga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/jpeg-9f/wrtarga.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/.cmake-format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/.cmake-format.py -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/.gitignore -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/.mailmap -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/.pylintrc -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/.style.yapf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/.style.yapf -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/AUTHORS -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/Android.mk -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/CONTRIBUTING.md -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/COPYING -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/ChangeLog -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/Makefile.am -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/Makefile.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/Makefile.vc -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/NEWS -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/PATENTS -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/PRESUBMIT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/PRESUBMIT.py -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/README.md -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/autogen.sh: -------------------------------------------------------------------------------- 1 | #! /bin/sh -e 2 | exec autoreconf -fi 3 | -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/build.gradle -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/cmake/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/cmake/config.h.in -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/cmake/cpu.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/cmake/cpu.cmake -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/cmake/deps.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/cmake/deps.cmake -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/codereview.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/codereview.settings -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/configure.ac -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/doc/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/doc/TODO -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/doc/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/doc/api.md -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/doc/building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/doc/building.md -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/doc/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/doc/template.html -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/doc/tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/doc/tools.md -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/examples/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/examples/Android.mk -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/examples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/examples/Makefile.am -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/examples/anim_diff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/examples/anim_diff.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/examples/anim_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/examples/anim_dump.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/examples/anim_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/examples/anim_util.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/examples/anim_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/examples/anim_util.h -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/examples/cwebp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/examples/cwebp.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/examples/dwebp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/examples/dwebp.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/examples/gif2webp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/examples/gif2webp.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/examples/gifdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/examples/gifdec.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/examples/gifdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/examples/gifdec.h -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/examples/img2webp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/examples/img2webp.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/examples/stopwatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/examples/stopwatch.h -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/examples/test.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/examples/test.webp -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/examples/unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/examples/unicode.h -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/examples/vwebp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/examples/vwebp.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/examples/webpinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/examples/webpinfo.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/examples/webpmux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/examples/webpmux.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/extras/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/extras/Makefile.am -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/extras/extras.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/extras/extras.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/extras/extras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/extras/extras.h -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/extras/get_disto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/extras/get_disto.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/extras/vwebp_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/extras/vwebp_sdl.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/extras/webp_to_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/extras/webp_to_sdl.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/extras/webp_to_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/extras/webp_to_sdl.h -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/gradle.properties -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/gradlew -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/gradlew.bat -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/imageio/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/imageio/Android.mk -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/imageio/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/imageio/Makefile.am -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/imageio/image_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/imageio/image_dec.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/imageio/image_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/imageio/image_dec.h -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/imageio/image_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/imageio/image_enc.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/imageio/image_enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/imageio/image_enc.h -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/imageio/jpegdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/imageio/jpegdec.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/imageio/jpegdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/imageio/jpegdec.h -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/imageio/metadata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/imageio/metadata.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/imageio/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/imageio/metadata.h -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/imageio/pngdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/imageio/pngdec.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/imageio/pngdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/imageio/pngdec.h -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/imageio/pnmdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/imageio/pnmdec.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/imageio/pnmdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/imageio/pnmdec.h -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/imageio/tiffdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/imageio/tiffdec.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/imageio/tiffdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/imageio/tiffdec.h -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/imageio/webpdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/imageio/webpdec.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/imageio/webpdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/imageio/webpdec.h -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/imageio/wicdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/imageio/wicdec.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/imageio/wicdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/imageio/wicdec.h -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/infra/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/infra/common.sh -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/infra/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/infra/compile.sh -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/infra/compile_js.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/infra/compile_js.sh -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/iosbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/iosbuild.sh -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/m4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/m4/.gitignore -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/m4/ax_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/m4/ax_pthread.m4 -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/makefile.djgpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/makefile.djgpp -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/makefile.unix -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/man/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/man/Makefile.am -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/man/cwebp.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/man/cwebp.1 -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/man/dwebp.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/man/dwebp.1 -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/man/gif2webp.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/man/gif2webp.1 -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/man/img2webp.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/man/img2webp.1 -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/man/vwebp.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/man/vwebp.1 -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/man/webpinfo.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/man/webpinfo.1 -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/man/webpmux.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/man/webpmux.1 -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/sharpyuv/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/sharpyuv/Makefile.am -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/sharpyuv/sharpyuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/sharpyuv/sharpyuv.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/sharpyuv/sharpyuv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/sharpyuv/sharpyuv.h -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/Makefile.am -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dec/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dec/Makefile.am -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dec/alpha_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dec/alpha_dec.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dec/alphai_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dec/alphai_dec.h -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dec/buffer_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dec/buffer_dec.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dec/common_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dec/common_dec.h -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dec/frame_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dec/frame_dec.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dec/idec_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dec/idec_dec.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dec/io_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dec/io_dec.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dec/quant_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dec/quant_dec.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dec/tree_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dec/tree_dec.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dec/vp8_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dec/vp8_dec.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dec/vp8_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dec/vp8_dec.h -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dec/vp8i_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dec/vp8i_dec.h -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dec/vp8l_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dec/vp8l_dec.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dec/vp8li_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dec/vp8li_dec.h -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dec/webp_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dec/webp_dec.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dec/webpi_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dec/webpi_dec.h -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/demux/demux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/demux/demux.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dsp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dsp/Makefile.am -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dsp/cost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dsp/cost.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dsp/cost_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dsp/cost_neon.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dsp/cost_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dsp/cost_sse2.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dsp/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dsp/cpu.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dsp/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dsp/cpu.h -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dsp/dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dsp/dec.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dsp/dec_mips32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dsp/dec_mips32.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dsp/dec_msa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dsp/dec_msa.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dsp/dec_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dsp/dec_neon.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dsp/dec_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dsp/dec_sse2.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dsp/dec_sse41.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dsp/dec_sse41.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dsp/dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dsp/dsp.h -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dsp/enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dsp/enc.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dsp/enc_mips32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dsp/enc_mips32.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dsp/enc_msa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dsp/enc_msa.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dsp/enc_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dsp/enc_neon.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dsp/enc_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dsp/enc_sse2.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dsp/enc_sse41.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dsp/enc_sse41.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dsp/filters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dsp/filters.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dsp/lossless.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dsp/lossless.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dsp/lossless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dsp/lossless.h -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dsp/mips_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dsp/mips_macro.h -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dsp/msa_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dsp/msa_macro.h -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dsp/neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dsp/neon.h -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dsp/quant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dsp/quant.h -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dsp/rescaler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dsp/rescaler.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dsp/ssim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dsp/ssim.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dsp/ssim_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dsp/ssim_sse2.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dsp/upsampling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dsp/upsampling.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dsp/yuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dsp/yuv.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dsp/yuv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dsp/yuv.h -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dsp/yuv_mips32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dsp/yuv_mips32.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dsp/yuv_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dsp/yuv_neon.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/dsp/yuv_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/dsp/yuv_sse2.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/libwebp.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/libwebp.pc.in -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/libwebp.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/libwebp.rc -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/mux/animi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/mux/animi.h -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/mux/muxedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/mux/muxedit.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/mux/muxi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/mux/muxi.h -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/mux/muxread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/mux/muxread.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/utils/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/utils/utils.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/utils/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/utils/utils.h -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/webp/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/webp/decode.h -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/webp/demux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/webp/demux.h -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/webp/encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/webp/encode.h -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/webp/mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/webp/mux.h -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/src/webp/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/src/webp/types.h -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/swig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/swig/README.md -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/swig/libwebp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/swig/libwebp.go -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/swig/libwebp.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/swig/libwebp.jar -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/swig/libwebp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/swig/libwebp.py -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/swig/libwebp.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/swig/libwebp.swig -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/swig/libwebp_gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/swig/libwebp_gc.c -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/swig/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/swig/setup.py -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/tests/README.md -------------------------------------------------------------------------------- /3rdparty/libwebp-1.3.2/webp_js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/libwebp-1.3.2/webp_js/README.md -------------------------------------------------------------------------------- /3rdparty/stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/stb/stb_image.h -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/ChangeLog -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/HOWTO-RELEASE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/HOWTO-RELEASE -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/LICENSE.md -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/Makefile.am -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/Makefile.in -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/README.md -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/RELEASE-DATE: -------------------------------------------------------------------------------- 1 | 20230908 2 | -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/TODO -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/VERSION: -------------------------------------------------------------------------------- 1 | 4.6.0 2 | -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/aclocal.m4 -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/autogen.sh -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/build/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/build/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/build/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/build/Makefile.am -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/build/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/build/Makefile.in -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/build/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/build/README -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/cmake/FindJBIG.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/cmake/FindJBIG.cmake -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/cmake/FindJPEG.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/cmake/FindJPEG.cmake -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/cmake/FindLERC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/cmake/FindLERC.cmake -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/cmake/FindWebP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/cmake/FindWebP.cmake -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/cmake/FindZSTD.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/cmake/FindZSTD.cmake -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/cmake/Release.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/cmake/Release.cmake -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/cmake/Sphinx.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/cmake/Sphinx.cmake -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/config/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/config/compile -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/config/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/config/config.guess -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/config/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/config/config.h.in -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/config/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/config/config.sub -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/config/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/config/depcomp -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/config/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/config/install-sh -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/config/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/config/ltmain.sh -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/config/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/config/missing -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/config/test-driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/config/test-driver -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/configure -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/configure.ac -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/contrib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/contrib/Makefile.am -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/contrib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/contrib/Makefile.in -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/contrib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/contrib/README -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/contrib/dbs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/contrib/dbs/README -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/contrib/dbs/xtiff/patchlevel.h: -------------------------------------------------------------------------------- 1 | #define PATCHLEVEL 0 2 | -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/contrib/mfs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/contrib/mfs/README -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/contrib/pds/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/contrib/pds/README -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/contrib/ras/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/contrib/ras/README -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/contrib/tags/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/contrib/tags/README -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/djgpp-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/djgpp-config.sh -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/doc/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/doc/Makefile.am -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/doc/Makefile.in -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/doc/addingtags.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/doc/addingtags.rst -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/doc/build.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/doc/build.rst -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/doc/conf.py -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/doc/contrib.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/doc/contrib.rst -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/doc/functions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/doc/functions.rst -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/doc/images.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/doc/images.rst -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/doc/images/back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/doc/images/back.gif -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/doc/images/bali.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/doc/images/bali.jpg -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/doc/images/cat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/doc/images/cat.gif -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/doc/images/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/doc/images/cover.jpg -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/doc/images/dave.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/doc/images/dave.gif -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/doc/images/info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/doc/images/info.gif -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/doc/images/jello.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/doc/images/jello.jpg -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/doc/images/jim.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/doc/images/jim.gif -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/doc/images/note.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/doc/images/note.gif -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/doc/images/quad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/doc/images/quad.jpg -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/doc/images/ring.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/doc/images/ring.gif -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/doc/index.rst -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/doc/internals.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/doc/internals.rst -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/doc/libtiff.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/doc/libtiff.rst -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/doc/multi_page.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/doc/multi_page.rst -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/doc/project/bugs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/doc/project/bugs.rst -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/doc/terms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/doc/terms.rst -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/doc/tools.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/doc/tools.rst -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/doc/tools/tiffcp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/doc/tools/tiffcp.rst -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/libtiff-4.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/libtiff-4.pc.in -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/libtiff/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/libtiff/Makefile.am -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/libtiff/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/libtiff/Makefile.in -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/libtiff/libtiff.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/libtiff/libtiff.def -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/libtiff/libtiff.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/libtiff/libtiff.map -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/libtiff/libtiffxx.map: -------------------------------------------------------------------------------- 1 | LIBTIFFXX_4.0 { 2 | global: 3 | *; 4 | }; 5 | -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/libtiff/mkg3states.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/libtiff/mkg3states.c -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/libtiff/t4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/libtiff/t4.h -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/libtiff/tif_aux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/libtiff/tif_aux.c -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/libtiff/tif_close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/libtiff/tif_close.c -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/libtiff/tif_codec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/libtiff/tif_codec.c -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/libtiff/tif_color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/libtiff/tif_color.c -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/libtiff/tif_dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/libtiff/tif_dir.c -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/libtiff/tif_dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/libtiff/tif_dir.h -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/libtiff/tif_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/libtiff/tif_error.c -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/libtiff/tif_fax3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/libtiff/tif_fax3.c -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/libtiff/tif_fax3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/libtiff/tif_fax3.h -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/libtiff/tif_fax3sm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/libtiff/tif_fax3sm.c -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/libtiff/tif_flush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/libtiff/tif_flush.c -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/libtiff/tif_jbig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/libtiff/tif_jbig.c -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/libtiff/tif_jpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/libtiff/tif_jpeg.c -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/libtiff/tif_lerc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/libtiff/tif_lerc.c -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/libtiff/tif_luv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/libtiff/tif_luv.c -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/libtiff/tif_lzma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/libtiff/tif_lzma.c -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/libtiff/tif_lzw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/libtiff/tif_lzw.c -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/libtiff/tif_next.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/libtiff/tif_next.c -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/libtiff/tif_ojpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/libtiff/tif_ojpeg.c -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/libtiff/tif_open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/libtiff/tif_open.c -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/libtiff/tif_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/libtiff/tif_print.c -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/libtiff/tif_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/libtiff/tif_read.c -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/libtiff/tif_strip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/libtiff/tif_strip.c -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/libtiff/tif_swab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/libtiff/tif_swab.c -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/libtiff/tif_tile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/libtiff/tif_tile.c -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/libtiff/tif_unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/libtiff/tif_unix.c -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/libtiff/tif_webp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/libtiff/tif_webp.c -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/libtiff/tif_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/libtiff/tif_win32.c -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/libtiff/tif_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/libtiff/tif_write.c -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/libtiff/tif_zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/libtiff/tif_zip.c -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/libtiff/tif_zstd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/libtiff/tif_zstd.c -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/libtiff/tiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/libtiff/tiff.h -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/libtiff/tiffio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/libtiff/tiffio.h -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/libtiff/tiffio.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/libtiff/tiffio.hxx -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/libtiff/tiffiop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/libtiff/tiffiop.h -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/libtiff/uvcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/libtiff/uvcode.h -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/m4/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/m4/acinclude.m4 -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/m4/libtool.m4 -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/m4/ltoptions.m4 -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/m4/ltsugar.m4 -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/m4/ltversion.m4 -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/placeholder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/placeholder.h -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/port/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/port/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/port/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/port/Makefile.am -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/port/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/port/Makefile.in -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/port/dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/port/dummy.c -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/port/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/port/getopt.c -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/port/libport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/port/libport.h -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/test/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/test/Makefile.am -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/test/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/test/Makefile.in -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/test/TiffTest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/test/TiffTest.cmake -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/test/ascii_tag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/test/ascii_tag.c -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/test/check_tag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/test/check_tag.c -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/test/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/test/common.sh -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/test/custom_dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/test/custom_dir.c -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/test/long_tag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/test/long_tag.c -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/test/raw_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/test/raw_decode.c -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/test/rewrite_tag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/test/rewrite_tag.c -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/test/short_tag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/test/short_tag.c -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/test/strip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/test/strip.c -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/test/strip_rw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/test/strip_rw.c -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/test/test_arrays.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/test/test_arrays.c -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/test/test_arrays.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/test/test_arrays.h -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/test/testtypes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/test/testtypes.c -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/test/tiffcp-g3-1d.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/test/tiffcp-g3-1d.sh -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/test/tiffcp-g3-2d.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/test/tiffcp-g3-2d.sh -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/test/tiffcp-g3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/test/tiffcp-g3.sh -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/test/tiffcp-g4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/test/tiffcp-g4.sh -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/test/tiffcp-split.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/test/tiffcp-split.sh -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/test/tiffdump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/test/tiffdump.sh -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/test/tiffinfo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/test/tiffinfo.sh -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/test/tifftest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/test/tifftest.h -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/tools/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/tools/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/tools/Makefile.am -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/tools/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/tools/Makefile.in -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/tools/tiffcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/tools/tiffcp.c -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/tools/tiffdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/tools/tiffdump.c -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/tools/tiffinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/tools/tiffinfo.c -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/tools/tiffset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/tools/tiffset.c -------------------------------------------------------------------------------- /3rdparty/tiff-4.6.0/tools/tiffsplit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/tiff-4.6.0/tools/tiffsplit.c -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/ChangeLog -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/FAQ -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/INDEX -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/Makefile -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/Makefile.dojs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/Makefile.dojs -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/Makefile.in -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/README -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/adler32.c -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/amiga/Makefile.pup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/amiga/Makefile.pup -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/amiga/Makefile.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/amiga/Makefile.sas -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/compress.c -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/configure -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/contrib/puff/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/contrib/puff/README -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/contrib/puff/puff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/contrib/puff/puff.c -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/contrib/puff/puff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/contrib/puff/puff.h -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/crc32.c -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/crc32.h -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/deflate.c -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/deflate.h -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/doc/algorithm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/doc/algorithm.txt -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/doc/crc-doc.1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/doc/crc-doc.1.0.pdf -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/doc/rfc1950.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/doc/rfc1950.txt -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/doc/rfc1951.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/doc/rfc1951.txt -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/doc/rfc1952.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/doc/rfc1952.txt -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/doc/txtvsbin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/doc/txtvsbin.txt -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/examples/enough.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/examples/enough.c -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/examples/fitblk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/examples/fitblk.c -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/examples/gun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/examples/gun.c -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/examples/gzappend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/examples/gzappend.c -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/examples/gzjoin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/examples/gzjoin.c -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/examples/gzlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/examples/gzlog.c -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/examples/gzlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/examples/gzlog.h -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/examples/gznorm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/examples/gznorm.c -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/examples/zpipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/examples/zpipe.c -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/examples/zran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/examples/zran.c -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/examples/zran.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/examples/zran.h -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/gzclose.c -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/gzguts.h -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/gzlib.c -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/gzread.c -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/gzwrite.c -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/infback.c -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/inffast.c -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/inffast.h -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/inffixed.h -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/inflate.c -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/inflate.h -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/inftrees.c -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/inftrees.h -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/make_vms.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/make_vms.com -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/msdos/Makefile.bor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/msdos/Makefile.bor -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/msdos/Makefile.dj2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/msdos/Makefile.dj2 -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/msdos/Makefile.emx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/msdos/Makefile.emx -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/msdos/Makefile.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/msdos/Makefile.msc -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/msdos/Makefile.tc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/msdos/Makefile.tc -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/nintendods/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/nintendods/Makefile -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/nintendods/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/nintendods/README -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/old/Makefile.emx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/old/Makefile.emx -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/old/Makefile.riscos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/old/Makefile.riscos -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/old/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/old/README -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/old/descrip.mms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/old/descrip.mms -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/old/os2/zlib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/old/os2/zlib.def -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/os400/README400: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/os400/README400 -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/os400/bndsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/os400/bndsrc -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/os400/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/os400/make.sh -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/os400/zlib.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/os400/zlib.inc -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/qnx/package.qpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/qnx/package.qpg -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/test/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/test/example.c -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/test/infcover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/test/infcover.c -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/test/minigzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/test/minigzip.c -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/treebuild.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/treebuild.xml -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/trees.c -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/trees.h -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/uncompr.c -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/watcom/watcom_f.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/watcom/watcom_f.mak -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/watcom/watcom_l.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/watcom/watcom_l.mak -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/win32/DLL_FAQ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/win32/DLL_FAQ.txt -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/win32/Makefile.bor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/win32/Makefile.bor -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/win32/Makefile.gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/win32/Makefile.gcc -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/win32/Makefile.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/win32/Makefile.msc -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/win32/VisualC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/win32/VisualC.txt -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/win32/zlib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/win32/zlib.def -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/win32/zlib1.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/win32/zlib1.rc -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/zconf.h -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/zconf.h.cmakein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/zconf.h.cmakein -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/zconf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/zconf.h.in -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/zlib.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/zlib.3 -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/zlib.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/zlib.3.pdf -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/zlib.h -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/zlib.pc.cmakein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/zlib.pc.cmakein -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/zlib.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/zlib.pc.in -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/zlib2ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/zlib2ansi -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/zutil.c -------------------------------------------------------------------------------- /3rdparty/zlib-1.2.12/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/3rdparty/zlib-1.2.12/zutil.h -------------------------------------------------------------------------------- /CMake-DJGPP-Toolchain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/CMake-DJGPP-Toolchain.txt -------------------------------------------------------------------------------- /CWSDPMI.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/CWSDPMI.EXE -------------------------------------------------------------------------------- /FDOS/DOSVIEW.DE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/FDOS/DOSVIEW.DE -------------------------------------------------------------------------------- /FDOS/DOSVIEW.LSM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/FDOS/DOSVIEW.LSM -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/README.md -------------------------------------------------------------------------------- /images/1bpp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/images/1bpp.bmp -------------------------------------------------------------------------------- /images/1bpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/images/1bpp.png -------------------------------------------------------------------------------- /images/24bpp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/images/24bpp.bmp -------------------------------------------------------------------------------- /images/24bpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/images/24bpp.png -------------------------------------------------------------------------------- /images/2bpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/images/2bpp.png -------------------------------------------------------------------------------- /images/4bpp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/images/4bpp.bmp -------------------------------------------------------------------------------- /images/4bpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/images/4bpp.png -------------------------------------------------------------------------------- /images/640.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/images/640.bmp -------------------------------------------------------------------------------- /images/640.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/images/640.gif -------------------------------------------------------------------------------- /images/640.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/images/640.hdr -------------------------------------------------------------------------------- /images/640.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/images/640.jp2 -------------------------------------------------------------------------------- /images/640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/images/640.jpg -------------------------------------------------------------------------------- /images/640.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/images/640.jxl -------------------------------------------------------------------------------- /images/640.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/images/640.pbm -------------------------------------------------------------------------------- /images/640.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/images/640.pcx -------------------------------------------------------------------------------- /images/640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/images/640.png -------------------------------------------------------------------------------- /images/640.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/images/640.ppm -------------------------------------------------------------------------------- /images/640.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/images/640.psd -------------------------------------------------------------------------------- /images/640.qoi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/images/640.qoi -------------------------------------------------------------------------------- /images/640.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/images/640.tga -------------------------------------------------------------------------------- /images/640.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/images/640.tif -------------------------------------------------------------------------------- /images/640.web: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/images/640.web -------------------------------------------------------------------------------- /images/8bpp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/images/8bpp.bmp -------------------------------------------------------------------------------- /images/8bpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/images/8bpp.png -------------------------------------------------------------------------------- /images/IMG_1940.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/images/IMG_1940.bmp -------------------------------------------------------------------------------- /images/IMG_1940.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/images/IMG_1940.jp2 -------------------------------------------------------------------------------- /images/IMG_1940.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/images/IMG_1940.jpg -------------------------------------------------------------------------------- /images/IMG_1940.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/images/IMG_1940.jxl -------------------------------------------------------------------------------- /images/IMG_1940.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/images/IMG_1940.pbm -------------------------------------------------------------------------------- /images/IMG_1940.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/images/IMG_1940.pcx -------------------------------------------------------------------------------- /images/IMG_1940.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/images/IMG_1940.png -------------------------------------------------------------------------------- /images/IMG_1940.qoi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/images/IMG_1940.qoi -------------------------------------------------------------------------------- /images/IMG_1940.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/images/IMG_1940.tga -------------------------------------------------------------------------------- /images/IMG_1940.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/images/IMG_1940.tif -------------------------------------------------------------------------------- /images/IMG_1940.web: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/images/IMG_1940.web -------------------------------------------------------------------------------- /images/IMG_1941.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/images/IMG_1941.jpg -------------------------------------------------------------------------------- /images/bw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/images/bw.jpg -------------------------------------------------------------------------------- /images/bw2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/images/bw2.jpg -------------------------------------------------------------------------------- /images/high.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/images/high.png -------------------------------------------------------------------------------- /images/portrait.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/images/portrait.jpg -------------------------------------------------------------------------------- /images/tsth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/images/tsth.png -------------------------------------------------------------------------------- /images/tstw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/images/tstw.png -------------------------------------------------------------------------------- /images/wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/images/wide.png -------------------------------------------------------------------------------- /src/format-jasper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/src/format-jasper.c -------------------------------------------------------------------------------- /src/format-jasper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/src/format-jasper.h -------------------------------------------------------------------------------- /src/format-jpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/src/format-jpeg.c -------------------------------------------------------------------------------- /src/format-jpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/src/format-jpeg.h -------------------------------------------------------------------------------- /src/format-qoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/src/format-qoi.c -------------------------------------------------------------------------------- /src/format-qoi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/src/format-qoi.h -------------------------------------------------------------------------------- /src/format-stb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/src/format-stb.c -------------------------------------------------------------------------------- /src/format-stb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/src/format-stb.h -------------------------------------------------------------------------------- /src/format-tiff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/src/format-tiff.c -------------------------------------------------------------------------------- /src/format-tiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/src/format-tiff.h -------------------------------------------------------------------------------- /src/format-webp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/src/format-webp.c -------------------------------------------------------------------------------- /src/format-webp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/src/format-webp.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/src/main.c -------------------------------------------------------------------------------- /src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/src/main.h -------------------------------------------------------------------------------- /src/qoi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/src/qoi.h -------------------------------------------------------------------------------- /src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/src/util.c -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/src/util.h -------------------------------------------------------------------------------- /test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperIlu/DosView/HEAD/test.bat --------------------------------------------------------------------------------