├── .gitignore ├── README.txt ├── mingw-w64 ├── README.txt ├── git │ └── PKGBUILD └── release │ └── PKGBUILD └── universal ├── Allegro.nuspec ├── Allegro.targets ├── AllegroDeps.nuspec ├── AllegroDeps.targets ├── AllegroUI.xml ├── README_msvc.txt ├── README_msys.txt ├── README_nuget.txt ├── build_allegro_msvc.bat ├── build_allegro_msvc2013_32.bat ├── build_allegro_msvc2013_64.bat ├── build_allegro_msvc2015_32.bat ├── build_allegro_msvc2015_64.bat ├── build_allegro_msvc2022_32.bat ├── build_allegro_msvc2022_64.bat ├── build_allegro_msys.sh ├── build_allegro_msys_32.sh ├── build_allegro_msys_64.sh ├── build_deps_msvc.bat ├── build_deps_msvc2013_32.bat ├── build_deps_msvc2013_64.bat ├── build_deps_msvc2015_32.bat ├── build_deps_msvc2015_64.bat ├── build_deps_msvc2022_32.bat ├── build_deps_msvc2022_64.bat ├── build_deps_msys.sh ├── build_deps_msys_32.sh ├── build_deps_msys_64.sh ├── build_nuget.cmd ├── create_nuspec.py ├── dumb-2.0.3 ├── .clang-format ├── .gitattributes ├── .gitignore ├── CHANGELOG.md ├── CMakeLists.txt ├── COMPILING.md ├── DUMBFILE_SYSTEM.md ├── LICENSE ├── README.md ├── UPDATING_YOUR_PROJECTS.md ├── cmake-scripts │ ├── FindAllegro4.cmake │ ├── FindSDL2.cmake │ └── Findargtable2.cmake ├── examples │ ├── README.md │ ├── dumbout.c │ └── dumbplay.c ├── include │ ├── aldumb.h │ ├── dumb.h │ └── internal │ │ ├── aldumb.h │ │ ├── barray.h │ │ ├── dumb.h │ │ ├── dumbfile.h │ │ ├── it.h │ │ ├── lpc.h │ │ ├── resampler.h │ │ ├── riff.h │ │ ├── stack_alloc.h │ │ └── tarray.h ├── pkg-config.pc.in ├── src │ ├── allegro │ │ ├── alplay.c │ │ ├── datduh.c │ │ ├── datit.c │ │ ├── datitq.c │ │ ├── datmod.c │ │ ├── datmodq.c │ │ ├── dats3m.c │ │ ├── dats3mq.c │ │ ├── datunld.c │ │ ├── datxm.c │ │ ├── datxmq.c │ │ └── packfile.c │ ├── core │ │ ├── atexit.c │ │ ├── duhlen.c │ │ ├── duhtag.c │ │ ├── dumbfile.c │ │ ├── loadduh.c │ │ ├── makeduh.c │ │ ├── rawsig.c │ │ ├── readduh.c │ │ ├── register.c │ │ ├── rendduh.c │ │ ├── rendsig.c │ │ └── unload.c │ ├── helpers │ │ ├── barray.c │ │ ├── clickrem.c │ │ ├── lpc.c │ │ ├── memfile.c │ │ ├── resamp2.inc │ │ ├── resamp3.inc │ │ ├── resample.c │ │ ├── resample.inc │ │ ├── resampler.c │ │ ├── riff.c │ │ ├── sampbuf.c │ │ ├── silence.c │ │ ├── stdfile.c │ │ └── tarray.c │ └── it │ │ ├── itload.c │ │ ├── itload2.c │ │ ├── itmisc.c │ │ ├── itorder.c │ │ ├── itread.c │ │ ├── itread2.c │ │ ├── itrender.c │ │ ├── itunload.c │ │ ├── load669.c │ │ ├── load6692.c │ │ ├── loadamf.c │ │ ├── loadamf2.c │ │ ├── loadany.c │ │ ├── loadany2.c │ │ ├── loadasy.c │ │ ├── loadasy2.c │ │ ├── loadmod.c │ │ ├── loadmod2.c │ │ ├── loadmtm.c │ │ ├── loadmtm2.c │ │ ├── loadokt.c │ │ ├── loadokt2.c │ │ ├── loadoldpsm.c │ │ ├── loadoldpsm2.c │ │ ├── loadpsm.c │ │ ├── loadpsm2.c │ │ ├── loadptm.c │ │ ├── loadptm2.c │ │ ├── loadriff.c │ │ ├── loadriff2.c │ │ ├── loads3m.c │ │ ├── loads3m2.c │ │ ├── loadstm.c │ │ ├── loadstm2.c │ │ ├── loadxm.c │ │ ├── loadxm2.c │ │ ├── ptmeffect.c │ │ ├── read669.c │ │ ├── read6692.c │ │ ├── readam.c │ │ ├── readamf.c │ │ ├── readamf2.c │ │ ├── readany.c │ │ ├── readany2.c │ │ ├── readasy.c │ │ ├── readdsmf.c │ │ ├── readmod.c │ │ ├── readmod2.c │ │ ├── readmtm.c │ │ ├── readokt.c │ │ ├── readokt2.c │ │ ├── readoldpsm.c │ │ ├── readpsm.c │ │ ├── readptm.c │ │ ├── readriff.c │ │ ├── reads3m.c │ │ ├── reads3m2.c │ │ ├── readstm.c │ │ ├── readstm2.c │ │ ├── readxm.c │ │ ├── readxm2.c │ │ └── xmeffect.c └── vc6 │ ├── .gitignore │ └── dumb │ ├── dumb.vcproj │ ├── dumb.vcxproj │ └── dumb.vcxproj.filters ├── flac-1.4.3 ├── AUTHORS ├── CHANGELOG.md ├── CMakeLists.txt ├── COPYING.FDL ├── COPYING.GPL ├── COPYING.LGPL ├── COPYING.Xiph ├── Makefile.am ├── Makefile.in ├── PaxHeaders │ ├── AUTHORS │ ├── CHANGELOG.md │ ├── CMakeLists.txt │ ├── COPYING.FDL │ ├── COPYING.GPL │ ├── COPYING.LGPL │ ├── COPYING.Xiph │ ├── Makefile.am │ ├── Makefile.in │ ├── README.md │ ├── aclocal.m4 │ ├── ar-lib │ ├── autogen.sh │ ├── cmake │ ├── compile │ ├── config.cmake.h.in │ ├── config.guess │ ├── config.h.in │ ├── config.rpath │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── depcomp │ ├── doc │ ├── examples │ ├── flac-config.cmake.in │ ├── include │ ├── install-sh │ ├── ltmain.sh │ ├── m4 │ ├── man │ ├── microbench │ ├── missing │ ├── oss-fuzz │ ├── src │ └── test ├── README.md ├── aclocal.m4 ├── ar-lib ├── autogen.sh ├── cmake │ ├── CheckA64NEON.c.in │ ├── CheckA64NEON.cmake │ ├── CheckCPUArch.c.in │ ├── CheckCPUArch.cmake │ ├── FindOgg.cmake │ ├── PaxHeaders │ │ ├── CheckA64NEON.c.in │ │ ├── CheckA64NEON.cmake │ │ ├── CheckCPUArch.c.in │ │ ├── CheckCPUArch.cmake │ │ ├── FindOgg.cmake │ │ └── UseSystemExtensions.cmake │ └── UseSystemExtensions.cmake ├── compile ├── config.cmake.h.in ├── config.guess ├── config.h.in ├── config.rpath ├── config.sub ├── configure ├── configure.ac ├── depcomp ├── doc │ ├── CMakeLists.txt │ ├── Doxyfile.in │ ├── FLAC.tag │ ├── Makefile.am │ ├── Makefile.in │ ├── PaxHeaders │ │ ├── CMakeLists.txt │ │ ├── Doxyfile.in │ │ ├── FLAC.tag │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── api │ │ ├── doxygen.footer.html │ │ ├── images │ │ └── isoflac.txt │ ├── api │ │ ├── FLAC_09_09_2all_8h_source.html │ │ ├── FLAC_09_09_2export_8h.html │ │ ├── FLAC_09_09_2export_8h_source.html │ │ ├── FLAC_09_09_2metadata_8h.html │ │ ├── FLAC_09_09_2metadata_8h_source.html │ │ ├── FLAC_2all_8h_source.html │ │ ├── FLAC_2export_8h.html │ │ ├── FLAC_2export_8h_source.html │ │ ├── FLAC_2metadata_8h.html │ │ ├── FLAC_2metadata_8h_source.html │ │ ├── PaxHeaders │ │ │ ├── FLAC_09_09_2all_8h_source.html │ │ │ ├── FLAC_09_09_2export_8h.html │ │ │ ├── FLAC_09_09_2export_8h_source.html │ │ │ ├── FLAC_09_09_2metadata_8h.html │ │ │ ├── FLAC_09_09_2metadata_8h_source.html │ │ │ ├── FLAC_2all_8h_source.html │ │ │ ├── FLAC_2export_8h.html │ │ │ ├── FLAC_2export_8h_source.html │ │ │ ├── FLAC_2metadata_8h.html │ │ │ ├── FLAC_2metadata_8h_source.html │ │ │ ├── annotated.html │ │ │ ├── assert_8h_source.html │ │ │ ├── bc_s.png │ │ │ ├── bdwn.png │ │ │ ├── callback_8h.html │ │ │ ├── callback_8h_source.html │ │ │ ├── classFLAC_1_1Decoder_1_1File-members.html │ │ │ ├── classFLAC_1_1Decoder_1_1File.html │ │ │ ├── classFLAC_1_1Decoder_1_1File.png │ │ │ ├── classFLAC_1_1Decoder_1_1Stream-members.html │ │ │ ├── classFLAC_1_1Decoder_1_1Stream.html │ │ │ ├── classFLAC_1_1Decoder_1_1Stream.png │ │ │ ├── classFLAC_1_1Decoder_1_1Stream_1_1State-members.html │ │ │ ├── classFLAC_1_1Decoder_1_1Stream_1_1State.html │ │ │ ├── classFLAC_1_1Encoder_1_1File-members.html │ │ │ ├── classFLAC_1_1Encoder_1_1File.html │ │ │ ├── classFLAC_1_1Encoder_1_1File.png │ │ │ ├── classFLAC_1_1Encoder_1_1Stream-members.html │ │ │ ├── classFLAC_1_1Encoder_1_1Stream.html │ │ │ ├── classFLAC_1_1Encoder_1_1Stream.png │ │ │ ├── classFLAC_1_1Encoder_1_1Stream_1_1State-members.html │ │ │ ├── classFLAC_1_1Encoder_1_1Stream_1_1State.html │ │ │ ├── classFLAC_1_1Metadata_1_1Application-members.html │ │ │ ├── classFLAC_1_1Metadata_1_1Application.html │ │ │ ├── classFLAC_1_1Metadata_1_1Application.png │ │ │ ├── classFLAC_1_1Metadata_1_1Chain-members.html │ │ │ ├── classFLAC_1_1Metadata_1_1Chain.html │ │ │ ├── classFLAC_1_1Metadata_1_1Chain_1_1Status-members.html │ │ │ ├── classFLAC_1_1Metadata_1_1Chain_1_1Status.html │ │ │ ├── classFLAC_1_1Metadata_1_1CueSheet-members.html │ │ │ ├── classFLAC_1_1Metadata_1_1CueSheet.html │ │ │ ├── classFLAC_1_1Metadata_1_1CueSheet.png │ │ │ ├── classFLAC_1_1Metadata_1_1CueSheet_1_1Track-members.html │ │ │ ├── classFLAC_1_1Metadata_1_1CueSheet_1_1Track.html │ │ │ ├── classFLAC_1_1Metadata_1_1Iterator-members.html │ │ │ ├── classFLAC_1_1Metadata_1_1Iterator.html │ │ │ ├── classFLAC_1_1Metadata_1_1Padding-members.html │ │ │ ├── classFLAC_1_1Metadata_1_1Padding.html │ │ │ ├── classFLAC_1_1Metadata_1_1Padding.png │ │ │ ├── classFLAC_1_1Metadata_1_1Picture-members.html │ │ │ ├── classFLAC_1_1Metadata_1_1Picture.html │ │ │ ├── classFLAC_1_1Metadata_1_1Picture.png │ │ │ ├── classFLAC_1_1Metadata_1_1Prototype-members.html │ │ │ ├── classFLAC_1_1Metadata_1_1Prototype.html │ │ │ ├── classFLAC_1_1Metadata_1_1Prototype.png │ │ │ ├── classFLAC_1_1Metadata_1_1SeekTable-members.html │ │ │ ├── classFLAC_1_1Metadata_1_1SeekTable.html │ │ │ ├── classFLAC_1_1Metadata_1_1SeekTable.png │ │ │ ├── classFLAC_1_1Metadata_1_1SimpleIterator-members.html │ │ │ ├── classFLAC_1_1Metadata_1_1SimpleIterator.html │ │ │ ├── classFLAC_1_1Metadata_1_1SimpleIterator_1_1Status-members.html │ │ │ ├── classFLAC_1_1Metadata_1_1SimpleIterator_1_1Status.html │ │ │ ├── classFLAC_1_1Metadata_1_1StreamInfo-members.html │ │ │ ├── classFLAC_1_1Metadata_1_1StreamInfo.html │ │ │ ├── classFLAC_1_1Metadata_1_1StreamInfo.png │ │ │ ├── classFLAC_1_1Metadata_1_1Unknown-members.html │ │ │ ├── classFLAC_1_1Metadata_1_1Unknown.html │ │ │ ├── classFLAC_1_1Metadata_1_1Unknown.png │ │ │ ├── classFLAC_1_1Metadata_1_1VorbisComment-members.html │ │ │ ├── classFLAC_1_1Metadata_1_1VorbisComment.html │ │ │ ├── classFLAC_1_1Metadata_1_1VorbisComment.png │ │ │ ├── classFLAC_1_1Metadata_1_1VorbisComment_1_1Entry-members.html │ │ │ ├── classFLAC_1_1Metadata_1_1VorbisComment_1_1Entry.html │ │ │ ├── classes.html │ │ │ ├── closed.png │ │ │ ├── decoder_8h.html │ │ │ ├── decoder_8h_source.html │ │ │ ├── dir_1982b5890de532b4beef7221dae776e2.html │ │ │ ├── dir_527642952c2881b3e5b36abb4a29ebef.html │ │ │ ├── dir_d44c64559bbebec7f509842c48db8b23.html │ │ │ ├── doc.png │ │ │ ├── doxygen.css │ │ │ ├── doxygen.svg │ │ │ ├── dynsections.js │ │ │ ├── encoder_8h.html │ │ │ ├── encoder_8h_source.html │ │ │ ├── files.html │ │ │ ├── folderclosed.png │ │ │ ├── folderopen.png │ │ │ ├── format_8h.html │ │ │ ├── format_8h_source.html │ │ │ ├── functions.html │ │ │ ├── functions_b.html │ │ │ ├── functions_c.html │ │ │ ├── functions_d.html │ │ │ ├── functions_e.html │ │ │ ├── functions_f.html │ │ │ ├── functions_func.html │ │ │ ├── functions_func_c.html │ │ │ ├── functions_func_d.html │ │ │ ├── functions_func_e.html │ │ │ ├── functions_func_f.html │ │ │ ├── functions_func_g.html │ │ │ ├── functions_func_i.html │ │ │ ├── functions_func_l.html │ │ │ ├── functions_func_m.html │ │ │ ├── functions_func_n.html │ │ │ ├── functions_func_o.html │ │ │ ├── functions_func_p.html │ │ │ ├── functions_func_r.html │ │ │ ├── functions_func_s.html │ │ │ ├── functions_func_t.html │ │ │ ├── functions_func_u.html │ │ │ ├── functions_func_v.html │ │ │ ├── functions_func_w.html │ │ │ ├── functions_func_~.html │ │ │ ├── functions_g.html │ │ │ ├── functions_h.html │ │ │ ├── functions_i.html │ │ │ ├── functions_l.html │ │ │ ├── functions_m.html │ │ │ ├── functions_n.html │ │ │ ├── functions_o.html │ │ │ ├── functions_p.html │ │ │ ├── functions_q.html │ │ │ ├── functions_r.html │ │ │ ├── functions_s.html │ │ │ ├── functions_t.html │ │ │ ├── functions_u.html │ │ │ ├── functions_v.html │ │ │ ├── functions_vars.html │ │ │ ├── functions_w.html │ │ │ ├── functions_~.html │ │ │ ├── globals.html │ │ │ ├── globals_defs.html │ │ │ ├── globals_enum.html │ │ │ ├── globals_eval.html │ │ │ ├── globals_func.html │ │ │ ├── globals_type.html │ │ │ ├── globals_vars.html │ │ │ ├── group__flac.html │ │ │ ├── group__flac__callbacks.html │ │ │ ├── group__flac__decoder.html │ │ │ ├── group__flac__encoder.html │ │ │ ├── group__flac__export.html │ │ │ ├── group__flac__format.html │ │ │ ├── group__flac__metadata.html │ │ │ ├── group__flac__metadata__level0.html │ │ │ ├── group__flac__metadata__level1.html │ │ │ ├── group__flac__metadata__level2.html │ │ │ ├── group__flac__metadata__object.html │ │ │ ├── group__flac__stream__decoder.html │ │ │ ├── group__flac__stream__encoder.html │ │ │ ├── group__flacpp.html │ │ │ ├── group__flacpp__decoder.html │ │ │ ├── group__flacpp__encoder.html │ │ │ ├── group__flacpp__export.html │ │ │ ├── group__flacpp__metadata.html │ │ │ ├── group__flacpp__metadata__level0.html │ │ │ ├── group__flacpp__metadata__level1.html │ │ │ ├── group__flacpp__metadata__level2.html │ │ │ ├── group__flacpp__metadata__object.html │ │ │ ├── group__porting.html │ │ │ ├── group__porting__1__1__2__to__1__1__3.html │ │ │ ├── group__porting__1__1__3__to__1__1__4.html │ │ │ ├── group__porting__1__1__4__to__1__2__0.html │ │ │ ├── group__porting__1__3__4__to__1__4__0.html │ │ │ ├── hierarchy.html │ │ │ ├── index.html │ │ │ ├── jquery.js │ │ │ ├── menu.js │ │ │ ├── menudata.js │ │ │ ├── modules.html │ │ │ ├── nav_f.png │ │ │ ├── nav_g.png │ │ │ ├── nav_h.png │ │ │ ├── open.png │ │ │ ├── ordinals_8h_source.html │ │ │ ├── splitbar.png │ │ │ ├── stream__decoder_8h.html │ │ │ ├── stream__decoder_8h_source.html │ │ │ ├── stream__encoder_8h.html │ │ │ ├── stream__encoder_8h_source.html │ │ │ ├── structFLAC____EntropyCodingMethod-members.html │ │ │ ├── structFLAC____EntropyCodingMethod.html │ │ │ ├── structFLAC____EntropyCodingMethod__PartitionedRice-members.html │ │ │ ├── structFLAC____EntropyCodingMethod__PartitionedRice.html │ │ │ ├── structFLAC____EntropyCodingMethod__PartitionedRiceContents-members.htm │ │ │ ├── structFLAC____EntropyCodingMethod__PartitionedRiceContents.html │ │ │ ├── structFLAC____Frame-members.html │ │ │ ├── structFLAC____Frame.html │ │ │ ├── structFLAC____FrameFooter-members.html │ │ │ ├── structFLAC____FrameFooter.html │ │ │ ├── structFLAC____FrameHeader-members.html │ │ │ ├── structFLAC____FrameHeader.html │ │ │ ├── structFLAC____IOCallbacks-members.html │ │ │ ├── structFLAC____IOCallbacks.html │ │ │ ├── structFLAC____StreamDecoder-members.html │ │ │ ├── structFLAC____StreamDecoder.html │ │ │ ├── structFLAC____StreamEncoder-members.html │ │ │ ├── structFLAC____StreamEncoder.html │ │ │ ├── structFLAC____StreamMetadata-members.html │ │ │ ├── structFLAC____StreamMetadata.html │ │ │ ├── structFLAC____StreamMetadata__Application-members.html │ │ │ ├── structFLAC____StreamMetadata__Application.html │ │ │ ├── structFLAC____StreamMetadata__CueSheet-members.html │ │ │ ├── structFLAC____StreamMetadata__CueSheet.html │ │ │ ├── structFLAC____StreamMetadata__CueSheet__Index-members.html │ │ │ ├── structFLAC____StreamMetadata__CueSheet__Index.html │ │ │ ├── structFLAC____StreamMetadata__CueSheet__Track-members.html │ │ │ ├── structFLAC____StreamMetadata__CueSheet__Track.html │ │ │ ├── structFLAC____StreamMetadata__Padding-members.html │ │ │ ├── structFLAC____StreamMetadata__Padding.html │ │ │ ├── structFLAC____StreamMetadata__Picture-members.html │ │ │ ├── structFLAC____StreamMetadata__Picture.html │ │ │ ├── structFLAC____StreamMetadata__SeekPoint-members.html │ │ │ ├── structFLAC____StreamMetadata__SeekPoint.html │ │ │ ├── structFLAC____StreamMetadata__SeekTable-members.html │ │ │ ├── structFLAC____StreamMetadata__SeekTable.html │ │ │ ├── structFLAC____StreamMetadata__StreamInfo-members.html │ │ │ ├── structFLAC____StreamMetadata__StreamInfo.html │ │ │ ├── structFLAC____StreamMetadata__Unknown-members.html │ │ │ ├── structFLAC____StreamMetadata__Unknown.html │ │ │ ├── structFLAC____StreamMetadata__VorbisComment-members.html │ │ │ ├── structFLAC____StreamMetadata__VorbisComment.html │ │ │ ├── structFLAC____StreamMetadata__VorbisComment__Entry-members.html │ │ │ ├── structFLAC____StreamMetadata__VorbisComment__Entry.html │ │ │ ├── structFLAC____Subframe-members.html │ │ │ ├── structFLAC____Subframe.html │ │ │ ├── structFLAC____Subframe__Constant-members.html │ │ │ ├── structFLAC____Subframe__Constant.html │ │ │ ├── structFLAC____Subframe__Fixed-members.html │ │ │ ├── structFLAC____Subframe__Fixed.html │ │ │ ├── structFLAC____Subframe__LPC-members.html │ │ │ ├── structFLAC____Subframe__LPC.html │ │ │ ├── structFLAC____Subframe__Verbatim-members.html │ │ │ ├── structFLAC____Subframe__Verbatim.html │ │ │ ├── sync_off.png │ │ │ ├── sync_on.png │ │ │ ├── tab_a.png │ │ │ ├── tab_b.png │ │ │ ├── tab_h.png │ │ │ ├── tab_s.png │ │ │ └── tabs.css │ │ ├── annotated.html │ │ ├── assert_8h_source.html │ │ ├── bc_s.png │ │ ├── bdwn.png │ │ ├── callback_8h.html │ │ ├── callback_8h_source.html │ │ ├── classFLAC_1_1Decoder_1_1File-members.html │ │ ├── classFLAC_1_1Decoder_1_1File.html │ │ ├── classFLAC_1_1Decoder_1_1File.png │ │ ├── classFLAC_1_1Decoder_1_1Stream-members.html │ │ ├── classFLAC_1_1Decoder_1_1Stream.html │ │ ├── classFLAC_1_1Decoder_1_1Stream.png │ │ ├── classFLAC_1_1Decoder_1_1Stream_1_1State-members.html │ │ ├── classFLAC_1_1Decoder_1_1Stream_1_1State.html │ │ ├── classFLAC_1_1Encoder_1_1File-members.html │ │ ├── classFLAC_1_1Encoder_1_1File.html │ │ ├── classFLAC_1_1Encoder_1_1File.png │ │ ├── classFLAC_1_1Encoder_1_1Stream-members.html │ │ ├── classFLAC_1_1Encoder_1_1Stream.html │ │ ├── classFLAC_1_1Encoder_1_1Stream.png │ │ ├── classFLAC_1_1Encoder_1_1Stream_1_1State-members.html │ │ ├── classFLAC_1_1Encoder_1_1Stream_1_1State.html │ │ ├── classFLAC_1_1Metadata_1_1Application-members.html │ │ ├── classFLAC_1_1Metadata_1_1Application.html │ │ ├── classFLAC_1_1Metadata_1_1Application.png │ │ ├── classFLAC_1_1Metadata_1_1Chain-members.html │ │ ├── classFLAC_1_1Metadata_1_1Chain.html │ │ ├── classFLAC_1_1Metadata_1_1Chain_1_1Status-members.html │ │ ├── classFLAC_1_1Metadata_1_1Chain_1_1Status.html │ │ ├── classFLAC_1_1Metadata_1_1CueSheet-members.html │ │ ├── classFLAC_1_1Metadata_1_1CueSheet.html │ │ ├── classFLAC_1_1Metadata_1_1CueSheet.png │ │ ├── classFLAC_1_1Metadata_1_1CueSheet_1_1Track-members.html │ │ ├── classFLAC_1_1Metadata_1_1CueSheet_1_1Track.html │ │ ├── classFLAC_1_1Metadata_1_1Iterator-members.html │ │ ├── classFLAC_1_1Metadata_1_1Iterator.html │ │ ├── classFLAC_1_1Metadata_1_1Padding-members.html │ │ ├── classFLAC_1_1Metadata_1_1Padding.html │ │ ├── classFLAC_1_1Metadata_1_1Padding.png │ │ ├── classFLAC_1_1Metadata_1_1Picture-members.html │ │ ├── classFLAC_1_1Metadata_1_1Picture.html │ │ ├── classFLAC_1_1Metadata_1_1Picture.png │ │ ├── classFLAC_1_1Metadata_1_1Prototype-members.html │ │ ├── classFLAC_1_1Metadata_1_1Prototype.html │ │ ├── classFLAC_1_1Metadata_1_1Prototype.png │ │ ├── classFLAC_1_1Metadata_1_1SeekTable-members.html │ │ ├── classFLAC_1_1Metadata_1_1SeekTable.html │ │ ├── classFLAC_1_1Metadata_1_1SeekTable.png │ │ ├── classFLAC_1_1Metadata_1_1SimpleIterator-members.html │ │ ├── classFLAC_1_1Metadata_1_1SimpleIterator.html │ │ ├── classFLAC_1_1Metadata_1_1SimpleIterator_1_1Status-members.html │ │ ├── classFLAC_1_1Metadata_1_1SimpleIterator_1_1Status.html │ │ ├── classFLAC_1_1Metadata_1_1StreamInfo-members.html │ │ ├── classFLAC_1_1Metadata_1_1StreamInfo.html │ │ ├── classFLAC_1_1Metadata_1_1StreamInfo.png │ │ ├── classFLAC_1_1Metadata_1_1Unknown-members.html │ │ ├── classFLAC_1_1Metadata_1_1Unknown.html │ │ ├── classFLAC_1_1Metadata_1_1Unknown.png │ │ ├── classFLAC_1_1Metadata_1_1VorbisComment-members.html │ │ ├── classFLAC_1_1Metadata_1_1VorbisComment.html │ │ ├── classFLAC_1_1Metadata_1_1VorbisComment.png │ │ ├── classFLAC_1_1Metadata_1_1VorbisComment_1_1Entry-members.html │ │ ├── classFLAC_1_1Metadata_1_1VorbisComment_1_1Entry.html │ │ ├── classes.html │ │ ├── closed.png │ │ ├── decoder_8h.html │ │ ├── decoder_8h_source.html │ │ ├── dir_1982b5890de532b4beef7221dae776e2.html │ │ ├── dir_527642952c2881b3e5b36abb4a29ebef.html │ │ ├── dir_d44c64559bbebec7f509842c48db8b23.html │ │ ├── doc.png │ │ ├── doxygen.css │ │ ├── doxygen.svg │ │ ├── dynsections.js │ │ ├── encoder_8h.html │ │ ├── encoder_8h_source.html │ │ ├── files.html │ │ ├── folderclosed.png │ │ ├── folderopen.png │ │ ├── format_8h.html │ │ ├── format_8h_source.html │ │ ├── functions.html │ │ ├── functions_b.html │ │ ├── functions_c.html │ │ ├── functions_d.html │ │ ├── functions_e.html │ │ ├── functions_f.html │ │ ├── functions_func.html │ │ ├── functions_func_c.html │ │ ├── functions_func_d.html │ │ ├── functions_func_e.html │ │ ├── functions_func_f.html │ │ ├── functions_func_g.html │ │ ├── functions_func_i.html │ │ ├── functions_func_l.html │ │ ├── functions_func_m.html │ │ ├── functions_func_n.html │ │ ├── functions_func_o.html │ │ ├── functions_func_p.html │ │ ├── functions_func_r.html │ │ ├── functions_func_s.html │ │ ├── functions_func_t.html │ │ ├── functions_func_u.html │ │ ├── functions_func_v.html │ │ ├── functions_func_w.html │ │ ├── functions_func_~.html │ │ ├── functions_g.html │ │ ├── functions_h.html │ │ ├── functions_i.html │ │ ├── functions_l.html │ │ ├── functions_m.html │ │ ├── functions_n.html │ │ ├── functions_o.html │ │ ├── functions_p.html │ │ ├── functions_q.html │ │ ├── functions_r.html │ │ ├── functions_s.html │ │ ├── functions_t.html │ │ ├── functions_u.html │ │ ├── functions_v.html │ │ ├── functions_vars.html │ │ ├── functions_w.html │ │ ├── functions_~.html │ │ ├── globals.html │ │ ├── globals_defs.html │ │ ├── globals_enum.html │ │ ├── globals_eval.html │ │ ├── globals_func.html │ │ ├── globals_type.html │ │ ├── globals_vars.html │ │ ├── group__flac.html │ │ ├── group__flac__callbacks.html │ │ ├── group__flac__decoder.html │ │ ├── group__flac__encoder.html │ │ ├── group__flac__export.html │ │ ├── group__flac__format.html │ │ ├── group__flac__metadata.html │ │ ├── group__flac__metadata__level0.html │ │ ├── group__flac__metadata__level1.html │ │ ├── group__flac__metadata__level2.html │ │ ├── group__flac__metadata__object.html │ │ ├── group__flac__stream__decoder.html │ │ ├── group__flac__stream__encoder.html │ │ ├── group__flacpp.html │ │ ├── group__flacpp__decoder.html │ │ ├── group__flacpp__encoder.html │ │ ├── group__flacpp__export.html │ │ ├── group__flacpp__metadata.html │ │ ├── group__flacpp__metadata__level0.html │ │ ├── group__flacpp__metadata__level1.html │ │ ├── group__flacpp__metadata__level2.html │ │ ├── group__flacpp__metadata__object.html │ │ ├── group__porting.html │ │ ├── group__porting__1__1__2__to__1__1__3.html │ │ ├── group__porting__1__1__3__to__1__1__4.html │ │ ├── group__porting__1__1__4__to__1__2__0.html │ │ ├── group__porting__1__3__4__to__1__4__0.html │ │ ├── hierarchy.html │ │ ├── index.html │ │ ├── jquery.js │ │ ├── menu.js │ │ ├── menudata.js │ │ ├── modules.html │ │ ├── nav_f.png │ │ ├── nav_g.png │ │ ├── nav_h.png │ │ ├── open.png │ │ ├── ordinals_8h_source.html │ │ ├── splitbar.png │ │ ├── stream__decoder_8h.html │ │ ├── stream__decoder_8h_source.html │ │ ├── stream__encoder_8h.html │ │ ├── stream__encoder_8h_source.html │ │ ├── structFLAC____EntropyCodingMethod-members.html │ │ ├── structFLAC____EntropyCodingMethod.html │ │ ├── structFLAC____EntropyCodingMethod__PartitionedRice-members.html │ │ ├── structFLAC____EntropyCodingMethod__PartitionedRice.html │ │ ├── structFLAC____EntropyCodingMethod__PartitionedRiceContents-members.html │ │ ├── structFLAC____EntropyCodingMethod__PartitionedRiceContents.html │ │ ├── structFLAC____Frame-members.html │ │ ├── structFLAC____Frame.html │ │ ├── structFLAC____FrameFooter-members.html │ │ ├── structFLAC____FrameFooter.html │ │ ├── structFLAC____FrameHeader-members.html │ │ ├── structFLAC____FrameHeader.html │ │ ├── structFLAC____IOCallbacks-members.html │ │ ├── structFLAC____IOCallbacks.html │ │ ├── structFLAC____StreamDecoder-members.html │ │ ├── structFLAC____StreamDecoder.html │ │ ├── structFLAC____StreamEncoder-members.html │ │ ├── structFLAC____StreamEncoder.html │ │ ├── structFLAC____StreamMetadata-members.html │ │ ├── structFLAC____StreamMetadata.html │ │ ├── structFLAC____StreamMetadata__Application-members.html │ │ ├── structFLAC____StreamMetadata__Application.html │ │ ├── structFLAC____StreamMetadata__CueSheet-members.html │ │ ├── structFLAC____StreamMetadata__CueSheet.html │ │ ├── structFLAC____StreamMetadata__CueSheet__Index-members.html │ │ ├── structFLAC____StreamMetadata__CueSheet__Index.html │ │ ├── structFLAC____StreamMetadata__CueSheet__Track-members.html │ │ ├── structFLAC____StreamMetadata__CueSheet__Track.html │ │ ├── structFLAC____StreamMetadata__Padding-members.html │ │ ├── structFLAC____StreamMetadata__Padding.html │ │ ├── structFLAC____StreamMetadata__Picture-members.html │ │ ├── structFLAC____StreamMetadata__Picture.html │ │ ├── structFLAC____StreamMetadata__SeekPoint-members.html │ │ ├── structFLAC____StreamMetadata__SeekPoint.html │ │ ├── structFLAC____StreamMetadata__SeekTable-members.html │ │ ├── structFLAC____StreamMetadata__SeekTable.html │ │ ├── structFLAC____StreamMetadata__StreamInfo-members.html │ │ ├── structFLAC____StreamMetadata__StreamInfo.html │ │ ├── structFLAC____StreamMetadata__Unknown-members.html │ │ ├── structFLAC____StreamMetadata__Unknown.html │ │ ├── structFLAC____StreamMetadata__VorbisComment-members.html │ │ ├── structFLAC____StreamMetadata__VorbisComment.html │ │ ├── structFLAC____StreamMetadata__VorbisComment__Entry-members.html │ │ ├── structFLAC____StreamMetadata__VorbisComment__Entry.html │ │ ├── structFLAC____Subframe-members.html │ │ ├── structFLAC____Subframe.html │ │ ├── structFLAC____Subframe__Constant-members.html │ │ ├── structFLAC____Subframe__Constant.html │ │ ├── structFLAC____Subframe__Fixed-members.html │ │ ├── structFLAC____Subframe__Fixed.html │ │ ├── structFLAC____Subframe__LPC-members.html │ │ ├── structFLAC____Subframe__LPC.html │ │ ├── structFLAC____Subframe__Verbatim-members.html │ │ ├── structFLAC____Subframe__Verbatim.html │ │ ├── sync_off.png │ │ ├── sync_on.png │ │ ├── tab_a.png │ │ ├── tab_b.png │ │ ├── tab_h.png │ │ ├── tab_s.png │ │ └── tabs.css │ ├── doxygen.footer.html │ ├── images │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── PaxHeaders │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── logo.svg │ │ │ └── logo130.gif │ │ ├── logo.svg │ │ └── logo130.gif │ └── isoflac.txt ├── examples │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── Makefile.in │ ├── PaxHeaders │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── c │ │ └── cpp │ ├── README │ ├── c │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── PaxHeaders │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── decode │ │ │ └── encode │ │ ├── decode │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── PaxHeaders │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ └── file │ │ │ └── file │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── PaxHeaders │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ └── main.c │ │ │ │ └── main.c │ │ └── encode │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── PaxHeaders │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── file │ │ │ └── file │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── PaxHeaders │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── main.c │ │ │ └── main.c │ └── cpp │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── PaxHeaders │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── decode │ │ └── encode │ │ ├── decode │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── PaxHeaders │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── file │ │ └── file │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── PaxHeaders │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── main.cpp │ │ │ └── main.cpp │ │ └── encode │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── PaxHeaders │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ └── file │ │ └── file │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── PaxHeaders │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ └── main.cpp │ │ └── main.cpp ├── flac-config.cmake.in ├── include │ ├── FLAC++ │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── PaxHeaders │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── all.h │ │ │ ├── decoder.h │ │ │ ├── encoder.h │ │ │ ├── export.h │ │ │ └── metadata.h │ │ ├── all.h │ │ ├── decoder.h │ │ ├── encoder.h │ │ ├── export.h │ │ └── metadata.h │ ├── FLAC │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── PaxHeaders │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── all.h │ │ │ ├── assert.h │ │ │ ├── callback.h │ │ │ ├── export.h │ │ │ ├── format.h │ │ │ ├── metadata.h │ │ │ ├── ordinals.h │ │ │ ├── stream_decoder.h │ │ │ └── stream_encoder.h │ │ ├── all.h │ │ ├── assert.h │ │ ├── callback.h │ │ ├── export.h │ │ ├── format.h │ │ ├── metadata.h │ │ ├── ordinals.h │ │ ├── stream_decoder.h │ │ └── stream_encoder.h │ ├── Makefile.am │ ├── Makefile.in │ ├── PaxHeaders │ │ ├── FLAC │ │ ├── FLAC++ │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── share │ │ └── test_libs_common │ ├── share │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── PaxHeaders │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── alloc.h │ │ │ ├── compat.h │ │ │ ├── endswap.h │ │ │ ├── getopt.h │ │ │ ├── grabbag │ │ │ ├── grabbag.h │ │ │ ├── macros.h │ │ │ ├── private.h │ │ │ ├── replaygain_analysis.h │ │ │ ├── replaygain_synthesis.h │ │ │ ├── safe_str.h │ │ │ ├── utf8.h │ │ │ └── win_utf8_io.h │ │ ├── alloc.h │ │ ├── compat.h │ │ ├── endswap.h │ │ ├── getopt.h │ │ ├── grabbag.h │ │ ├── grabbag │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── PaxHeaders │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── cuesheet.h │ │ │ │ ├── file.h │ │ │ │ ├── picture.h │ │ │ │ ├── replaygain.h │ │ │ │ └── seektable.h │ │ │ ├── cuesheet.h │ │ │ ├── file.h │ │ │ ├── picture.h │ │ │ ├── replaygain.h │ │ │ └── seektable.h │ │ ├── macros.h │ │ ├── private.h │ │ ├── replaygain_analysis.h │ │ ├── replaygain_synthesis.h │ │ ├── safe_str.h │ │ ├── utf8.h │ │ └── win_utf8_io.h │ └── test_libs_common │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── PaxHeaders │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── file_utils_flac.h │ │ └── metadata_utils.h │ │ ├── file_utils_flac.h │ │ └── metadata_utils.h ├── install-sh ├── ltmain.sh ├── m4 │ ├── Makefile.am │ ├── Makefile.in │ ├── PaxHeaders │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── add_cflags.m4 │ │ ├── add_cxxflags.m4 │ │ ├── ax_add_fortify_source.m4 │ │ ├── ax_check_compile_flag.m4 │ │ ├── ax_check_enable_debug.m4 │ │ ├── bswap.m4 │ │ ├── clang.m4 │ │ ├── codeset.m4 │ │ ├── endian.m4 │ │ ├── gcc_version.m4 │ │ ├── iconv.m4 │ │ ├── lib-ld.m4 │ │ ├── lib-link.m4 │ │ ├── lib-prefix.m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ ├── lt~obsolete.m4 │ │ ├── ogg.m4 │ │ ├── really_gcc.m4 │ │ └── stack_protect.m4 │ ├── add_cflags.m4 │ ├── add_cxxflags.m4 │ ├── ax_add_fortify_source.m4 │ ├── ax_check_compile_flag.m4 │ ├── ax_check_enable_debug.m4 │ ├── bswap.m4 │ ├── clang.m4 │ ├── codeset.m4 │ ├── endian.m4 │ ├── gcc_version.m4 │ ├── iconv.m4 │ ├── lib-ld.m4 │ ├── lib-link.m4 │ ├── lib-prefix.m4 │ ├── libtool.m4 │ ├── ltoptions.m4 │ ├── ltsugar.m4 │ ├── ltversion.m4 │ ├── lt~obsolete.m4 │ ├── ogg.m4 │ ├── really_gcc.m4 │ └── stack_protect.m4 ├── man │ ├── Makefile.am │ ├── Makefile.in │ ├── PaxHeaders │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── flac.1 │ │ ├── flac.md │ │ ├── metaflac.1 │ │ └── metaflac.md │ ├── flac.1 │ ├── flac.md │ ├── metaflac.1 │ └── metaflac.md ├── microbench │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── Makefile.in │ ├── PaxHeaders │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── benchmark_residual.c │ │ ├── util.c │ │ └── util.h │ ├── benchmark_residual.c │ ├── util.c │ └── util.h ├── missing ├── oss-fuzz │ ├── Makefile.am │ ├── Makefile.in │ ├── PaxHeaders │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── Readme.md │ │ ├── common.h │ │ ├── decoder.cc │ │ ├── empty.cc │ │ ├── encoder.cc │ │ ├── encoder_v2.cc │ │ ├── fuzzer_encoder.dict │ │ ├── fuzzing │ │ ├── metadata.cc │ │ ├── reencoder.cc │ │ ├── seek.cc │ │ ├── tool_flac.c │ │ └── tool_metaflac.c │ ├── Readme.md │ ├── common.h │ ├── decoder.cc │ ├── empty.cc │ ├── encoder.cc │ ├── encoder_v2.cc │ ├── fuzzer_encoder.dict │ ├── fuzzing │ │ ├── PaxHeaders │ │ │ ├── datasource │ │ │ ├── exception.hpp │ │ │ ├── memory.hpp │ │ │ └── types.hpp │ │ ├── datasource │ │ │ ├── PaxHeaders │ │ │ │ ├── datasource.hpp │ │ │ │ └── id.hpp │ │ │ ├── datasource.hpp │ │ │ └── id.hpp │ │ ├── exception.hpp │ │ ├── memory.hpp │ │ └── types.hpp │ ├── metadata.cc │ ├── reencoder.cc │ ├── seek.cc │ ├── tool_flac.c │ └── tool_metaflac.c ├── src │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── Makefile.in │ ├── PaxHeaders │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── flac │ │ ├── libFLAC │ │ ├── libFLAC++ │ │ ├── metaflac │ │ ├── share │ │ ├── test_grabbag │ │ ├── test_libFLAC │ │ ├── test_libFLAC++ │ │ ├── test_libs_common │ │ ├── test_seeking │ │ ├── test_streams │ │ └── utils │ ├── flac │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── PaxHeaders │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── analyze.c │ │ │ ├── analyze.h │ │ │ ├── decode.c │ │ │ ├── decode.h │ │ │ ├── encode.c │ │ │ ├── encode.h │ │ │ ├── foreign_metadata.c │ │ │ ├── foreign_metadata.h │ │ │ ├── iffscan.c │ │ │ ├── local_string_utils.c │ │ │ ├── local_string_utils.h │ │ │ ├── main.c │ │ │ ├── utils.c │ │ │ ├── utils.h │ │ │ ├── version.rc │ │ │ ├── vorbiscomment.c │ │ │ └── vorbiscomment.h │ │ ├── analyze.c │ │ ├── analyze.h │ │ ├── decode.c │ │ ├── decode.h │ │ ├── encode.c │ │ ├── encode.h │ │ ├── foreign_metadata.c │ │ ├── foreign_metadata.h │ │ ├── iffscan.c │ │ ├── local_string_utils.c │ │ ├── local_string_utils.h │ │ ├── main.c │ │ ├── utils.c │ │ ├── utils.h │ │ ├── version.rc │ │ ├── vorbiscomment.c │ │ └── vorbiscomment.h │ ├── libFLAC++ │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── PaxHeaders │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── flac++.pc.in │ │ │ ├── libFLAC++.m4 │ │ │ ├── metadata.cpp │ │ │ ├── stream_decoder.cpp │ │ │ ├── stream_encoder.cpp │ │ │ └── version.rc │ │ ├── flac++.pc.in │ │ ├── libFLAC++.m4 │ │ ├── metadata.cpp │ │ ├── stream_decoder.cpp │ │ ├── stream_encoder.cpp │ │ └── version.rc │ ├── libFLAC │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── PaxHeaders │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── bitmath.c │ │ │ ├── bitreader.c │ │ │ ├── bitwriter.c │ │ │ ├── cpu.c │ │ │ ├── crc.c │ │ │ ├── deduplication │ │ │ ├── fixed.c │ │ │ ├── fixed_intrin_avx2.c │ │ │ ├── fixed_intrin_sse2.c │ │ │ ├── fixed_intrin_sse42.c │ │ │ ├── fixed_intrin_ssse3.c │ │ │ ├── flac.pc.in │ │ │ ├── float.c │ │ │ ├── format.c │ │ │ ├── include │ │ │ ├── libFLAC.m4 │ │ │ ├── lpc.c │ │ │ ├── lpc_intrin_avx2.c │ │ │ ├── lpc_intrin_fma.c │ │ │ ├── lpc_intrin_neon.c │ │ │ ├── lpc_intrin_sse2.c │ │ │ ├── lpc_intrin_sse41.c │ │ │ ├── md5.c │ │ │ ├── memory.c │ │ │ ├── metadata_iterators.c │ │ │ ├── metadata_object.c │ │ │ ├── ogg_decoder_aspect.c │ │ │ ├── ogg_encoder_aspect.c │ │ │ ├── ogg_helper.c │ │ │ ├── ogg_mapping.c │ │ │ ├── stream_decoder.c │ │ │ ├── stream_encoder.c │ │ │ ├── stream_encoder_framing.c │ │ │ ├── stream_encoder_intrin_avx2.c │ │ │ ├── stream_encoder_intrin_sse2.c │ │ │ ├── stream_encoder_intrin_ssse3.c │ │ │ ├── version.rc │ │ │ └── window.c │ │ ├── bitmath.c │ │ ├── bitreader.c │ │ ├── bitwriter.c │ │ ├── cpu.c │ │ ├── crc.c │ │ ├── deduplication │ │ │ ├── PaxHeaders │ │ │ │ ├── bitreader_read_rice_signed_block.c │ │ │ │ ├── lpc_compute_autocorrelation_intrin.c │ │ │ │ ├── lpc_compute_autocorrelation_intrin_neon.c │ │ │ │ └── lpc_compute_autocorrelation_intrin_sse2.c │ │ │ ├── bitreader_read_rice_signed_block.c │ │ │ ├── lpc_compute_autocorrelation_intrin.c │ │ │ ├── lpc_compute_autocorrelation_intrin_neon.c │ │ │ └── lpc_compute_autocorrelation_intrin_sse2.c │ │ ├── fixed.c │ │ ├── fixed_intrin_avx2.c │ │ ├── fixed_intrin_sse2.c │ │ ├── fixed_intrin_sse42.c │ │ ├── fixed_intrin_ssse3.c │ │ ├── flac.pc.in │ │ ├── float.c │ │ ├── format.c │ │ ├── include │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── PaxHeaders │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── private │ │ │ │ └── protected │ │ │ ├── private │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── PaxHeaders │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── all.h │ │ │ │ │ ├── bitmath.h │ │ │ │ │ ├── bitreader.h │ │ │ │ │ ├── bitwriter.h │ │ │ │ │ ├── cpu.h │ │ │ │ │ ├── crc.h │ │ │ │ │ ├── fixed.h │ │ │ │ │ ├── float.h │ │ │ │ │ ├── format.h │ │ │ │ │ ├── lpc.h │ │ │ │ │ ├── macros.h │ │ │ │ │ ├── md5.h │ │ │ │ │ ├── memory.h │ │ │ │ │ ├── metadata.h │ │ │ │ │ ├── ogg_decoder_aspect.h │ │ │ │ │ ├── ogg_encoder_aspect.h │ │ │ │ │ ├── ogg_helper.h │ │ │ │ │ ├── ogg_mapping.h │ │ │ │ │ ├── stream_encoder.h │ │ │ │ │ ├── stream_encoder_framing.h │ │ │ │ │ └── window.h │ │ │ │ ├── all.h │ │ │ │ ├── bitmath.h │ │ │ │ ├── bitreader.h │ │ │ │ ├── bitwriter.h │ │ │ │ ├── cpu.h │ │ │ │ ├── crc.h │ │ │ │ ├── fixed.h │ │ │ │ ├── float.h │ │ │ │ ├── format.h │ │ │ │ ├── lpc.h │ │ │ │ ├── macros.h │ │ │ │ ├── md5.h │ │ │ │ ├── memory.h │ │ │ │ ├── metadata.h │ │ │ │ ├── ogg_decoder_aspect.h │ │ │ │ ├── ogg_encoder_aspect.h │ │ │ │ ├── ogg_helper.h │ │ │ │ ├── ogg_mapping.h │ │ │ │ ├── stream_encoder.h │ │ │ │ ├── stream_encoder_framing.h │ │ │ │ └── window.h │ │ │ └── protected │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── PaxHeaders │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── all.h │ │ │ │ ├── stream_decoder.h │ │ │ │ └── stream_encoder.h │ │ │ │ ├── all.h │ │ │ │ ├── stream_decoder.h │ │ │ │ └── stream_encoder.h │ │ ├── libFLAC.m4 │ │ ├── lpc.c │ │ ├── lpc_intrin_avx2.c │ │ ├── lpc_intrin_fma.c │ │ ├── lpc_intrin_neon.c │ │ ├── lpc_intrin_sse2.c │ │ ├── lpc_intrin_sse41.c │ │ ├── md5.c │ │ ├── memory.c │ │ ├── metadata_iterators.c │ │ ├── metadata_object.c │ │ ├── ogg_decoder_aspect.c │ │ ├── ogg_encoder_aspect.c │ │ ├── ogg_helper.c │ │ ├── ogg_mapping.c │ │ ├── stream_decoder.c │ │ ├── stream_encoder.c │ │ ├── stream_encoder_framing.c │ │ ├── stream_encoder_intrin_avx2.c │ │ ├── stream_encoder_intrin_sse2.c │ │ ├── stream_encoder_intrin_ssse3.c │ │ ├── version.rc │ │ └── window.c │ ├── metaflac │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── PaxHeaders │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── main.c │ │ │ ├── operations.c │ │ │ ├── operations.h │ │ │ ├── operations_shorthand.h │ │ │ ├── operations_shorthand_cuesheet.c │ │ │ ├── operations_shorthand_picture.c │ │ │ ├── operations_shorthand_seektable.c │ │ │ ├── operations_shorthand_streaminfo.c │ │ │ ├── operations_shorthand_vorbiscomment.c │ │ │ ├── options.c │ │ │ ├── options.h │ │ │ ├── usage.c │ │ │ ├── usage.h │ │ │ ├── utils.c │ │ │ ├── utils.h │ │ │ └── version.rc │ │ ├── main.c │ │ ├── operations.c │ │ ├── operations.h │ │ ├── operations_shorthand.h │ │ ├── operations_shorthand_cuesheet.c │ │ ├── operations_shorthand_picture.c │ │ ├── operations_shorthand_seektable.c │ │ ├── operations_shorthand_streaminfo.c │ │ ├── operations_shorthand_vorbiscomment.c │ │ ├── options.c │ │ ├── options.h │ │ ├── usage.c │ │ ├── usage.h │ │ ├── utils.c │ │ ├── utils.h │ │ └── version.rc │ ├── share │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── PaxHeaders │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── getopt │ │ │ ├── grabbag │ │ │ ├── replaygain_analysis │ │ │ ├── replaygain_synthesis │ │ │ ├── utf8 │ │ │ └── win_utf8_io │ │ ├── README │ │ ├── getopt │ │ │ ├── CMakeLists.txt │ │ │ ├── PaxHeaders │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── getopt.c │ │ │ │ └── getopt1.c │ │ │ ├── getopt.c │ │ │ └── getopt1.c │ │ ├── grabbag │ │ │ ├── CMakeLists.txt │ │ │ ├── PaxHeaders │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── alloc.c │ │ │ │ ├── cuesheet.c │ │ │ │ ├── file.c │ │ │ │ ├── picture.c │ │ │ │ ├── replaygain.c │ │ │ │ ├── seektable.c │ │ │ │ └── snprintf.c │ │ │ ├── alloc.c │ │ │ ├── cuesheet.c │ │ │ ├── file.c │ │ │ ├── picture.c │ │ │ ├── replaygain.c │ │ │ ├── seektable.c │ │ │ └── snprintf.c │ │ ├── replaygain_analysis │ │ │ ├── CMakeLists.txt │ │ │ ├── PaxHeaders │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── replaygain_analysis.c │ │ │ └── replaygain_analysis.c │ │ ├── replaygain_synthesis │ │ │ ├── CMakeLists.txt │ │ │ ├── PaxHeaders │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── replaygain_synthesis.c │ │ │ └── replaygain_synthesis.c │ │ ├── utf8 │ │ │ ├── CMakeLists.txt │ │ │ ├── PaxHeaders │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── charmaps.h │ │ │ │ ├── charset.c │ │ │ │ ├── charset.h │ │ │ │ ├── charset_test.c │ │ │ │ ├── iconvert.c │ │ │ │ ├── iconvert.h │ │ │ │ ├── makemap.c │ │ │ │ └── utf8.c │ │ │ ├── charmaps.h │ │ │ ├── charset.c │ │ │ ├── charset.h │ │ │ ├── charset_test.c │ │ │ ├── iconvert.c │ │ │ ├── iconvert.h │ │ │ ├── makemap.c │ │ │ └── utf8.c │ │ └── win_utf8_io │ │ │ ├── PaxHeaders │ │ │ └── win_utf8_io.c │ │ │ └── win_utf8_io.c │ ├── test_grabbag │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── PaxHeaders │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── cuesheet │ │ │ └── picture │ │ ├── cuesheet │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── PaxHeaders │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ └── main.c │ │ │ └── main.c │ │ └── picture │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── PaxHeaders │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── main.c │ │ │ └── main.c │ ├── test_libFLAC++ │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── PaxHeaders │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── decoders.cpp │ │ │ ├── decoders.h │ │ │ ├── encoders.cpp │ │ │ ├── encoders.h │ │ │ ├── main.cpp │ │ │ ├── metadata.cpp │ │ │ ├── metadata.h │ │ │ ├── metadata_manip.cpp │ │ │ └── metadata_object.cpp │ │ ├── decoders.cpp │ │ ├── decoders.h │ │ ├── encoders.cpp │ │ ├── encoders.h │ │ ├── main.cpp │ │ ├── metadata.cpp │ │ ├── metadata.h │ │ ├── metadata_manip.cpp │ │ └── metadata_object.cpp │ ├── test_libFLAC │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── PaxHeaders │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── bitreader.c │ │ │ ├── bitreader.h │ │ │ ├── bitwriter.c │ │ │ ├── bitwriter.h │ │ │ ├── crc.c │ │ │ ├── crc.h │ │ │ ├── decoders.c │ │ │ ├── decoders.h │ │ │ ├── encoders.c │ │ │ ├── encoders.h │ │ │ ├── endswap.c │ │ │ ├── endswap.h │ │ │ ├── format.c │ │ │ ├── format.h │ │ │ ├── main.c │ │ │ ├── md5.c │ │ │ ├── md5.h │ │ │ ├── metadata.c │ │ │ ├── metadata.h │ │ │ ├── metadata_manip.c │ │ │ └── metadata_object.c │ │ ├── bitreader.c │ │ ├── bitreader.h │ │ ├── bitwriter.c │ │ ├── bitwriter.h │ │ ├── crc.c │ │ ├── crc.h │ │ ├── decoders.c │ │ ├── decoders.h │ │ ├── encoders.c │ │ ├── encoders.h │ │ ├── endswap.c │ │ ├── endswap.h │ │ ├── format.c │ │ ├── format.h │ │ ├── main.c │ │ ├── md5.c │ │ ├── md5.h │ │ ├── metadata.c │ │ ├── metadata.h │ │ ├── metadata_manip.c │ │ └── metadata_object.c │ ├── test_libs_common │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── PaxHeaders │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── file_utils_flac.c │ │ │ └── metadata_utils.c │ │ ├── README │ │ ├── file_utils_flac.c │ │ └── metadata_utils.c │ ├── test_seeking │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── PaxHeaders │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── main.c │ │ └── main.c │ ├── test_streams │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── PaxHeaders │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── main.c │ │ └── main.c │ └── utils │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── PaxHeaders │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── flacdiff │ │ └── flactimer │ │ ├── flacdiff │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── PaxHeaders │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── main.cpp │ │ └── main.cpp │ │ └── flactimer │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── PaxHeaders │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ └── main.cpp │ │ └── main.cpp └── test │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── Makefile.in │ ├── PaxHeaders │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── Makefile.in │ ├── common.sh.in │ ├── cuesheet.ok │ ├── cuesheets │ ├── flac-to-flac-metadata-test-files │ ├── foreign-metadata-test-files │ ├── generate_streams.sh │ ├── metaflac-test-files │ ├── metaflac.flac.in │ ├── metaflac.flac.ok │ ├── picture.ok │ ├── pictures │ ├── test_compression.sh │ ├── test_flac.sh │ ├── test_grabbag.sh │ ├── test_libFLAC++.sh │ ├── test_libFLAC.sh │ ├── test_metaflac.sh │ ├── test_replaygain.sh │ ├── test_seeking.sh │ ├── test_streams.sh │ └── write_iff.pl │ ├── common.sh.in │ ├── cuesheet.ok │ ├── cuesheets │ ├── Makefile.am │ ├── Makefile.in │ ├── PaxHeaders │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── bad.000.CATALOG_multiple.cue │ │ ├── bad.001.CATALOG_missing_number.cue │ │ ├── bad.002.CATALOG_number_too_long.cue │ │ ├── bad.003.CATALOG_not_13_digits.cue │ │ ├── bad.030.FLAGS_multiple.cue │ │ ├── bad.031.FLAGS_wrong_place_1.cue │ │ ├── bad.032.FLAGS_wrong_place_2.cue │ │ ├── bad.060.INDEX_wrong_place.cue │ │ ├── bad.061.INDEX_missing_number.cue │ │ ├── bad.062.INDEX_invalid_number_1.cue │ │ ├── bad.063.first_INDEX_not_0_or_1.cue │ │ ├── bad.064.INDEX_num_non_sequential.cue │ │ ├── bad.065.INDEX_num_out_of_range.cue │ │ ├── bad.066.INDEX_missing_offset.cue │ │ ├── bad.067.INDEX_illegal_offset.cue │ │ ├── bad.068.INDEX_cdda_illegal_offset.cue │ │ ├── bad.069.nonzero_first_INDEX.cue │ │ ├── bad.070.INDEX_offset_not_ascending_1.cue │ │ ├── bad.071.INDEX_offset_not_ascending_2.cue │ │ ├── bad.110.ISRC_multiple.cue │ │ ├── bad.111.ISRC_wrong_place_1.cue │ │ ├── bad.112.ISRC_wrong_place_2.cue │ │ ├── bad.113.ISRC_missing_number.cue │ │ ├── bad.114.ISRC_invalid_number.cue │ │ ├── bad.130.TRACK_missing_INDEX_01_1.cue │ │ ├── bad.131.TRACK_missing_INDEX_01_2.cue │ │ ├── bad.132.TRACK_missing_INDEX_01_3.cue │ │ ├── bad.133.TRACK_missing_INDEX_01_4.cue │ │ ├── bad.134.TRACK_missing_number.cue │ │ ├── bad.135.TRACK_invalid_number_1.cue │ │ ├── bad.136.TRACK_invalid_number_2.cue │ │ ├── bad.137.TRACK_cdda_out_of_range.cue │ │ ├── bad.138.TRACK_num_non_sequential.cue │ │ ├── bad.139.TRACK_missing_type.cue │ │ ├── bad.140.no_TRACKs.cue │ │ ├── bad.200.FLAC_leadin_missing_offset.cue │ │ ├── bad.201.FLAC_leadin_illegal_offset.cue │ │ ├── bad.202.FLAC_leadin_cdda_illegal_offset.cue │ │ ├── bad.230.FLAC_leadout_multiple.cue │ │ ├── bad.231.FLAC_leadout_missing_track.cue │ │ ├── bad.232.FLAC_leadout_illegal_track.cue │ │ ├── bad.233.FLAC_leadout_missing_offset.cue │ │ ├── bad.234.FLAC_leadout_illegal_offset.cue │ │ ├── bad.235.FLAC_leadout_offset_not_211680000.cue │ │ ├── good.000.cue │ │ ├── good.001.cue │ │ ├── good.002.dos_format.cue │ │ ├── good.003.missing_final_newline.cue │ │ ├── good.004.dos_format.missing_final_newline.cue │ │ └── good.005.quoted.isrc.cue │ ├── bad.000.CATALOG_multiple.cue │ ├── bad.001.CATALOG_missing_number.cue │ ├── bad.002.CATALOG_number_too_long.cue │ ├── bad.003.CATALOG_not_13_digits.cue │ ├── bad.030.FLAGS_multiple.cue │ ├── bad.031.FLAGS_wrong_place_1.cue │ ├── bad.032.FLAGS_wrong_place_2.cue │ ├── bad.060.INDEX_wrong_place.cue │ ├── bad.061.INDEX_missing_number.cue │ ├── bad.062.INDEX_invalid_number_1.cue │ ├── bad.063.first_INDEX_not_0_or_1.cue │ ├── bad.064.INDEX_num_non_sequential.cue │ ├── bad.065.INDEX_num_out_of_range.cue │ ├── bad.066.INDEX_missing_offset.cue │ ├── bad.067.INDEX_illegal_offset.cue │ ├── bad.068.INDEX_cdda_illegal_offset.cue │ ├── bad.069.nonzero_first_INDEX.cue │ ├── bad.070.INDEX_offset_not_ascending_1.cue │ ├── bad.071.INDEX_offset_not_ascending_2.cue │ ├── bad.110.ISRC_multiple.cue │ ├── bad.111.ISRC_wrong_place_1.cue │ ├── bad.112.ISRC_wrong_place_2.cue │ ├── bad.113.ISRC_missing_number.cue │ ├── bad.114.ISRC_invalid_number.cue │ ├── bad.130.TRACK_missing_INDEX_01_1.cue │ ├── bad.131.TRACK_missing_INDEX_01_2.cue │ ├── bad.132.TRACK_missing_INDEX_01_3.cue │ ├── bad.133.TRACK_missing_INDEX_01_4.cue │ ├── bad.134.TRACK_missing_number.cue │ ├── bad.135.TRACK_invalid_number_1.cue │ ├── bad.136.TRACK_invalid_number_2.cue │ ├── bad.137.TRACK_cdda_out_of_range.cue │ ├── bad.138.TRACK_num_non_sequential.cue │ ├── bad.139.TRACK_missing_type.cue │ ├── bad.140.no_TRACKs.cue │ ├── bad.200.FLAC_leadin_missing_offset.cue │ ├── bad.201.FLAC_leadin_illegal_offset.cue │ ├── bad.202.FLAC_leadin_cdda_illegal_offset.cue │ ├── bad.230.FLAC_leadout_multiple.cue │ ├── bad.231.FLAC_leadout_missing_track.cue │ ├── bad.232.FLAC_leadout_illegal_track.cue │ ├── bad.233.FLAC_leadout_missing_offset.cue │ ├── bad.234.FLAC_leadout_illegal_offset.cue │ ├── bad.235.FLAC_leadout_offset_not_211680000.cue │ ├── good.000.cue │ ├── good.001.cue │ ├── good.002.dos_format.cue │ ├── good.003.missing_final_newline.cue │ ├── good.004.dos_format.missing_final_newline.cue │ └── good.005.quoted.isrc.cue │ ├── flac-to-flac-metadata-test-files │ ├── Makefile.am │ ├── Makefile.in │ ├── PaxHeaders │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── Prøve.flac │ │ ├── case00a-expect.meta │ │ ├── case01a-expect.meta │ │ ├── case01b-expect.meta │ │ ├── case01c-expect.meta │ │ ├── case01d-expect.meta │ │ ├── case01e-expect.meta │ │ ├── case02a-expect.meta │ │ ├── case02b-expect.meta │ │ ├── case02c-expect.meta │ │ ├── case03a-expect.meta │ │ ├── case03b-expect.meta │ │ ├── case03c-expect.meta │ │ ├── case04a-expect.meta │ │ ├── case04b-expect.meta │ │ ├── case04c-expect.meta │ │ ├── case04d-expect.meta │ │ ├── case04e-expect.meta │ │ ├── input-SCPAP.flac │ │ ├── input-SCVA.flac │ │ ├── input-SCVAUP.flac │ │ ├── input-SCVPAP.flac │ │ ├── input-SVAUP.flac │ │ ├── input-VA.flac │ │ ├── input0.cue │ │ ├── שלום.flac │ │ └── 🤔.flac │ ├── Prøve.flac │ ├── case00a-expect.meta │ ├── case01a-expect.meta │ ├── case01b-expect.meta │ ├── case01c-expect.meta │ ├── case01d-expect.meta │ ├── case01e-expect.meta │ ├── case02a-expect.meta │ ├── case02b-expect.meta │ ├── case02c-expect.meta │ ├── case03a-expect.meta │ ├── case03b-expect.meta │ ├── case03c-expect.meta │ ├── case04a-expect.meta │ ├── case04b-expect.meta │ ├── case04c-expect.meta │ ├── case04d-expect.meta │ ├── case04e-expect.meta │ ├── input-SCPAP.flac │ ├── input-SCVA.flac │ ├── input-SCVAUP.flac │ ├── input-SCVPAP.flac │ ├── input-SVAUP.flac │ ├── input-VA.flac │ ├── input0.cue │ ├── שלום.flac │ └── 🤔.flac │ ├── foreign-metadata-test-files │ ├── 24bit-WaveFmtPCM.wav │ ├── AIFF-C-sowt-compression-type-name.aifc │ ├── AIFF-C-sowt-tag.aifc │ ├── AIFF-ID3.aiff │ ├── BWF-WaveFmtEx.wav │ ├── Makefile.am │ ├── Makefile.in │ └── PaxHeaders │ │ ├── 24bit-WaveFmtPCM.wav │ │ ├── AIFF-C-sowt-compression-type-name.aifc │ │ ├── AIFF-C-sowt-tag.aifc │ │ ├── AIFF-ID3.aiff │ │ ├── BWF-WaveFmtEx.wav │ │ ├── Makefile.am │ │ └── Makefile.in │ ├── generate_streams.sh │ ├── metaflac-test-files │ ├── Makefile.am │ ├── Makefile.in │ ├── PaxHeaders │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── case00-expect.meta │ │ ├── case01-expect.meta │ │ ├── case02-expect.meta │ │ ├── case03-expect.meta │ │ ├── case04-expect.meta │ │ ├── case05-expect.meta │ │ ├── case06-expect.meta │ │ ├── case07-expect.meta │ │ ├── case08-expect.meta │ │ ├── case09-expect.meta │ │ ├── case10-expect.meta │ │ ├── case11-expect.meta │ │ ├── case12-expect.meta │ │ ├── case13-expect.meta │ │ ├── case14-expect.meta │ │ ├── case15-expect.meta │ │ ├── case16-expect.meta │ │ ├── case17-expect.meta │ │ ├── case18-expect.meta │ │ ├── case19-expect.meta │ │ ├── case20-expect.meta │ │ ├── case21-expect.meta │ │ ├── case22-expect.meta │ │ ├── case23-expect.meta │ │ ├── case24-expect.meta │ │ ├── case25-expect.meta │ │ ├── case26-expect.meta │ │ ├── case27-expect.meta │ │ ├── case28-expect.meta │ │ ├── case29-expect.meta │ │ ├── case30-expect.meta │ │ ├── case31-expect.meta │ │ ├── case32-expect.meta │ │ ├── case33-expect.meta │ │ ├── case34-expect.meta │ │ ├── case35-expect.meta │ │ ├── case36-expect.meta │ │ ├── case37-expect.meta │ │ ├── case38-expect.meta │ │ ├── case39-expect.meta │ │ ├── case40-expect.meta │ │ ├── case41-expect.meta │ │ ├── case42-expect.meta │ │ ├── case43-expect.meta │ │ ├── case44-expect.meta │ │ ├── case45-expect.meta │ │ ├── case46-expect.meta │ │ ├── case47-expect.meta │ │ ├── case48-expect.meta │ │ ├── case49-expect.meta │ │ ├── case50-expect.meta │ │ ├── case51-expect.meta │ │ ├── case52-expect.meta │ │ ├── case53-expect.meta │ │ ├── case54-expect.meta │ │ ├── case55-expect.meta │ │ ├── case56-expect.meta │ │ ├── case57-expect.meta │ │ ├── case58-expect.meta │ │ ├── case59-expect.meta │ │ ├── case60-expect.meta │ │ ├── case61-expect.meta │ │ ├── case62-expect.meta │ │ ├── case63-expect.meta │ │ ├── case64-expect.meta │ │ ├── case65-expect.meta │ │ ├── case66-expect.meta │ │ └── case67-expect.meta │ ├── case00-expect.meta │ ├── case01-expect.meta │ ├── case02-expect.meta │ ├── case03-expect.meta │ ├── case04-expect.meta │ ├── case05-expect.meta │ ├── case06-expect.meta │ ├── case07-expect.meta │ ├── case08-expect.meta │ ├── case09-expect.meta │ ├── case10-expect.meta │ ├── case11-expect.meta │ ├── case12-expect.meta │ ├── case13-expect.meta │ ├── case14-expect.meta │ ├── case15-expect.meta │ ├── case16-expect.meta │ ├── case17-expect.meta │ ├── case18-expect.meta │ ├── case19-expect.meta │ ├── case20-expect.meta │ ├── case21-expect.meta │ ├── case22-expect.meta │ ├── case23-expect.meta │ ├── case24-expect.meta │ ├── case25-expect.meta │ ├── case26-expect.meta │ ├── case27-expect.meta │ ├── case28-expect.meta │ ├── case29-expect.meta │ ├── case30-expect.meta │ ├── case31-expect.meta │ ├── case32-expect.meta │ ├── case33-expect.meta │ ├── case34-expect.meta │ ├── case35-expect.meta │ ├── case36-expect.meta │ ├── case37-expect.meta │ ├── case38-expect.meta │ ├── case39-expect.meta │ ├── case40-expect.meta │ ├── case41-expect.meta │ ├── case42-expect.meta │ ├── case43-expect.meta │ ├── case44-expect.meta │ ├── case45-expect.meta │ ├── case46-expect.meta │ ├── case47-expect.meta │ ├── case48-expect.meta │ ├── case49-expect.meta │ ├── case50-expect.meta │ ├── case51-expect.meta │ ├── case52-expect.meta │ ├── case53-expect.meta │ ├── case54-expect.meta │ ├── case55-expect.meta │ ├── case56-expect.meta │ ├── case57-expect.meta │ ├── case58-expect.meta │ ├── case59-expect.meta │ ├── case60-expect.meta │ ├── case61-expect.meta │ ├── case62-expect.meta │ ├── case63-expect.meta │ ├── case64-expect.meta │ ├── case65-expect.meta │ ├── case66-expect.meta │ └── case67-expect.meta │ ├── metaflac.flac.in │ ├── metaflac.flac.ok │ ├── picture.ok │ ├── pictures │ ├── 0.gif │ ├── 0.jpg │ ├── 0.png │ ├── 1.gif │ ├── 1.png │ ├── 2.gif │ ├── 2.png │ ├── 3.png │ ├── 4.jpg │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ ├── Makefile.am │ ├── Makefile.in │ └── PaxHeaders │ │ ├── 0.gif │ │ ├── 0.jpg │ │ ├── 0.png │ │ ├── 1.gif │ │ ├── 1.png │ │ ├── 2.gif │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.jpg │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ ├── Makefile.am │ │ └── Makefile.in │ ├── test_compression.sh │ ├── test_flac.sh │ ├── test_grabbag.sh │ ├── test_libFLAC++.sh │ ├── test_libFLAC.sh │ ├── test_metaflac.sh │ ├── test_replaygain.sh │ ├── test_seeking.sh │ ├── test_streams.sh │ └── write_iff.pl ├── freetype-2.13.2 ├── .clang-format ├── CMakeLists.txt ├── ChangeLog ├── LICENSE.TXT ├── Makefile ├── README ├── README.git ├── autogen.sh ├── builds │ ├── amiga │ │ ├── README │ │ ├── include │ │ │ └── config │ │ │ │ ├── ftconfig.h │ │ │ │ └── ftmodule.h │ │ ├── makefile │ │ ├── makefile.os4 │ │ ├── smakefile │ │ └── src │ │ │ └── base │ │ │ ├── ftdebug.c │ │ │ └── ftsystem.c │ ├── ansi │ │ ├── ansi-def.mk │ │ └── ansi.mk │ ├── atari │ │ ├── ATARI.H │ │ ├── FNames.SIC │ │ ├── FREETYPE.PRJ │ │ ├── README.TXT │ │ ├── deflinejoiner.awk │ │ └── gen-purec-patch.sh │ ├── beos │ │ ├── beos-def.mk │ │ ├── beos.mk │ │ └── detect.mk │ ├── cmake │ │ ├── FindBrotliDec.cmake │ │ ├── FindHarfBuzz.cmake │ │ ├── iOS.cmake │ │ └── testbuild.sh │ ├── compiler │ │ ├── ansi-cc.mk │ │ ├── bcc-dev.mk │ │ ├── bcc.mk │ │ ├── emx.mk │ │ ├── gcc-dev.mk │ │ ├── gcc.mk │ │ ├── intelc.mk │ │ ├── unix-lcc.mk │ │ ├── visualage.mk │ │ ├── visualc.mk │ │ ├── watcom.mk │ │ └── win-lcc.mk │ ├── detect.mk │ ├── dos │ │ ├── detect.mk │ │ ├── dos-def.mk │ │ ├── dos-emx.mk │ │ ├── dos-gcc.mk │ │ └── dos-wat.mk │ ├── exports.mk │ ├── freetype.mk │ ├── link_dos.mk │ ├── link_std.mk │ ├── mac │ │ ├── FreeType.m68k_cfm.make.txt │ │ ├── FreeType.m68k_far.make.txt │ │ ├── FreeType.ppc_carbon.make.txt │ │ ├── FreeType.ppc_classic.make.txt │ │ ├── README │ │ ├── ascii2mpw.py │ │ ├── freetype-Info.plist │ │ ├── ftlib.prj.xml │ │ └── ftmac.c │ ├── meson │ │ ├── extract_freetype_version.py │ │ ├── extract_libtool_version.py │ │ ├── generate_reference_docs.py │ │ ├── parse_modules_cfg.py │ │ └── process_ftoption_h.py │ ├── modules.mk │ ├── os2 │ │ ├── detect.mk │ │ ├── os2-def.mk │ │ ├── os2-dev.mk │ │ └── os2-gcc.mk │ ├── symbian │ │ ├── bld.inf │ │ └── freetype.mmp │ ├── toplevel.mk │ ├── unix │ │ ├── aclocal.m4 │ │ ├── ax_compare_version.m4 │ │ ├── ax_prog_python_version.m4 │ │ ├── ax_pthread.m4 │ │ ├── config.guess │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.ac │ │ ├── configure.raw │ │ ├── detect.mk │ │ ├── freetype-config.in │ │ ├── freetype2.in │ │ ├── freetype2.m4 │ │ ├── ft-munmap.m4 │ │ ├── ftconfig.h.in │ │ ├── ftsystem.c │ │ ├── install-sh │ │ ├── install.mk │ │ ├── ltmain.sh │ │ ├── pkg.m4 │ │ ├── unix-cc.in │ │ ├── unix-def.in │ │ ├── unix-dev.mk │ │ ├── unix-lcc.mk │ │ ├── unix.mk │ │ └── unixddef.mk │ ├── vms │ │ ├── apinames_vms.bash │ │ ├── ftconfig.h │ │ └── ftsystem.c │ ├── wince │ │ ├── ftdebug.c │ │ ├── vc2005-ce │ │ │ ├── freetype.sln │ │ │ ├── freetype.vcproj │ │ │ └── index.html │ │ └── vc2008-ce │ │ │ ├── freetype.sln │ │ │ ├── freetype.vcproj │ │ │ └── index.html │ └── windows │ │ ├── detect.mk │ │ ├── ftdebug.c │ │ ├── ftsystem.c │ │ ├── vc2010 │ │ ├── freetype.sln │ │ ├── freetype.user.props │ │ ├── freetype.vcxproj │ │ ├── freetype.vcxproj.filters │ │ └── index.html │ │ ├── visualc │ │ ├── freetype.dsp │ │ ├── freetype.dsw │ │ ├── freetype.sln │ │ ├── freetype.vcproj │ │ └── index.html │ │ ├── visualce │ │ ├── freetype.dsp │ │ ├── freetype.dsw │ │ ├── freetype.vcproj │ │ └── index.html │ │ ├── w32-bcc.mk │ │ ├── w32-bccd.mk │ │ ├── w32-dev.mk │ │ ├── w32-gcc.mk │ │ ├── w32-icc.mk │ │ ├── w32-intl.mk │ │ ├── w32-lcc.mk │ │ ├── w32-mingw32.mk │ │ ├── w32-vcc.mk │ │ ├── w32-wat.mk │ │ └── win32-def.mk ├── configure ├── devel │ ├── ft2build.h │ └── ftoption.h ├── docs │ ├── CHANGES │ ├── CMAKE │ ├── CUSTOMIZE │ ├── DEBUG │ ├── DOCGUIDE │ ├── FTL.TXT │ ├── GPLv2.TXT │ ├── INSTALL │ ├── INSTALL.ANY │ ├── INSTALL.CROSS │ ├── INSTALL.GNU │ ├── INSTALL.MAC │ ├── INSTALL.UNIX │ ├── INSTALL.VMS │ ├── MAKEPP │ ├── PROBLEMS │ ├── README │ ├── TODO │ ├── VERSIONS.TXT │ ├── formats.txt │ ├── freetype-config.1 │ ├── oldlogs │ │ ├── ChangeLog.20 │ │ ├── ChangeLog.21 │ │ ├── ChangeLog.210 │ │ ├── ChangeLog.22 │ │ ├── ChangeLog.23 │ │ ├── ChangeLog.24 │ │ ├── ChangeLog.25 │ │ ├── ChangeLog.26 │ │ ├── ChangeLog.27 │ │ ├── ChangeLog.28 │ │ └── ChangeLog.29 │ ├── raster.txt │ ├── reference │ │ ├── 404.html │ │ ├── assets │ │ │ ├── images │ │ │ │ └── favicon.png │ │ │ ├── javascripts │ │ │ │ ├── bundle.82b56eb2.min.js │ │ │ │ ├── bundle.82b56eb2.min.js.map │ │ │ │ ├── lunr │ │ │ │ │ ├── min │ │ │ │ │ │ ├── lunr.ar.min.js │ │ │ │ │ │ ├── lunr.da.min.js │ │ │ │ │ │ ├── lunr.de.min.js │ │ │ │ │ │ ├── lunr.du.min.js │ │ │ │ │ │ ├── lunr.es.min.js │ │ │ │ │ │ ├── lunr.fi.min.js │ │ │ │ │ │ ├── lunr.fr.min.js │ │ │ │ │ │ ├── lunr.hi.min.js │ │ │ │ │ │ ├── lunr.hu.min.js │ │ │ │ │ │ ├── lunr.it.min.js │ │ │ │ │ │ ├── lunr.ja.min.js │ │ │ │ │ │ ├── lunr.jp.min.js │ │ │ │ │ │ ├── lunr.multi.min.js │ │ │ │ │ │ ├── lunr.nl.min.js │ │ │ │ │ │ ├── lunr.no.min.js │ │ │ │ │ │ ├── lunr.pt.min.js │ │ │ │ │ │ ├── lunr.ro.min.js │ │ │ │ │ │ ├── lunr.ru.min.js │ │ │ │ │ │ ├── lunr.stemmer.support.min.js │ │ │ │ │ │ ├── lunr.sv.min.js │ │ │ │ │ │ ├── lunr.th.min.js │ │ │ │ │ │ ├── lunr.tr.min.js │ │ │ │ │ │ ├── lunr.vi.min.js │ │ │ │ │ │ └── lunr.zh.min.js │ │ │ │ │ ├── tinyseg.js │ │ │ │ │ └── wordcut.js │ │ │ │ └── workers │ │ │ │ │ ├── search.477d984a.min.js │ │ │ │ │ └── search.477d984a.min.js.map │ │ │ └── stylesheets │ │ │ │ ├── main.ca7ac06f.min.css │ │ │ │ ├── main.ca7ac06f.min.css.map │ │ │ │ ├── palette.f1a3b89f.min.css │ │ │ │ └── palette.f1a3b89f.min.css.map │ │ ├── ft2-auto_hinter.html │ │ ├── ft2-basic_types.html │ │ ├── ft2-bdf_fonts.html │ │ ├── ft2-bitmap_handling.html │ │ ├── ft2-bzip2.html │ │ ├── ft2-cache_subsystem.html │ │ ├── ft2-cff_driver.html │ │ ├── ft2-character_mapping.html │ │ ├── ft2-cid_fonts.html │ │ ├── ft2-color_management.html │ │ ├── ft2-computations.html │ │ ├── ft2-debugging_apis.html │ │ ├── ft2-error_code_values.html │ │ ├── ft2-error_enumerations.html │ │ ├── ft2-face_creation.html │ │ ├── ft2-font_formats.html │ │ ├── ft2-font_testing_macros.html │ │ ├── ft2-gasp_table.html │ │ ├── ft2-glyph_management.html │ │ ├── ft2-glyph_retrieval.html │ │ ├── ft2-glyph_stroker.html │ │ ├── ft2-glyph_variants.html │ │ ├── ft2-gx_validation.html │ │ ├── ft2-gzip.html │ │ ├── ft2-header_file_macros.html │ │ ├── ft2-header_inclusion.html │ │ ├── ft2-incremental.html │ │ ├── ft2-index.html │ │ ├── ft2-information_retrieval.html │ │ ├── ft2-layer_management.html │ │ ├── ft2-lcd_rendering.html │ │ ├── ft2-library_setup.html │ │ ├── ft2-list_processing.html │ │ ├── ft2-lzw.html │ │ ├── ft2-mac_specific.html │ │ ├── ft2-module_management.html │ │ ├── ft2-multiple_masters.html │ │ ├── ft2-ot_svg_driver.html │ │ ├── ft2-ot_validation.html │ │ ├── ft2-other_api_data.html │ │ ├── ft2-outline_processing.html │ │ ├── ft2-parameter_tags.html │ │ ├── ft2-pcf_driver.html │ │ ├── ft2-pfr_fonts.html │ │ ├── ft2-preamble.html │ │ ├── ft2-properties.html │ │ ├── ft2-quick_advance.html │ │ ├── ft2-raster.html │ │ ├── ft2-sfnt_names.html │ │ ├── ft2-sizes_management.html │ │ ├── ft2-sizing_and_scaling.html │ │ ├── ft2-svg_fonts.html │ │ ├── ft2-system_interface.html │ │ ├── ft2-t1_cid_driver.html │ │ ├── ft2-truetype_engine.html │ │ ├── ft2-truetype_tables.html │ │ ├── ft2-tt_driver.html │ │ ├── ft2-type1_tables.html │ │ ├── ft2-user_allocation.html │ │ ├── ft2-winfnt_fonts.html │ │ ├── images │ │ │ └── favico.ico │ │ ├── index.html │ │ ├── javascripts │ │ │ └── extra.js │ │ ├── search │ │ │ └── search_index.json │ │ ├── sitemap.xml │ │ ├── sitemap.xml.gz │ │ └── stylesheets │ │ │ └── extra.css │ └── release ├── include │ ├── dlg │ │ ├── dlg.h │ │ └── output.h │ ├── freetype │ │ ├── config │ │ │ ├── ftconfig.h │ │ │ ├── ftheader.h │ │ │ ├── ftmodule.h │ │ │ ├── ftoption.h │ │ │ ├── ftstdlib.h │ │ │ ├── integer-types.h │ │ │ ├── mac-support.h │ │ │ └── public-macros.h │ │ ├── freetype.h │ │ ├── ftadvanc.h │ │ ├── ftbbox.h │ │ ├── ftbdf.h │ │ ├── ftbitmap.h │ │ ├── ftbzip2.h │ │ ├── ftcache.h │ │ ├── ftchapters.h │ │ ├── ftcid.h │ │ ├── ftcolor.h │ │ ├── ftdriver.h │ │ ├── fterrdef.h │ │ ├── fterrors.h │ │ ├── ftfntfmt.h │ │ ├── ftgasp.h │ │ ├── ftglyph.h │ │ ├── ftgxval.h │ │ ├── ftgzip.h │ │ ├── ftimage.h │ │ ├── ftincrem.h │ │ ├── ftlcdfil.h │ │ ├── ftlist.h │ │ ├── ftlogging.h │ │ ├── ftlzw.h │ │ ├── ftmac.h │ │ ├── ftmm.h │ │ ├── ftmodapi.h │ │ ├── ftmoderr.h │ │ ├── ftotval.h │ │ ├── ftoutln.h │ │ ├── ftparams.h │ │ ├── ftpfr.h │ │ ├── ftrender.h │ │ ├── ftsizes.h │ │ ├── ftsnames.h │ │ ├── ftstroke.h │ │ ├── ftsynth.h │ │ ├── ftsystem.h │ │ ├── fttrigon.h │ │ ├── fttypes.h │ │ ├── ftwinfnt.h │ │ ├── internal │ │ │ ├── autohint.h │ │ │ ├── cffotypes.h │ │ │ ├── cfftypes.h │ │ │ ├── compiler-macros.h │ │ │ ├── ftcalc.h │ │ │ ├── ftdebug.h │ │ │ ├── ftdrv.h │ │ │ ├── ftgloadr.h │ │ │ ├── fthash.h │ │ │ ├── ftmemory.h │ │ │ ├── ftmmtypes.h │ │ │ ├── ftobjs.h │ │ │ ├── ftpsprop.h │ │ │ ├── ftrfork.h │ │ │ ├── ftserv.h │ │ │ ├── ftstream.h │ │ │ ├── fttrace.h │ │ │ ├── ftvalid.h │ │ │ ├── psaux.h │ │ │ ├── pshints.h │ │ │ ├── services │ │ │ │ ├── svbdf.h │ │ │ │ ├── svcfftl.h │ │ │ │ ├── svcid.h │ │ │ │ ├── svfntfmt.h │ │ │ │ ├── svgldict.h │ │ │ │ ├── svgxval.h │ │ │ │ ├── svkern.h │ │ │ │ ├── svmetric.h │ │ │ │ ├── svmm.h │ │ │ │ ├── svotval.h │ │ │ │ ├── svpfr.h │ │ │ │ ├── svpostnm.h │ │ │ │ ├── svprop.h │ │ │ │ ├── svpscmap.h │ │ │ │ ├── svpsinfo.h │ │ │ │ ├── svsfnt.h │ │ │ │ ├── svttcmap.h │ │ │ │ ├── svtteng.h │ │ │ │ ├── svttglyf.h │ │ │ │ └── svwinfnt.h │ │ │ ├── sfnt.h │ │ │ ├── svginterface.h │ │ │ ├── t1types.h │ │ │ ├── tttypes.h │ │ │ └── wofftypes.h │ │ ├── otsvg.h │ │ ├── t1tables.h │ │ ├── ttnameid.h │ │ ├── tttables.h │ │ └── tttags.h │ └── ft2build.h ├── meson.build ├── meson_options.txt ├── modules.cfg ├── objs │ └── README ├── src │ ├── autofit │ │ ├── afblue.c │ │ ├── afblue.cin │ │ ├── afblue.dat │ │ ├── afblue.h │ │ ├── afblue.hin │ │ ├── afcjk.c │ │ ├── afcjk.h │ │ ├── afcover.h │ │ ├── afdummy.c │ │ ├── afdummy.h │ │ ├── aferrors.h │ │ ├── afglobal.c │ │ ├── afglobal.h │ │ ├── afhints.c │ │ ├── afhints.h │ │ ├── afindic.c │ │ ├── afindic.h │ │ ├── aflatin.c │ │ ├── aflatin.h │ │ ├── afloader.c │ │ ├── afloader.h │ │ ├── afmodule.c │ │ ├── afmodule.h │ │ ├── afranges.c │ │ ├── afranges.h │ │ ├── afscript.h │ │ ├── afshaper.c │ │ ├── afshaper.h │ │ ├── afstyles.h │ │ ├── aftypes.h │ │ ├── afws-decl.h │ │ ├── afws-iter.h │ │ ├── autofit.c │ │ ├── ft-hb.c │ │ ├── ft-hb.h │ │ ├── module.mk │ │ └── rules.mk │ ├── base │ │ ├── ftadvanc.c │ │ ├── ftbase.c │ │ ├── ftbase.h │ │ ├── ftbbox.c │ │ ├── ftbdf.c │ │ ├── ftbitmap.c │ │ ├── ftcalc.c │ │ ├── ftcid.c │ │ ├── ftcolor.c │ │ ├── ftdbgmem.c │ │ ├── ftdebug.c │ │ ├── fterrors.c │ │ ├── ftfntfmt.c │ │ ├── ftfstype.c │ │ ├── ftgasp.c │ │ ├── ftgloadr.c │ │ ├── ftglyph.c │ │ ├── ftgxval.c │ │ ├── fthash.c │ │ ├── ftinit.c │ │ ├── ftlcdfil.c │ │ ├── ftmac.c │ │ ├── ftmm.c │ │ ├── ftobjs.c │ │ ├── ftotval.c │ │ ├── ftoutln.c │ │ ├── ftpatent.c │ │ ├── ftpfr.c │ │ ├── ftpsprop.c │ │ ├── ftrfork.c │ │ ├── ftsnames.c │ │ ├── ftstream.c │ │ ├── ftstroke.c │ │ ├── ftsynth.c │ │ ├── ftsystem.c │ │ ├── fttrigon.c │ │ ├── fttype1.c │ │ ├── ftutil.c │ │ ├── ftver.rc │ │ ├── ftwinfnt.c │ │ ├── md5.c │ │ ├── md5.h │ │ └── rules.mk │ ├── bdf │ │ ├── README │ │ ├── bdf.c │ │ ├── bdf.h │ │ ├── bdfdrivr.c │ │ ├── bdfdrivr.h │ │ ├── bdferror.h │ │ ├── bdflib.c │ │ ├── module.mk │ │ └── rules.mk │ ├── bzip2 │ │ ├── ftbzip2.c │ │ └── rules.mk │ ├── cache │ │ ├── ftcache.c │ │ ├── ftcbasic.c │ │ ├── ftccache.c │ │ ├── ftccache.h │ │ ├── ftccback.h │ │ ├── ftccmap.c │ │ ├── ftcerror.h │ │ ├── ftcglyph.c │ │ ├── ftcglyph.h │ │ ├── ftcimage.c │ │ ├── ftcimage.h │ │ ├── ftcmanag.c │ │ ├── ftcmanag.h │ │ ├── ftcmru.c │ │ ├── ftcmru.h │ │ ├── ftcsbits.c │ │ ├── ftcsbits.h │ │ └── rules.mk │ ├── cff │ │ ├── cff.c │ │ ├── cffcmap.c │ │ ├── cffcmap.h │ │ ├── cffdrivr.c │ │ ├── cffdrivr.h │ │ ├── cfferrs.h │ │ ├── cffgload.c │ │ ├── cffgload.h │ │ ├── cffload.c │ │ ├── cffload.h │ │ ├── cffobjs.c │ │ ├── cffobjs.h │ │ ├── cffparse.c │ │ ├── cffparse.h │ │ ├── cfftoken.h │ │ ├── module.mk │ │ └── rules.mk │ ├── cid │ │ ├── ciderrs.h │ │ ├── cidgload.c │ │ ├── cidgload.h │ │ ├── cidload.c │ │ ├── cidload.h │ │ ├── cidobjs.c │ │ ├── cidobjs.h │ │ ├── cidparse.c │ │ ├── cidparse.h │ │ ├── cidriver.c │ │ ├── cidriver.h │ │ ├── cidtoken.h │ │ ├── module.mk │ │ ├── rules.mk │ │ └── type1cid.c │ ├── dlg │ │ ├── dlg.c │ │ ├── dlgwrap.c │ │ └── rules.mk │ ├── gxvalid │ │ ├── README │ │ ├── gxvalid.c │ │ ├── gxvalid.h │ │ ├── gxvbsln.c │ │ ├── gxvcommn.c │ │ ├── gxvcommn.h │ │ ├── gxverror.h │ │ ├── gxvfeat.c │ │ ├── gxvfeat.h │ │ ├── gxvfgen.c │ │ ├── gxvjust.c │ │ ├── gxvkern.c │ │ ├── gxvlcar.c │ │ ├── gxvmod.c │ │ ├── gxvmod.h │ │ ├── gxvmort.c │ │ ├── gxvmort.h │ │ ├── gxvmort0.c │ │ ├── gxvmort1.c │ │ ├── gxvmort2.c │ │ ├── gxvmort4.c │ │ ├── gxvmort5.c │ │ ├── gxvmorx.c │ │ ├── gxvmorx.h │ │ ├── gxvmorx0.c │ │ ├── gxvmorx1.c │ │ ├── gxvmorx2.c │ │ ├── gxvmorx4.c │ │ ├── gxvmorx5.c │ │ ├── gxvopbd.c │ │ ├── gxvprop.c │ │ ├── gxvtrak.c │ │ ├── module.mk │ │ └── rules.mk │ ├── gzip │ │ ├── README.freetype │ │ ├── adler32.c │ │ ├── crc32.c │ │ ├── crc32.h │ │ ├── ftgzip.c │ │ ├── ftzconf.h │ │ ├── gzguts.h │ │ ├── inffast.c │ │ ├── inffast.h │ │ ├── inffixed.h │ │ ├── inflate.c │ │ ├── inflate.h │ │ ├── inftrees.c │ │ ├── inftrees.h │ │ ├── patches │ │ │ └── freetype-zlib.diff │ │ ├── rules.mk │ │ ├── zlib.h │ │ ├── zutil.c │ │ └── zutil.h │ ├── lzw │ │ ├── ftlzw.c │ │ ├── ftzopen.c │ │ ├── ftzopen.h │ │ └── rules.mk │ ├── otvalid │ │ ├── module.mk │ │ ├── otvalid.c │ │ ├── otvalid.h │ │ ├── otvbase.c │ │ ├── otvcommn.c │ │ ├── otvcommn.h │ │ ├── otverror.h │ │ ├── otvgdef.c │ │ ├── otvgpos.c │ │ ├── otvgpos.h │ │ ├── otvgsub.c │ │ ├── otvjstf.c │ │ ├── otvmath.c │ │ ├── otvmod.c │ │ ├── otvmod.h │ │ └── rules.mk │ ├── pcf │ │ ├── README │ │ ├── module.mk │ │ ├── pcf.c │ │ ├── pcf.h │ │ ├── pcfdrivr.c │ │ ├── pcfdrivr.h │ │ ├── pcferror.h │ │ ├── pcfread.c │ │ ├── pcfread.h │ │ ├── pcfutil.c │ │ ├── pcfutil.h │ │ └── rules.mk │ ├── pfr │ │ ├── module.mk │ │ ├── pfr.c │ │ ├── pfrcmap.c │ │ ├── pfrcmap.h │ │ ├── pfrdrivr.c │ │ ├── pfrdrivr.h │ │ ├── pfrerror.h │ │ ├── pfrgload.c │ │ ├── pfrgload.h │ │ ├── pfrload.c │ │ ├── pfrload.h │ │ ├── pfrobjs.c │ │ ├── pfrobjs.h │ │ ├── pfrsbit.c │ │ ├── pfrsbit.h │ │ ├── pfrtypes.h │ │ └── rules.mk │ ├── psaux │ │ ├── afmparse.c │ │ ├── afmparse.h │ │ ├── cffdecode.c │ │ ├── cffdecode.h │ │ ├── module.mk │ │ ├── psarrst.c │ │ ├── psarrst.h │ │ ├── psaux.c │ │ ├── psauxerr.h │ │ ├── psauxmod.c │ │ ├── psauxmod.h │ │ ├── psblues.c │ │ ├── psblues.h │ │ ├── psconv.c │ │ ├── psconv.h │ │ ├── pserror.c │ │ ├── pserror.h │ │ ├── psfixed.h │ │ ├── psfont.c │ │ ├── psfont.h │ │ ├── psft.c │ │ ├── psft.h │ │ ├── psglue.h │ │ ├── pshints.c │ │ ├── pshints.h │ │ ├── psintrp.c │ │ ├── psintrp.h │ │ ├── psobjs.c │ │ ├── psobjs.h │ │ ├── psread.c │ │ ├── psread.h │ │ ├── psstack.c │ │ ├── psstack.h │ │ ├── pstypes.h │ │ ├── rules.mk │ │ ├── t1cmap.c │ │ ├── t1cmap.h │ │ ├── t1decode.c │ │ └── t1decode.h │ ├── pshinter │ │ ├── module.mk │ │ ├── pshalgo.c │ │ ├── pshalgo.h │ │ ├── pshglob.c │ │ ├── pshglob.h │ │ ├── pshinter.c │ │ ├── pshmod.c │ │ ├── pshmod.h │ │ ├── pshnterr.h │ │ ├── pshrec.c │ │ ├── pshrec.h │ │ └── rules.mk │ ├── psnames │ │ ├── module.mk │ │ ├── psmodule.c │ │ ├── psmodule.h │ │ ├── psnamerr.h │ │ ├── psnames.c │ │ ├── pstables.h │ │ └── rules.mk │ ├── raster │ │ ├── ftmisc.h │ │ ├── ftraster.c │ │ ├── ftraster.h │ │ ├── ftrend1.c │ │ ├── ftrend1.h │ │ ├── module.mk │ │ ├── raster.c │ │ ├── rasterrs.h │ │ └── rules.mk │ ├── sdf │ │ ├── ftbsdf.c │ │ ├── ftsdf.c │ │ ├── ftsdf.h │ │ ├── ftsdfcommon.c │ │ ├── ftsdfcommon.h │ │ ├── ftsdferrs.h │ │ ├── ftsdfrend.c │ │ ├── ftsdfrend.h │ │ ├── module.mk │ │ ├── rules.mk │ │ └── sdf.c │ ├── sfnt │ │ ├── module.mk │ │ ├── pngshim.c │ │ ├── pngshim.h │ │ ├── rules.mk │ │ ├── sfdriver.c │ │ ├── sfdriver.h │ │ ├── sferrors.h │ │ ├── sfnt.c │ │ ├── sfobjs.c │ │ ├── sfobjs.h │ │ ├── sfwoff.c │ │ ├── sfwoff.h │ │ ├── sfwoff2.c │ │ ├── sfwoff2.h │ │ ├── ttbdf.c │ │ ├── ttbdf.h │ │ ├── ttcmap.c │ │ ├── ttcmap.h │ │ ├── ttcmapc.h │ │ ├── ttcolr.c │ │ ├── ttcolr.h │ │ ├── ttcpal.c │ │ ├── ttcpal.h │ │ ├── ttkern.c │ │ ├── ttkern.h │ │ ├── ttload.c │ │ ├── ttload.h │ │ ├── ttmtx.c │ │ ├── ttmtx.h │ │ ├── ttpost.c │ │ ├── ttpost.h │ │ ├── ttsbit.c │ │ ├── ttsbit.h │ │ ├── ttsvg.c │ │ ├── ttsvg.h │ │ ├── woff2tags.c │ │ └── woff2tags.h │ ├── smooth │ │ ├── ftgrays.c │ │ ├── ftgrays.h │ │ ├── ftsmerrs.h │ │ ├── ftsmooth.c │ │ ├── ftsmooth.h │ │ ├── module.mk │ │ ├── rules.mk │ │ └── smooth.c │ ├── svg │ │ ├── ftsvg.c │ │ ├── ftsvg.h │ │ ├── module.mk │ │ ├── rules.mk │ │ ├── svg.c │ │ └── svgtypes.h │ ├── tools │ │ ├── afblue.pl │ │ ├── apinames.c │ │ ├── chktrcmp.py │ │ ├── cordic.py │ │ ├── ftrandom │ │ │ ├── Makefile │ │ │ ├── README │ │ │ └── ftrandom.c │ │ ├── glnames.py │ │ ├── make_distribution_archives.py │ │ ├── no-copyright │ │ ├── test_afm.c │ │ ├── test_bbox.c │ │ ├── test_trig.c │ │ ├── update-copyright │ │ ├── update-copyright-year │ │ └── vms_shorten_symbol.c │ ├── truetype │ │ ├── module.mk │ │ ├── rules.mk │ │ ├── truetype.c │ │ ├── ttdriver.c │ │ ├── ttdriver.h │ │ ├── tterrors.h │ │ ├── ttgload.c │ │ ├── ttgload.h │ │ ├── ttgxvar.c │ │ ├── ttgxvar.h │ │ ├── ttinterp.c │ │ ├── ttinterp.h │ │ ├── ttobjs.c │ │ ├── ttobjs.h │ │ ├── ttpload.c │ │ └── ttpload.h │ ├── type1 │ │ ├── module.mk │ │ ├── rules.mk │ │ ├── t1afm.c │ │ ├── t1afm.h │ │ ├── t1driver.c │ │ ├── t1driver.h │ │ ├── t1errors.h │ │ ├── t1gload.c │ │ ├── t1gload.h │ │ ├── t1load.c │ │ ├── t1load.h │ │ ├── t1objs.c │ │ ├── t1objs.h │ │ ├── t1parse.c │ │ ├── t1parse.h │ │ ├── t1tokens.h │ │ └── type1.c │ ├── type42 │ │ ├── module.mk │ │ ├── rules.mk │ │ ├── t42drivr.c │ │ ├── t42drivr.h │ │ ├── t42error.h │ │ ├── t42objs.c │ │ ├── t42objs.h │ │ ├── t42parse.c │ │ ├── t42parse.h │ │ ├── t42types.h │ │ └── type42.c │ └── winfonts │ │ ├── fnterrs.h │ │ ├── module.mk │ │ ├── rules.mk │ │ ├── winfnt.c │ │ └── winfnt.h ├── subprojects │ ├── harfbuzz.wrap │ ├── libpng.wrap │ └── zlib.wrap ├── tests │ ├── README.md │ ├── issue-1063 │ │ └── main.c │ ├── meson.build │ └── scripts │ │ └── download-test-fonts.py └── vms_make.com ├── freetype-2.9.1.tar.bz2 ├── libjpeg-turbo-3.0.0 ├── BUILDING.md ├── CMakeLists.txt ├── ChangeLog.md ├── LICENSE.md ├── README.ijg ├── README.md ├── cderror.h ├── cdjpeg.c ├── cdjpeg.h ├── change.log ├── cjpeg.1 ├── cjpeg.c ├── cmakescripts │ ├── BuildPackages.cmake │ ├── GNUInstallDirs.cmake │ ├── PackageInfo.cmake │ ├── cmake_uninstall.cmake.in │ ├── testclean.cmake │ └── tjbenchtest.cmake ├── cmyk.h ├── coderules.txt ├── croptest.in ├── djpeg.1 ├── djpeg.c ├── doc │ └── html │ │ ├── annotated.html │ │ ├── bc_s.png │ │ ├── bdwn.png │ │ ├── classes.html │ │ ├── closed.png │ │ ├── doc.png │ │ ├── doxygen-extra.css │ │ ├── doxygen.css │ │ ├── doxygen.svg │ │ ├── dynsections.js │ │ ├── folderclosed.png │ │ ├── folderopen.png │ │ ├── functions.html │ │ ├── functions_vars.html │ │ ├── group___turbo_j_p_e_g.html │ │ ├── index.html │ │ ├── jquery.js │ │ ├── menu.js │ │ ├── menudata.js │ │ ├── modules.html │ │ ├── nav_f.png │ │ ├── nav_g.png │ │ ├── nav_h.png │ │ ├── open.png │ │ ├── search │ │ ├── all_0.html │ │ ├── all_0.js │ │ ├── all_1.html │ │ ├── all_1.js │ │ ├── all_2.html │ │ ├── all_2.js │ │ ├── all_3.html │ │ ├── all_3.js │ │ ├── all_4.html │ │ ├── all_4.js │ │ ├── all_5.html │ │ ├── all_5.js │ │ ├── all_6.html │ │ ├── all_6.js │ │ ├── all_7.html │ │ ├── all_7.js │ │ ├── all_8.html │ │ ├── all_8.js │ │ ├── all_9.html │ │ ├── all_9.js │ │ ├── classes_0.html │ │ ├── classes_0.js │ │ ├── close.svg │ │ ├── enums_0.html │ │ ├── enums_0.js │ │ ├── enumvalues_0.html │ │ ├── enumvalues_0.js │ │ ├── functions_0.html │ │ ├── functions_0.js │ │ ├── groups_0.html │ │ ├── groups_0.js │ │ ├── mag_sel.svg │ │ ├── nomatches.html │ │ ├── search.css │ │ ├── search.js │ │ ├── search_l.png │ │ ├── search_m.png │ │ ├── search_r.png │ │ ├── searchdata.js │ │ ├── typedefs_0.html │ │ ├── typedefs_0.js │ │ ├── variables_0.html │ │ ├── variables_0.js │ │ ├── variables_1.html │ │ ├── variables_1.js │ │ ├── variables_2.html │ │ ├── variables_2.js │ │ ├── variables_3.html │ │ ├── variables_3.js │ │ ├── variables_4.html │ │ ├── variables_4.js │ │ ├── variables_5.html │ │ ├── variables_5.js │ │ ├── variables_6.html │ │ ├── variables_6.js │ │ ├── variables_7.html │ │ ├── variables_7.js │ │ ├── variables_8.html │ │ ├── variables_8.js │ │ ├── variables_9.html │ │ └── variables_9.js │ │ ├── splitbar.png │ │ ├── structtjregion.html │ │ ├── structtjscalingfactor.html │ │ ├── structtjtransform.html │ │ ├── sync_off.png │ │ ├── sync_on.png │ │ ├── tab_a.png │ │ ├── tab_b.png │ │ ├── tab_h.png │ │ ├── tab_s.png │ │ └── tabs.css ├── doxygen-extra.css ├── doxygen.config ├── example.c ├── fuzz │ ├── CMakeLists.txt │ ├── build.sh │ ├── cjpeg.cc │ ├── compress.cc │ ├── compress12.cc │ ├── compress12_lossless.cc │ ├── compress16_lossless.cc │ ├── compress_lossless.cc │ ├── compress_yuv.cc │ ├── decompress.cc │ ├── decompress_yuv.cc │ └── transform.cc ├── jaricom.c ├── java │ ├── CMakeLists.txt │ ├── MANIFEST.MF │ ├── README │ ├── TJBench.java │ ├── TJExample.java │ ├── TJUnitTest.java │ ├── doc │ │ ├── allclasses-index.html │ │ ├── allclasses.html │ │ ├── allpackages-index.html │ │ ├── constant-values.html │ │ ├── deprecated-list.html │ │ ├── element-list │ │ ├── help-doc.html │ │ ├── index-all.html │ │ ├── index.html │ │ ├── jquery-ui.overrides.css │ │ ├── jquery │ │ │ ├── external │ │ │ │ └── jquery │ │ │ │ │ └── jquery.js │ │ │ ├── jquery-3.6.0.min.js │ │ │ ├── jquery-ui.min.css │ │ │ ├── jquery-ui.min.js │ │ │ ├── jszip-utils │ │ │ │ └── dist │ │ │ │ │ ├── jszip-utils-ie.js │ │ │ │ │ ├── jszip-utils-ie.min.js │ │ │ │ │ ├── jszip-utils.js │ │ │ │ │ └── jszip-utils.min.js │ │ │ └── jszip │ │ │ │ └── dist │ │ │ │ ├── jszip.js │ │ │ │ └── jszip.min.js │ │ ├── member-search-index.js │ │ ├── member-search-index.zip │ │ ├── org │ │ │ └── libjpegturbo │ │ │ │ └── turbojpeg │ │ │ │ ├── TJ.html │ │ │ │ ├── TJCompressor.html │ │ │ │ ├── TJCustomFilter.html │ │ │ │ ├── TJDecompressor.html │ │ │ │ ├── TJException.html │ │ │ │ ├── TJScalingFactor.html │ │ │ │ ├── TJTransform.html │ │ │ │ ├── TJTransformer.html │ │ │ │ ├── YUVImage.html │ │ │ │ ├── package-summary.html │ │ │ │ └── package-tree.html │ │ ├── overview-tree.html │ │ ├── package-search-index.js │ │ ├── package-search-index.zip │ │ ├── resources │ │ │ ├── glass.png │ │ │ └── x.png │ │ ├── script.js │ │ ├── search.js │ │ ├── serialized-form.html │ │ ├── stylesheet.css │ │ ├── type-search-index.js │ │ └── type-search-index.zip │ ├── org │ │ └── libjpegturbo │ │ │ └── turbojpeg │ │ │ ├── TJ.java │ │ │ ├── TJCompressor.java │ │ │ ├── TJCustomFilter.java │ │ │ ├── TJDecompressor.java │ │ │ ├── TJException.java │ │ │ ├── TJLoader-unix.java.in │ │ │ ├── TJLoader-win.java.in │ │ │ ├── TJScalingFactor.java │ │ │ ├── TJTransform.java │ │ │ ├── TJTransformer.java │ │ │ └── YUVImage.java │ ├── org_libjpegturbo_turbojpeg_TJ.h │ ├── org_libjpegturbo_turbojpeg_TJCompressor.h │ ├── org_libjpegturbo_turbojpeg_TJDecompressor.h │ └── org_libjpegturbo_turbojpeg_TJTransformer.h ├── jcapimin.c ├── jcapistd.c ├── jcarith.c ├── jccoefct.c ├── jccolext.c ├── jccolor.c ├── jcdctmgr.c ├── jcdiffct.c ├── jchuff.c ├── jchuff.h ├── jcicc.c ├── jcinit.c ├── jclhuff.c ├── jclossls.c ├── jcmainct.c ├── jcmarker.c ├── jcmaster.c ├── jcmaster.h ├── jcomapi.c ├── jconfig.h.in ├── jconfig.txt ├── jconfigint.h.in ├── jcparam.c ├── jcphuff.c ├── jcprepct.c ├── jcsample.c ├── jcstest.c ├── jctrans.c ├── jdapimin.c ├── jdapistd.c ├── jdarith.c ├── jdatadst-tj.c ├── jdatadst.c ├── jdatasrc-tj.c ├── jdatasrc.c ├── jdcoefct.c ├── jdcoefct.h ├── jdcol565.c ├── jdcolext.c ├── jdcolor.c ├── jdct.h ├── jddctmgr.c ├── jddiffct.c ├── jdhuff.c ├── jdhuff.h ├── jdicc.c ├── jdinput.c ├── jdlhuff.c ├── jdlossls.c ├── jdmainct.c ├── jdmainct.h ├── jdmarker.c ├── jdmaster.c ├── jdmaster.h ├── jdmerge.c ├── jdmerge.h ├── jdmrg565.c ├── jdmrgext.c ├── jdphuff.c ├── jdpostct.c ├── jdsample.c ├── jdsample.h ├── jdtrans.c ├── jerror.c ├── jerror.h ├── jfdctflt.c ├── jfdctfst.c ├── jfdctint.c ├── jidctflt.c ├── jidctfst.c ├── jidctint.c ├── jidctred.c ├── jinclude.h ├── jlossls.h ├── jmemmgr.c ├── jmemnobs.c ├── jmemsys.h ├── jmorecfg.h ├── jpeg_nbits_table.h ├── jpegapicomp.h ├── jpegint.h ├── jpeglib.h ├── jpegtran.1 ├── jpegtran.c ├── jquant1.c ├── jquant2.c ├── jsamplecomp.h ├── jsimd.h ├── jsimddct.h ├── jstdhuff.c ├── jutils.c ├── jversion.h.in ├── libjpeg.map.in ├── libjpeg.txt ├── md5 │ ├── CMakeLists.txt │ ├── md5.c │ ├── md5.h │ ├── md5cmp.c │ └── md5hl.c ├── rdbmp.c ├── rdcolmap.c ├── rdgif.c ├── rdjpgcom.1 ├── rdjpgcom.c ├── rdppm.c ├── rdswitch.c ├── rdtarga.c ├── release │ ├── Config.cmake.in │ ├── Distribution.xml.in │ ├── License.rtf │ ├── ReadMe.txt │ ├── Welcome.rtf.in │ ├── deb-control.in │ ├── installer.nsi.in │ ├── libjpeg.pc.in │ ├── libturbojpeg.pc.in │ ├── makedpkg.in │ ├── makemacpkg.in │ ├── makerpm.in │ ├── makesrpm.in │ ├── maketarball.in │ ├── rpm.spec.in │ └── uninstall.in ├── sharedlib │ └── CMakeLists.txt ├── simd │ ├── CMakeLists.txt │ ├── arm │ │ ├── aarch32 │ │ │ ├── jccolext-neon.c │ │ │ ├── jchuff-neon.c │ │ │ ├── jsimd.c │ │ │ └── jsimd_neon.S │ │ ├── aarch64 │ │ │ ├── jccolext-neon.c │ │ │ ├── jchuff-neon.c │ │ │ ├── jsimd.c │ │ │ └── jsimd_neon.S │ │ ├── align.h │ │ ├── jccolor-neon.c │ │ ├── jcgray-neon.c │ │ ├── jcgryext-neon.c │ │ ├── jchuff.h │ │ ├── jcphuff-neon.c │ │ ├── jcsample-neon.c │ │ ├── jdcolext-neon.c │ │ ├── jdcolor-neon.c │ │ ├── jdmerge-neon.c │ │ ├── jdmrgext-neon.c │ │ ├── jdsample-neon.c │ │ ├── jfdctfst-neon.c │ │ ├── jfdctint-neon.c │ │ ├── jidctfst-neon.c │ │ ├── jidctint-neon.c │ │ ├── jidctred-neon.c │ │ ├── jquanti-neon.c │ │ └── neon-compat.h.in │ ├── i386 │ │ ├── jccolext-avx2.asm │ │ ├── jccolext-mmx.asm │ │ ├── jccolext-sse2.asm │ │ ├── jccolor-avx2.asm │ │ ├── jccolor-mmx.asm │ │ ├── jccolor-sse2.asm │ │ ├── jcgray-avx2.asm │ │ ├── jcgray-mmx.asm │ │ ├── jcgray-sse2.asm │ │ ├── jcgryext-avx2.asm │ │ ├── jcgryext-mmx.asm │ │ ├── jcgryext-sse2.asm │ │ ├── jchuff-sse2.asm │ │ ├── jcphuff-sse2.asm │ │ ├── jcsample-avx2.asm │ │ ├── jcsample-mmx.asm │ │ ├── jcsample-sse2.asm │ │ ├── jdcolext-avx2.asm │ │ ├── jdcolext-mmx.asm │ │ ├── jdcolext-sse2.asm │ │ ├── jdcolor-avx2.asm │ │ ├── jdcolor-mmx.asm │ │ ├── jdcolor-sse2.asm │ │ ├── jdmerge-avx2.asm │ │ ├── jdmerge-mmx.asm │ │ ├── jdmerge-sse2.asm │ │ ├── jdmrgext-avx2.asm │ │ ├── jdmrgext-mmx.asm │ │ ├── jdmrgext-sse2.asm │ │ ├── jdsample-avx2.asm │ │ ├── jdsample-mmx.asm │ │ ├── jdsample-sse2.asm │ │ ├── jfdctflt-3dn.asm │ │ ├── jfdctflt-sse.asm │ │ ├── jfdctfst-mmx.asm │ │ ├── jfdctfst-sse2.asm │ │ ├── jfdctint-avx2.asm │ │ ├── jfdctint-mmx.asm │ │ ├── jfdctint-sse2.asm │ │ ├── jidctflt-3dn.asm │ │ ├── jidctflt-sse.asm │ │ ├── jidctflt-sse2.asm │ │ ├── jidctfst-mmx.asm │ │ ├── jidctfst-sse2.asm │ │ ├── jidctint-avx2.asm │ │ ├── jidctint-mmx.asm │ │ ├── jidctint-sse2.asm │ │ ├── jidctred-mmx.asm │ │ ├── jidctred-sse2.asm │ │ ├── jquant-3dn.asm │ │ ├── jquant-mmx.asm │ │ ├── jquant-sse.asm │ │ ├── jquantf-sse2.asm │ │ ├── jquanti-avx2.asm │ │ ├── jquanti-sse2.asm │ │ ├── jsimd.c │ │ └── jsimdcpu.asm │ ├── jsimd.h │ ├── mips │ │ ├── jsimd.c │ │ ├── jsimd_dspr2.S │ │ └── jsimd_dspr2_asm.h │ ├── mips64 │ │ ├── jccolext-mmi.c │ │ ├── jccolor-mmi.c │ │ ├── jcgray-mmi.c │ │ ├── jcgryext-mmi.c │ │ ├── jcsample-mmi.c │ │ ├── jcsample.h │ │ ├── jdcolext-mmi.c │ │ ├── jdcolor-mmi.c │ │ ├── jdmerge-mmi.c │ │ ├── jdmrgext-mmi.c │ │ ├── jdsample-mmi.c │ │ ├── jfdctfst-mmi.c │ │ ├── jfdctint-mmi.c │ │ ├── jidctfst-mmi.c │ │ ├── jidctint-mmi.c │ │ ├── jquanti-mmi.c │ │ ├── jsimd.c │ │ ├── jsimd_mmi.h │ │ └── loongson-mmintrin.h │ ├── nasm │ │ ├── jcolsamp.inc │ │ ├── jdct.inc │ │ ├── jsimdcfg.inc │ │ ├── jsimdcfg.inc.h │ │ └── jsimdext.inc │ ├── powerpc │ │ ├── jccolext-altivec.c │ │ ├── jccolor-altivec.c │ │ ├── jcgray-altivec.c │ │ ├── jcgryext-altivec.c │ │ ├── jcsample-altivec.c │ │ ├── jcsample.h │ │ ├── jdcolext-altivec.c │ │ ├── jdcolor-altivec.c │ │ ├── jdmerge-altivec.c │ │ ├── jdmrgext-altivec.c │ │ ├── jdsample-altivec.c │ │ ├── jfdctfst-altivec.c │ │ ├── jfdctint-altivec.c │ │ ├── jidctfst-altivec.c │ │ ├── jidctint-altivec.c │ │ ├── jquanti-altivec.c │ │ ├── jsimd.c │ │ └── jsimd_altivec.h │ └── x86_64 │ │ ├── jccolext-avx2.asm │ │ ├── jccolext-sse2.asm │ │ ├── jccolor-avx2.asm │ │ ├── jccolor-sse2.asm │ │ ├── jcgray-avx2.asm │ │ ├── jcgray-sse2.asm │ │ ├── jcgryext-avx2.asm │ │ ├── jcgryext-sse2.asm │ │ ├── jchuff-sse2.asm │ │ ├── jcphuff-sse2.asm │ │ ├── jcsample-avx2.asm │ │ ├── jcsample-sse2.asm │ │ ├── jdcolext-avx2.asm │ │ ├── jdcolext-sse2.asm │ │ ├── jdcolor-avx2.asm │ │ ├── jdcolor-sse2.asm │ │ ├── jdmerge-avx2.asm │ │ ├── jdmerge-sse2.asm │ │ ├── jdmrgext-avx2.asm │ │ ├── jdmrgext-sse2.asm │ │ ├── jdsample-avx2.asm │ │ ├── jdsample-sse2.asm │ │ ├── jfdctflt-sse.asm │ │ ├── jfdctfst-sse2.asm │ │ ├── jfdctint-avx2.asm │ │ ├── jfdctint-sse2.asm │ │ ├── jidctflt-sse2.asm │ │ ├── jidctfst-sse2.asm │ │ ├── jidctint-avx2.asm │ │ ├── jidctint-sse2.asm │ │ ├── jidctred-sse2.asm │ │ ├── jquantf-sse2.asm │ │ ├── jquanti-avx2.asm │ │ ├── jquanti-sse2.asm │ │ ├── jsimd.c │ │ └── jsimdcpu.asm ├── strtest.c ├── structure.txt ├── testimages │ ├── big_building16.ppm │ ├── big_tree8.bmp │ ├── big_tree8.txt │ ├── test.scan │ ├── test1.icc │ ├── test1.icc.txt │ ├── test2.icc │ ├── test2.icc.txt │ ├── testimgari.jpg │ ├── testimgint.jpg │ ├── testorig.jpg │ ├── testorig.ppm │ ├── testorig12.jpg │ ├── vgl_5674_0098.bmp │ ├── vgl_6434_0018a.bmp │ └── vgl_6548_0026a.bmp ├── tjbench.c ├── tjbenchtest.in ├── tjexample.c ├── tjexampletest.in ├── tjunittest.c ├── tjutil.c ├── tjutil.h ├── transupp.c ├── transupp.h ├── turbojpeg-jni.c ├── turbojpeg-mapfile ├── turbojpeg-mapfile.jni ├── turbojpeg-mp.c ├── turbojpeg.c ├── turbojpeg.h ├── usage.txt ├── win │ ├── gcc │ │ └── projectTargets-release.cmake.in │ ├── jpeg.rc.in │ ├── jpeg62.def │ ├── jpeg7.def │ ├── jpeg8.def │ ├── projectTargets.cmake.in │ ├── turbojpeg.rc.in │ └── vc │ │ └── projectTargets-release.cmake.in ├── wizard.txt ├── wrbmp.c ├── wrgif.c ├── wrjpgcom.1 ├── wrjpgcom.c ├── wrppm.c └── wrtarga.c ├── libogg-1.3.5 ├── AUTHORS ├── CHANGES ├── CMakeLists.txt ├── COPYING ├── Makefile.am ├── Makefile.in ├── README.md ├── aclocal.m4 ├── cmake │ ├── CheckSizes.cmake │ └── OggConfig.cmake.in ├── compile ├── config.guess ├── config.h.in ├── config.sub ├── configure ├── configure.ac ├── depcomp ├── doc │ ├── Makefile.am │ ├── Makefile.in │ ├── fish_xiph_org.png │ ├── framing.html │ ├── index.html │ ├── libogg │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── bitpacking.html │ │ ├── datastructures.html │ │ ├── decoding.html │ │ ├── encoding.html │ │ ├── general.html │ │ ├── index.html │ │ ├── ogg_iovec_t.html │ │ ├── ogg_packet.html │ │ ├── ogg_packet_clear.html │ │ ├── ogg_page.html │ │ ├── ogg_page_bos.html │ │ ├── ogg_page_checksum_set.html │ │ ├── ogg_page_continued.html │ │ ├── ogg_page_eos.html │ │ ├── ogg_page_granulepos.html │ │ ├── ogg_page_packets.html │ │ ├── ogg_page_pageno.html │ │ ├── ogg_page_serialno.html │ │ ├── ogg_page_version.html │ │ ├── ogg_stream_check.html │ │ ├── ogg_stream_clear.html │ │ ├── ogg_stream_destroy.html │ │ ├── ogg_stream_eos.html │ │ ├── ogg_stream_flush.html │ │ ├── ogg_stream_flush_fill.html │ │ ├── ogg_stream_init.html │ │ ├── ogg_stream_iovecin.html │ │ ├── ogg_stream_packetin.html │ │ ├── ogg_stream_packetout.html │ │ ├── ogg_stream_packetpeek.html │ │ ├── ogg_stream_pagein.html │ │ ├── ogg_stream_pageout.html │ │ ├── ogg_stream_pageout_fill.html │ │ ├── ogg_stream_reset.html │ │ ├── ogg_stream_reset_serialno.html │ │ ├── ogg_stream_state.html │ │ ├── ogg_sync_buffer.html │ │ ├── ogg_sync_check.html │ │ ├── ogg_sync_clear.html │ │ ├── ogg_sync_destroy.html │ │ ├── ogg_sync_init.html │ │ ├── ogg_sync_pageout.html │ │ ├── ogg_sync_pageseek.html │ │ ├── ogg_sync_reset.html │ │ ├── ogg_sync_state.html │ │ ├── ogg_sync_wrote.html │ │ ├── oggpack_adv.html │ │ ├── oggpack_adv1.html │ │ ├── oggpack_bits.html │ │ ├── oggpack_buffer.html │ │ ├── oggpack_bytes.html │ │ ├── oggpack_get_buffer.html │ │ ├── oggpack_look.html │ │ ├── oggpack_look1.html │ │ ├── oggpack_read.html │ │ ├── oggpack_read1.html │ │ ├── oggpack_readinit.html │ │ ├── oggpack_reset.html │ │ ├── oggpack_write.html │ │ ├── oggpack_writealign.html │ │ ├── oggpack_writecheck.html │ │ ├── oggpack_writeclear.html │ │ ├── oggpack_writecopy.html │ │ ├── oggpack_writeinit.html │ │ ├── oggpack_writetrunc.html │ │ ├── overview.html │ │ ├── reference.html │ │ └── style.css │ ├── multiplex1.png │ ├── ogg-multiplex.html │ ├── oggstream.html │ ├── packets.png │ ├── pages.png │ ├── rfc3533.txt │ ├── rfc5334.txt │ ├── skeleton.html │ ├── stream.png │ ├── vorbisword2.png │ ├── white-ogg.png │ └── white-xifish.png ├── include │ ├── Makefile.am │ ├── Makefile.in │ └── ogg │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── config_types.h.in │ │ ├── ogg.h │ │ └── os_types.h ├── install-sh ├── libogg.spec ├── libogg.spec.in ├── ltmain.sh ├── m4 │ ├── libtool.m4 │ ├── ltoptions.m4 │ ├── ltsugar.m4 │ ├── ltversion.m4 │ └── lt~obsolete.m4 ├── missing ├── ogg-uninstalled.pc.in ├── ogg.m4 ├── ogg.pc.in ├── src │ ├── Makefile.am │ ├── Makefile.in │ ├── bitwise.c │ ├── crctable.h │ └── framing.c └── win32 │ ├── .gitignore │ ├── VS2015 │ ├── libogg.sln │ ├── libogg.vcxproj │ └── libogg.vcxproj.filters │ └── ogg.def ├── libopenmpt-0.7.11 ├── .clang-format ├── CMakeLists.txt ├── FindOgg.cmake ├── FindVorbis.cmake ├── LICENSE ├── Makefile ├── README.md ├── build │ ├── android_ndk │ │ ├── Android.mk │ │ ├── Application.mk │ │ └── README.AndroidNDK.txt │ ├── dist.mk │ ├── download_externals.sh │ ├── make │ │ ├── config-afl.mk │ │ ├── config-aocc.mk │ │ ├── config-clang.mk │ │ ├── config-defaults.mk │ │ ├── config-djgpp.mk │ │ ├── config-emscripten.mk │ │ ├── config-gcc.mk │ │ ├── config-icx.mk │ │ ├── config-macos.mk │ │ ├── config-mingw-w64.mk │ │ ├── config-mingw.mk │ │ ├── config-mingw32crt.mk │ │ ├── config-standard.mk │ │ ├── config-unknown.mk │ │ ├── test-pre.js │ │ ├── warnings-clang.mk │ │ └── warnings-gcc.mk │ ├── svn_version │ │ ├── svn_version.h │ │ ├── svn_version.template.subwcrev.h │ │ └── update_svn_version_vs_premake.cmd │ ├── xcode-ios │ │ ├── ext │ │ │ ├── mpg123.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── ogg.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── vorbis.xcodeproj │ │ │ │ └── project.pbxproj │ │ ├── libopenmpt.xcodeproj │ │ │ └── project.pbxproj │ │ └── libopenmpt.xcworkspace │ │ │ └── contents.xcworkspacedata │ └── xcode-macosx │ │ ├── ext │ │ ├── mpg123.xcodeproj │ │ │ └── project.pbxproj │ │ ├── ogg.xcodeproj │ │ │ └── project.pbxproj │ │ └── vorbis.xcodeproj │ │ │ └── project.pbxproj │ │ ├── libopenmpt.xcodeproj │ │ └── project.pbxproj │ │ └── libopenmpt.xcworkspace │ │ └── contents.xcworkspacedata ├── common │ ├── BuildSettings.h │ ├── BuildSettingsCompiler.h │ ├── ComponentManager.cpp │ ├── ComponentManager.h │ ├── Dither.h │ ├── FileReader.h │ ├── FileReaderFwd.h │ ├── Logging.cpp │ ├── Logging.h │ ├── Profiler.cpp │ ├── Profiler.h │ ├── misc_util.h │ ├── mptAssert.h │ ├── mptBaseMacros.h │ ├── mptBaseTypes.h │ ├── mptBaseUtils.h │ ├── mptCPU.h │ ├── mptFileIO.cpp │ ├── mptFileIO.h │ ├── mptFileTemporary.cpp │ ├── mptFileTemporary.h │ ├── mptFileType.cpp │ ├── mptFileType.h │ ├── mptPathString.cpp │ ├── mptPathString.h │ ├── mptRandom.cpp │ ├── mptRandom.h │ ├── mptString.h │ ├── mptStringBuffer.cpp │ ├── mptStringBuffer.h │ ├── mptStringFormat.h │ ├── mptTime.cpp │ ├── mptTime.h │ ├── serialization_utils.cpp │ ├── serialization_utils.h │ ├── stdafx.h │ ├── version.cpp │ ├── version.h │ └── versionNumber.h ├── contrib │ ├── fuzzing │ │ ├── all_formats.dict │ │ ├── build.sh │ │ ├── fuzz-main.sh │ │ ├── fuzz-secondary1.sh │ │ ├── fuzz-secondary2.sh │ │ ├── fuzz-settings.sh │ │ ├── fuzz.cpp │ │ ├── get-afl.sh │ │ └── readme.md │ ├── libmodplug-0.8.8.5 │ │ ├── LICENSE │ │ ├── Makefile.am │ │ ├── autogen.sh │ │ ├── clean.sh │ │ ├── config.h.in │ │ ├── configure.ac │ │ ├── dist.sh │ │ ├── libmodplug.pc.in │ │ ├── libmodplug │ │ │ ├── modplug.h │ │ │ ├── sndfile.h │ │ │ └── stdafx.h │ │ ├── libopenmpt_modplug.c │ │ ├── libopenmpt_modplug.pc.in │ │ ├── libopenmpt_modplug_cpp.cpp │ │ ├── m4 │ │ │ └── ax_cxx_compile_stdcxx.m4 │ │ └── test.sh │ ├── libmodplug-0.8.9.0 │ │ ├── LICENSE │ │ ├── Makefile.am │ │ ├── autogen.sh │ │ ├── clean.sh │ │ ├── config.h.in │ │ ├── configure.ac │ │ ├── dist.sh │ │ ├── libmodplug.pc.in │ │ ├── libmodplug │ │ │ ├── modplug.h │ │ │ ├── sndfile.h │ │ │ └── stdafx.h │ │ ├── libopenmpt_modplug.c │ │ ├── libopenmpt_modplug.pc.in │ │ ├── libopenmpt_modplug_cpp.cpp │ │ ├── m4 │ │ │ └── ax_cxx_compile_stdcxx.m4 │ │ └── test.sh │ ├── libopenmpt │ │ └── libopenmpt_bass.c │ └── premake │ │ └── snapshot-premake-master.sh ├── doc │ ├── contributing.md │ ├── libopenmpt_styleguide.md │ └── module_formats.md ├── examples │ ├── .clang-format │ ├── libopenmpt_example_c.c │ ├── libopenmpt_example_c_mem.c │ ├── libopenmpt_example_c_pipe.c │ ├── libopenmpt_example_c_probe.c │ ├── libopenmpt_example_c_stdout.c │ ├── libopenmpt_example_c_unsafe.c │ └── libopenmpt_example_cxx.cpp ├── include │ ├── minimp3 │ │ ├── LICENSE │ │ ├── OpenMPT.txt │ │ ├── minimp3.c │ │ └── minimp3.h │ ├── miniz │ │ ├── LICENSE │ │ ├── OpenMPT.txt │ │ ├── miniz.c │ │ └── miniz.h │ └── stb_vorbis │ │ ├── OpenMPT.txt │ │ └── stb_vorbis.c ├── libopenmpt │ ├── .clang-format │ ├── Doxyfile │ ├── bindings │ │ └── freebasic │ │ │ ├── libopenmpt.bi │ │ │ └── libopenmpt_ext.bi │ ├── in_openmpt │ │ ├── in_openmpt.cpp │ │ └── in_openmpt.txt │ ├── libopenmpt.h │ ├── libopenmpt.hpp │ ├── libopenmpt.pc.in │ ├── libopenmpt_c.cpp │ ├── libopenmpt_config.h │ ├── libopenmpt_cxx.cpp │ ├── libopenmpt_ext.h │ ├── libopenmpt_ext.hpp │ ├── libopenmpt_ext_impl.cpp │ ├── libopenmpt_ext_impl.hpp │ ├── libopenmpt_impl.cpp │ ├── libopenmpt_impl.hpp │ ├── libopenmpt_internal.h │ ├── libopenmpt_stream_callbacks_buffer.h │ ├── libopenmpt_stream_callbacks_fd.h │ ├── libopenmpt_stream_callbacks_file.h │ ├── libopenmpt_stream_callbacks_file_mingw.h │ ├── libopenmpt_stream_callbacks_file_msvcrt.h │ ├── libopenmpt_stream_callbacks_file_posix.h │ ├── libopenmpt_stream_callbacks_file_posix_lfs64.h │ ├── libopenmpt_version.h │ ├── libopenmpt_version.mk │ ├── libopenmpt_version.rc │ ├── plugin-common │ │ ├── libopenmpt_plugin_gui.cpp │ │ ├── libopenmpt_plugin_gui.hpp │ │ ├── libopenmpt_plugin_gui.rc │ │ ├── libopenmpt_plugin_settings.hpp │ │ └── resource.h │ └── xmp-openmpt │ │ ├── xmp-openmpt.cpp │ │ └── xmp-openmpt.txt ├── openmpt123 │ ├── .clang-format │ ├── openmpt123.cpp │ ├── openmpt123.h2m │ ├── openmpt123.hpp │ ├── openmpt123.manifest │ ├── openmpt123_allegro42.hpp │ ├── openmpt123_config.hpp │ ├── openmpt123_flac.hpp │ ├── openmpt123_mmio.hpp │ ├── openmpt123_portaudio.hpp │ ├── openmpt123_pulseaudio.hpp │ ├── openmpt123_raw.hpp │ ├── openmpt123_sdl2.hpp │ ├── openmpt123_sndfile.hpp │ ├── openmpt123_stdout.hpp │ └── openmpt123_waveout.hpp ├── sounddsp │ ├── AGC.cpp │ ├── AGC.h │ ├── DSP.cpp │ ├── DSP.h │ ├── EQ.cpp │ ├── EQ.h │ ├── Reverb.cpp │ └── Reverb.h ├── soundlib │ ├── AudioCriticalSection.cpp │ ├── AudioCriticalSection.h │ ├── AudioReadTarget.h │ ├── BitReader.h │ ├── Container.h │ ├── ContainerMMCMP.cpp │ ├── ContainerPP20.cpp │ ├── ContainerUMX.cpp │ ├── ContainerXPK.cpp │ ├── Dlsbank.cpp │ ├── Dlsbank.h │ ├── Fastmix.cpp │ ├── FloatMixer.h │ ├── ITCompression.cpp │ ├── ITCompression.h │ ├── ITTools.cpp │ ├── ITTools.h │ ├── InstrumentExtensions.cpp │ ├── IntMixer.h │ ├── Load_667.cpp │ ├── Load_669.cpp │ ├── Load_amf.cpp │ ├── Load_ams.cpp │ ├── Load_c67.cpp │ ├── Load_dbm.cpp │ ├── Load_digi.cpp │ ├── Load_dmf.cpp │ ├── Load_dsm.cpp │ ├── Load_dsym.cpp │ ├── Load_dtm.cpp │ ├── Load_far.cpp │ ├── Load_fmt.cpp │ ├── Load_gdm.cpp │ ├── Load_gt2.cpp │ ├── Load_imf.cpp │ ├── Load_it.cpp │ ├── Load_itp.cpp │ ├── Load_mdl.cpp │ ├── Load_med.cpp │ ├── Load_mid.cpp │ ├── Load_mo3.cpp │ ├── Load_mod.cpp │ ├── Load_mt2.cpp │ ├── Load_mtm.cpp │ ├── Load_mus_km.cpp │ ├── Load_okt.cpp │ ├── Load_plm.cpp │ ├── Load_psm.cpp │ ├── Load_ptm.cpp │ ├── Load_s3m.cpp │ ├── Load_sfx.cpp │ ├── Load_stm.cpp │ ├── Load_stp.cpp │ ├── Load_symmod.cpp │ ├── Load_uax.cpp │ ├── Load_ult.cpp │ ├── Load_wav.cpp │ ├── Load_xm.cpp │ ├── Load_xmf.cpp │ ├── Loaders.h │ ├── MIDIEvents.cpp │ ├── MIDIEvents.h │ ├── MIDIMacros.cpp │ ├── MIDIMacros.h │ ├── MPEGFrame.cpp │ ├── MPEGFrame.h │ ├── Message.cpp │ ├── Message.h │ ├── MixFuncTable.cpp │ ├── MixFuncTable.h │ ├── Mixer.h │ ├── MixerInterface.h │ ├── MixerLoops.cpp │ ├── MixerLoops.h │ ├── MixerSettings.cpp │ ├── MixerSettings.h │ ├── ModChannel.cpp │ ├── ModChannel.h │ ├── ModInstrument.cpp │ ├── ModInstrument.h │ ├── ModSample.cpp │ ├── ModSample.h │ ├── ModSampleCopy.h │ ├── ModSequence.cpp │ ├── ModSequence.h │ ├── OPL.cpp │ ├── OPL.h │ ├── OggStream.cpp │ ├── OggStream.h │ ├── Paula.cpp │ ├── Paula.h │ ├── Resampler.h │ ├── RowVisitor.cpp │ ├── RowVisitor.h │ ├── S3MTools.cpp │ ├── S3MTools.h │ ├── SampleCopy.h │ ├── SampleFormatBRR.cpp │ ├── SampleFormatFLAC.cpp │ ├── SampleFormatMP3.cpp │ ├── SampleFormatMediaFoundation.cpp │ ├── SampleFormatOpus.cpp │ ├── SampleFormatSFZ.cpp │ ├── SampleFormatVorbis.cpp │ ├── SampleFormats.cpp │ ├── SampleIO.cpp │ ├── SampleIO.h │ ├── SampleNormalize.h │ ├── Snd_defs.h │ ├── Snd_flt.cpp │ ├── Snd_fx.cpp │ ├── Sndfile.cpp │ ├── Sndfile.h │ ├── Sndmix.cpp │ ├── SoundFilePlayConfig.cpp │ ├── SoundFilePlayConfig.h │ ├── Tables.cpp │ ├── Tables.h │ ├── Tagging.cpp │ ├── Tagging.h │ ├── TinyFFT.cpp │ ├── TinyFFT.h │ ├── UMXTools.cpp │ ├── UMXTools.h │ ├── UpgradeModule.cpp │ ├── WAVTools.cpp │ ├── WAVTools.h │ ├── WindowedFIR.cpp │ ├── WindowedFIR.h │ ├── XMTools.cpp │ ├── XMTools.h │ ├── load_j2b.cpp │ ├── mod_specifications.cpp │ ├── mod_specifications.h │ ├── modcommand.cpp │ ├── modcommand.h │ ├── modsmp_ctrl.cpp │ ├── modsmp_ctrl.h │ ├── opal.h │ ├── pattern.cpp │ ├── pattern.h │ ├── patternContainer.cpp │ ├── patternContainer.h │ ├── plugins │ │ ├── DigiBoosterEcho.cpp │ │ ├── DigiBoosterEcho.h │ │ ├── LFOPlugin.cpp │ │ ├── LFOPlugin.h │ │ ├── OpCodes.h │ │ ├── PlugInterface.cpp │ │ ├── PlugInterface.h │ │ ├── PluginManager.cpp │ │ ├── PluginManager.h │ │ ├── PluginMixBuffer.h │ │ ├── PluginStructs.h │ │ ├── SymMODEcho.cpp │ │ ├── SymMODEcho.h │ │ └── dmo │ │ │ ├── Chorus.cpp │ │ │ ├── Chorus.h │ │ │ ├── Compressor.cpp │ │ │ ├── Compressor.h │ │ │ ├── DMOPlugin.cpp │ │ │ ├── DMOPlugin.h │ │ │ ├── DMOUtils.cpp │ │ │ ├── DMOUtils.h │ │ │ ├── Distortion.cpp │ │ │ ├── Distortion.h │ │ │ ├── Echo.cpp │ │ │ ├── Echo.h │ │ │ ├── Flanger.cpp │ │ │ ├── Flanger.h │ │ │ ├── Gargle.cpp │ │ │ ├── Gargle.h │ │ │ ├── I3DL2Reverb.cpp │ │ │ ├── I3DL2Reverb.h │ │ │ ├── ParamEq.cpp │ │ │ ├── ParamEq.h │ │ │ ├── WavesReverb.cpp │ │ │ └── WavesReverb.h │ ├── tuning.cpp │ ├── tuning.h │ ├── tuningCollection.cpp │ ├── tuningbase.h │ └── tuningcollection.h ├── src │ ├── mpt │ │ ├── .clang-format │ │ ├── LICENSE.BSD-3-Clause.txt │ │ ├── LICENSE.BSL-1.0.txt │ │ ├── arch │ │ │ ├── arch.hpp │ │ │ ├── feature_flags.hpp │ │ │ └── x86_amd64.hpp │ │ ├── audio │ │ │ ├── sample.hpp │ │ │ └── span.hpp │ │ ├── base │ │ │ ├── algorithm.hpp │ │ │ ├── aligned_array.hpp │ │ │ ├── alloc.hpp │ │ │ ├── arithmetic_shift.hpp │ │ │ ├── array.hpp │ │ │ ├── bit.hpp │ │ │ ├── check_platform.hpp │ │ │ ├── compiletime_warning.hpp │ │ │ ├── constexpr_throw.hpp │ │ │ ├── detect.hpp │ │ │ ├── detect_arch.hpp │ │ │ ├── detect_compiler.hpp │ │ │ ├── detect_libc.hpp │ │ │ ├── detect_libcxx.hpp │ │ │ ├── detect_os.hpp │ │ │ ├── detect_quirks.hpp │ │ │ ├── floatingpoint.hpp │ │ │ ├── integer.hpp │ │ │ ├── macros.hpp │ │ │ ├── math.hpp │ │ │ ├── memory.hpp │ │ │ ├── namespace.hpp │ │ │ ├── numbers.hpp │ │ │ ├── numeric.hpp │ │ │ ├── pointer.hpp │ │ │ ├── preprocessor.hpp │ │ │ ├── saturate_cast.hpp │ │ │ ├── saturate_round.hpp │ │ │ ├── secure.hpp │ │ │ ├── semantic_version.hpp │ │ │ ├── source_location.hpp │ │ │ ├── span.hpp │ │ │ ├── tests │ │ │ │ ├── tests_base_arithmetic_shift.hpp │ │ │ │ ├── tests_base_bit.hpp │ │ │ │ ├── tests_base_math.hpp │ │ │ │ ├── tests_base_numeric.hpp │ │ │ │ ├── tests_base_saturate_cast.hpp │ │ │ │ ├── tests_base_saturate_round.hpp │ │ │ │ └── tests_base_wrapping_divide.hpp │ │ │ ├── utility.hpp │ │ │ ├── version.hpp │ │ │ └── wrapping_divide.hpp │ │ ├── binary │ │ │ ├── base64.hpp │ │ │ ├── base64url.hpp │ │ │ ├── hex.hpp │ │ │ └── tests │ │ │ │ └── tests_binary.hpp │ │ ├── check │ │ │ ├── compiler.hpp │ │ │ ├── libc.hpp │ │ │ ├── mfc.hpp │ │ │ └── windows.hpp │ │ ├── crc │ │ │ ├── crc.hpp │ │ │ └── tests │ │ │ │ └── tests_crc.hpp │ │ ├── detect │ │ │ ├── dl.hpp │ │ │ ├── ltdl.hpp │ │ │ ├── mfc.hpp │ │ │ └── nlohmann_json.hpp │ │ ├── endian │ │ │ ├── floatingpoint.hpp │ │ │ ├── int24.hpp │ │ │ ├── integer.hpp │ │ │ ├── tests │ │ │ │ ├── tests_endian_floatingpoint.hpp │ │ │ │ ├── tests_endian_int24.hpp │ │ │ │ └── tests_endian_integer.hpp │ │ │ └── type_traits.hpp │ │ ├── environment │ │ │ └── environment.hpp │ │ ├── exception │ │ │ ├── exception.hpp │ │ │ ├── exception_text.hpp │ │ │ ├── logic_error.hpp │ │ │ └── runtime_error.hpp │ │ ├── format │ │ │ ├── concat.hpp │ │ │ ├── default_floatingpoint.hpp │ │ │ ├── default_formatter.hpp │ │ │ ├── default_integer.hpp │ │ │ ├── default_string.hpp │ │ │ ├── helpers.hpp │ │ │ ├── join.hpp │ │ │ ├── message.hpp │ │ │ ├── message_macros.hpp │ │ │ ├── simple.hpp │ │ │ ├── simple_floatingpoint.hpp │ │ │ ├── simple_integer.hpp │ │ │ ├── simple_spec.hpp │ │ │ └── tests │ │ │ │ ├── tests_format_message.hpp │ │ │ │ └── tests_format_simple.hpp │ │ ├── io │ │ │ ├── base.hpp │ │ │ ├── io.hpp │ │ │ ├── io_span.hpp │ │ │ ├── io_stdstream.hpp │ │ │ ├── io_virtual_wrapper.hpp │ │ │ └── tests │ │ │ │ └── tests_io.hpp │ │ ├── io_file │ │ │ ├── fileref.hpp │ │ │ ├── fstream.hpp │ │ │ ├── inputfile.hpp │ │ │ └── outputfile.hpp │ │ ├── io_file_adapter │ │ │ └── fileadapter.hpp │ │ ├── io_file_read │ │ │ └── inputfile_filecursor.hpp │ │ ├── io_file_unique │ │ │ ├── unique_basename.hpp │ │ │ └── unique_tempfilename.hpp │ │ ├── io_read │ │ │ ├── callbackstream.hpp │ │ │ ├── filecursor.hpp │ │ │ ├── filecursor_callbackstream.hpp │ │ │ ├── filecursor_filename_traits.hpp │ │ │ ├── filecursor_memory.hpp │ │ │ ├── filecursor_stdstream.hpp │ │ │ ├── filecursor_traits_filedata.hpp │ │ │ ├── filecursor_traits_memory.hpp │ │ │ ├── filedata.hpp │ │ │ ├── filedata_base.hpp │ │ │ ├── filedata_base_buffered.hpp │ │ │ ├── filedata_base_seekable.hpp │ │ │ ├── filedata_base_unseekable.hpp │ │ │ ├── filedata_callbackstream.hpp │ │ │ ├── filedata_memory.hpp │ │ │ ├── filedata_stdstream.hpp │ │ │ └── filereader.hpp │ │ ├── io_write │ │ │ └── buffer.hpp │ │ ├── mutex │ │ │ └── mutex.hpp │ │ ├── osinfo │ │ │ ├── class.hpp │ │ │ ├── dos_memory.hpp │ │ │ ├── dos_version.hpp │ │ │ ├── windows_version.hpp │ │ │ └── windows_wine_version.hpp │ │ ├── out_of_memory │ │ │ └── out_of_memory.hpp │ │ ├── parse │ │ │ ├── parse.hpp │ │ │ ├── split.hpp │ │ │ └── tests │ │ │ │ └── tests_parse.hpp │ │ ├── path │ │ │ ├── basic_path.hpp │ │ │ ├── native_path.hpp │ │ │ ├── os_path.hpp │ │ │ ├── os_path_long.hpp │ │ │ └── path.hpp │ │ ├── random │ │ │ ├── crand.hpp │ │ │ ├── default_engines.hpp │ │ │ ├── device.hpp │ │ │ ├── engine.hpp │ │ │ ├── engine_lcg.hpp │ │ │ ├── random.hpp │ │ │ ├── seed.hpp │ │ │ └── tests │ │ │ │ └── tests_random.hpp │ │ ├── string │ │ │ ├── buffer.hpp │ │ │ ├── tests │ │ │ │ ├── tests_string_buffer.hpp │ │ │ │ └── tests_string_utility.hpp │ │ │ ├── types.hpp │ │ │ └── utility.hpp │ │ ├── string_transcode │ │ │ ├── macros.hpp │ │ │ ├── tests │ │ │ │ └── tests_string_transcode.hpp │ │ │ └── transcode.hpp │ │ ├── system_error │ │ │ └── system_error.hpp │ │ ├── test │ │ │ ├── test.hpp │ │ │ └── test_macros.hpp │ │ └── uuid │ │ │ ├── guid.hpp │ │ │ ├── tests │ │ │ └── tests_uuid.hpp │ │ │ └── uuid.hpp │ └── openmpt │ │ ├── all │ │ └── BuildSettings.hpp │ │ ├── base │ │ ├── Endian.hpp │ │ ├── FlagSet.hpp │ │ ├── Int24.hpp │ │ └── Types.hpp │ │ ├── logging │ │ └── Logger.hpp │ │ ├── random │ │ └── ModPlug.hpp │ │ └── soundbase │ │ ├── Copy.hpp │ │ ├── CopyMix.hpp │ │ ├── Dither.hpp │ │ ├── DitherModPlug.hpp │ │ ├── DitherNone.hpp │ │ ├── DitherSimple.hpp │ │ ├── MixSample.hpp │ │ ├── MixSampleConvert.hpp │ │ ├── SampleClip.hpp │ │ ├── SampleClipFixedPoint.hpp │ │ ├── SampleConvert.hpp │ │ ├── SampleConvertFixedPoint.hpp │ │ ├── SampleDecode.hpp │ │ ├── SampleEncode.hpp │ │ └── SampleFormat.hpp └── test │ ├── TestTools.h │ ├── TestToolsLib.cpp │ ├── TestToolsLib.h │ ├── TestToolsTracker.h │ ├── libopenmpt_test.cpp │ ├── libopenmpt_test.manifest │ ├── mpt_tests_base.cpp │ ├── mpt_tests_binary.cpp │ ├── mpt_tests_crc.cpp │ ├── mpt_tests_endian.cpp │ ├── mpt_tests_format.cpp │ ├── mpt_tests_io.cpp │ ├── mpt_tests_parse.cpp │ ├── mpt_tests_random.cpp │ ├── mpt_tests_string.cpp │ ├── mpt_tests_string_transcode.cpp │ ├── mpt_tests_uuid.cpp │ ├── test.cpp │ ├── test.flac │ ├── test.h │ ├── test.mod │ ├── test.mptm │ ├── test.s3m │ └── test.xm ├── libpng-1.6.40 ├── .appveyor.yml ├── .gitignore ├── .travis.yml ├── ANNOUNCE ├── AUTHORS ├── CHANGES ├── CMakeLists.txt ├── INSTALL ├── LICENSE ├── Makefile.am ├── Makefile.in ├── README ├── TODO ├── TRADEMARK ├── aclocal.m4 ├── arm │ ├── arm_init.c │ ├── filter_neon.S │ ├── filter_neon_intrinsics.c │ └── palette_neon_intrinsics.c ├── autogen.sh ├── ci │ ├── ci_verify_cmake.sh │ ├── ci_verify_configure.sh │ └── ci_verify_makefiles.sh ├── compile ├── config.guess ├── config.h.in ├── config.sub ├── configure ├── configure.ac ├── contrib │ ├── README.txt │ ├── arm-neon │ │ ├── README │ │ ├── android-ndk.c │ │ ├── linux-auxv.c │ │ └── linux.c │ ├── conftest │ │ ├── README │ │ ├── pngcp.dfa │ │ ├── read.dfa │ │ ├── s_read.dfa │ │ ├── s_write.dfa │ │ ├── simple.dfa │ │ └── write.dfa │ ├── examples │ │ ├── README.txt │ │ ├── iccfrompng.c │ │ ├── pngpixel.c │ │ ├── pngtopng.c │ │ └── simpleover.c │ ├── gregbook │ │ ├── COPYING │ │ ├── LICENSE │ │ ├── Makefile.mingw32 │ │ ├── Makefile.sgi │ │ ├── Makefile.unx │ │ ├── Makefile.w32 │ │ ├── README │ │ ├── makevms.com │ │ ├── readpng.c │ │ ├── readpng.h │ │ ├── readpng2.c │ │ ├── readpng2.h │ │ ├── readppm.c │ │ ├── rpng-win.c │ │ ├── rpng-x.c │ │ ├── rpng2-win.c │ │ ├── rpng2-x.c │ │ ├── toucan.png │ │ ├── wpng.c │ │ ├── writepng.c │ │ └── writepng.h │ ├── libtests │ │ ├── fakepng.c │ │ ├── gentests.sh │ │ ├── makepng.c │ │ ├── pngimage.c │ │ ├── pngstest-errors.h │ │ ├── pngstest.c │ │ ├── pngunknown.c │ │ ├── pngvalid.c │ │ ├── readpng.c │ │ ├── tarith.c │ │ └── timepng.c │ ├── mips-msa │ │ ├── README │ │ └── linux.c │ ├── oss-fuzz │ │ ├── Dockerfile │ │ ├── README.txt │ │ ├── build.sh │ │ ├── libpng_read_fuzzer.cc │ │ ├── libpng_read_fuzzer.options │ │ └── png.dict │ ├── pngminim │ │ ├── README │ │ ├── decoder │ │ │ ├── README │ │ │ ├── pngusr.dfa │ │ │ └── pngusr.h │ │ ├── encoder │ │ │ ├── README │ │ │ ├── pngusr.dfa │ │ │ └── pngusr.h │ │ └── preader │ │ │ ├── README │ │ │ ├── pngusr.dfa │ │ │ └── pngusr.h │ ├── pngminus │ │ ├── CHANGES.txt │ │ ├── CMakeLists.txt │ │ ├── LICENSE.txt │ │ ├── README.txt │ │ ├── makevms.com │ │ ├── png2pnm.bat │ │ ├── png2pnm.c │ │ ├── png2pnm.sh │ │ ├── pngminus.bat │ │ ├── pngminus.sh │ │ ├── pnm2png.bat │ │ ├── pnm2png.c │ │ └── pnm2png.sh │ ├── pngsuite │ │ ├── README │ │ ├── bad_interlace_conversions.txt │ │ ├── basn0g01.png │ │ ├── basn0g02.png │ │ ├── basn0g04.png │ │ ├── basn0g08.png │ │ ├── basn0g16.png │ │ ├── basn2c08.png │ │ ├── basn2c16.png │ │ ├── basn3p01.png │ │ ├── basn3p02.png │ │ ├── basn3p04.png │ │ ├── basn3p08.png │ │ ├── basn4a08.png │ │ ├── basn4a16.png │ │ ├── basn6a08.png │ │ ├── basn6a16.png │ │ ├── ftbbn0g01.png │ │ ├── ftbbn0g02.png │ │ ├── ftbbn0g04.png │ │ ├── ftbbn2c16.png │ │ ├── ftbbn3p08.png │ │ ├── ftbgn2c16.png │ │ ├── ftbgn3p08.png │ │ ├── ftbrn2c08.png │ │ ├── ftbwn0g16.png │ │ ├── ftbwn3p08.png │ │ ├── ftbyn3p08.png │ │ ├── ftp0n0g08.png │ │ ├── ftp0n2c08.png │ │ ├── ftp0n3p08.png │ │ ├── ftp1n3p08.png │ │ ├── ibasn0g08.png │ │ ├── ibasn0g16.png │ │ ├── ibasn2c08.png │ │ ├── ibasn2c16.png │ │ ├── ibasn3p08.png │ │ ├── ibasn4a08.png │ │ ├── ibasn4a16.png │ │ ├── ibasn6a08.png │ │ ├── ibasn6a16.png │ │ ├── iftbbn2c16.png │ │ ├── iftbbn3p08.png │ │ ├── iftbgn2c16.png │ │ ├── iftbgn3p08.png │ │ ├── iftbrn2c08.png │ │ ├── iftbwn0g16.png │ │ ├── iftbwn3p08.png │ │ ├── iftbyn3p08.png │ │ ├── iftp0n0g08.png │ │ ├── iftp0n2c08.png │ │ ├── iftp0n3p08.png │ │ ├── iftp1n3p08.png │ │ └── interlaced │ │ │ ├── README │ │ │ ├── ibasn0g01.png │ │ │ ├── ibasn0g02.png │ │ │ ├── ibasn0g04.png │ │ │ ├── ibasn3p01.png │ │ │ ├── ibasn3p02.png │ │ │ ├── ibasn3p04.png │ │ │ ├── iftbbn0g01.png │ │ │ ├── iftbbn0g02.png │ │ │ └── iftbbn0g04.png │ ├── powerpc-vsx │ │ ├── README │ │ ├── linux.c │ │ └── linux_aux.c │ ├── testpngs │ │ ├── crashers │ │ │ ├── bad_iCCP.png │ │ │ ├── badadler.png │ │ │ ├── badcrc.png │ │ │ ├── empty_ancillary_chunks.png │ │ │ ├── huge_IDAT.png │ │ │ ├── huge_bKGD_chunk.png │ │ │ ├── huge_cHRM_chunk.png │ │ │ ├── huge_eXIf_chunk.png │ │ │ ├── huge_gAMA_chunk.png │ │ │ ├── huge_hIST_chunk.png │ │ │ ├── huge_iCCP_chunk.png │ │ │ ├── huge_iTXt_chunk.png │ │ │ ├── huge_juNK_unsafe_to_copy.png │ │ │ ├── huge_juNk_safe_to_copy.png │ │ │ ├── huge_pCAL_chunk.png │ │ │ ├── huge_pHYs_chunk.png │ │ │ ├── huge_sCAL_chunk.png │ │ │ ├── huge_sPLT_chunk.png │ │ │ ├── huge_sRGB_chunk.png │ │ │ ├── huge_sTER_chunk.png │ │ │ ├── huge_tEXt_chunk.png │ │ │ ├── huge_tIME_chunk.png │ │ │ └── huge_zTXt_chunk.png │ │ ├── gray-1-1.8-tRNS.png │ │ ├── gray-1-1.8.png │ │ ├── gray-1-linear-tRNS.png │ │ ├── gray-1-linear.png │ │ ├── gray-1-sRGB-tRNS.png │ │ ├── gray-1-sRGB.png │ │ ├── gray-1-tRNS.png │ │ ├── gray-1.png │ │ ├── gray-16-1.8-tRNS.png │ │ ├── gray-16-1.8.png │ │ ├── gray-16-linear-tRNS.png │ │ ├── gray-16-linear.png │ │ ├── gray-16-sRGB-tRNS.png │ │ ├── gray-16-sRGB.png │ │ ├── gray-16-tRNS.png │ │ ├── gray-16.png │ │ ├── gray-2-1.8-tRNS.png │ │ ├── gray-2-1.8.png │ │ ├── gray-2-linear-tRNS.png │ │ ├── gray-2-linear.png │ │ ├── gray-2-sRGB-tRNS.png │ │ ├── gray-2-sRGB.png │ │ ├── gray-2-tRNS.png │ │ ├── gray-2.png │ │ ├── gray-4-1.8-tRNS.png │ │ ├── gray-4-1.8.png │ │ ├── gray-4-linear-tRNS.png │ │ ├── gray-4-linear.png │ │ ├── gray-4-sRGB-tRNS.png │ │ ├── gray-4-sRGB.png │ │ ├── gray-4-tRNS.png │ │ ├── gray-4.png │ │ ├── gray-8-1.8-tRNS.png │ │ ├── gray-8-1.8.png │ │ ├── gray-8-linear-tRNS.png │ │ ├── gray-8-linear.png │ │ ├── gray-8-sRGB-tRNS.png │ │ ├── gray-8-sRGB.png │ │ ├── gray-8-tRNS.png │ │ ├── gray-8.png │ │ ├── gray-alpha-16-1.8.png │ │ ├── gray-alpha-16-linear.png │ │ ├── gray-alpha-16-sRGB.png │ │ ├── gray-alpha-16.png │ │ ├── gray-alpha-8-1.8.png │ │ ├── gray-alpha-8-linear.png │ │ ├── gray-alpha-8-sRGB.png │ │ ├── gray-alpha-8.png │ │ ├── makepngs.sh │ │ ├── palette-1-1.8-tRNS.png │ │ ├── palette-1-1.8.png │ │ ├── palette-1-linear-tRNS.png │ │ ├── palette-1-linear.png │ │ ├── palette-1-sRGB-tRNS.png │ │ ├── palette-1-sRGB.png │ │ ├── palette-1-tRNS.png │ │ ├── palette-1.png │ │ ├── palette-2-1.8-tRNS.png │ │ ├── palette-2-1.8.png │ │ ├── palette-2-linear-tRNS.png │ │ ├── palette-2-linear.png │ │ ├── palette-2-sRGB-tRNS.png │ │ ├── palette-2-sRGB.png │ │ ├── palette-2-tRNS.png │ │ ├── palette-2.png │ │ ├── palette-4-1.8-tRNS.png │ │ ├── palette-4-1.8.png │ │ ├── palette-4-linear-tRNS.png │ │ ├── palette-4-linear.png │ │ ├── palette-4-sRGB-tRNS.png │ │ ├── palette-4-sRGB.png │ │ ├── palette-4-tRNS.png │ │ ├── palette-4.png │ │ ├── palette-8-1.8-tRNS.png │ │ ├── palette-8-1.8.png │ │ ├── palette-8-linear-tRNS.png │ │ ├── palette-8-linear.png │ │ ├── palette-8-sRGB-tRNS.png │ │ ├── palette-8-sRGB.png │ │ ├── palette-8-tRNS.png │ │ ├── palette-8.png │ │ ├── rgb-16-1.8-tRNS.png │ │ ├── rgb-16-1.8.png │ │ ├── rgb-16-linear-tRNS.png │ │ ├── rgb-16-linear.png │ │ ├── rgb-16-sRGB-tRNS.png │ │ ├── rgb-16-sRGB.png │ │ ├── rgb-16-tRNS.png │ │ ├── rgb-16.png │ │ ├── rgb-8-1.8-tRNS.png │ │ ├── rgb-8-1.8.png │ │ ├── rgb-8-linear-tRNS.png │ │ ├── rgb-8-linear.png │ │ ├── rgb-8-sRGB-tRNS.png │ │ ├── rgb-8-sRGB.png │ │ ├── rgb-8-tRNS.png │ │ ├── rgb-8.png │ │ ├── rgb-alpha-16-1.8.png │ │ ├── rgb-alpha-16-linear.png │ │ ├── rgb-alpha-16-sRGB.png │ │ ├── rgb-alpha-16.png │ │ ├── rgb-alpha-8-1.8.png │ │ ├── rgb-alpha-8-linear.png │ │ ├── rgb-alpha-8-sRGB.png │ │ └── rgb-alpha-8.png │ ├── tools │ │ ├── README.txt │ │ ├── checksum-icc.c │ │ ├── chkfmt.sh │ │ ├── cvtcolor.c │ │ ├── genpng.c │ │ ├── intgamma.sh │ │ ├── makesRGB.c │ │ ├── png-fix-itxt.c │ │ ├── pngcp.c │ │ ├── pngfix.c │ │ └── sRGB.h │ └── visupng │ │ ├── PngFile.c │ │ ├── PngFile.h │ │ ├── README.txt │ │ ├── VisualPng.c │ │ ├── VisualPng.dsp │ │ ├── VisualPng.dsw │ │ ├── VisualPng.ico │ │ ├── VisualPng.png │ │ ├── VisualPng.rc │ │ ├── cexcept.h │ │ └── resource.h ├── depcomp ├── example.c ├── install-sh ├── intel │ ├── filter_sse2_intrinsics.c │ └── intel_init.c ├── libpng-config.in ├── libpng-manual.txt ├── libpng.3 ├── libpng.pc.in ├── libpngpf.3 ├── ltmain.sh ├── mips │ ├── filter_msa_intrinsics.c │ └── mips_init.c ├── missing ├── png.5 ├── png.c ├── png.h ├── pngbar.jpg ├── pngbar.png ├── pngconf.h ├── pngdebug.h ├── pngerror.c ├── pngget.c ├── pnginfo.h ├── pngmem.c ├── pngnow.png ├── pngpread.c ├── pngpriv.h ├── pngread.c ├── pngrio.c ├── pngrtran.c ├── pngrutil.c ├── pngset.c ├── pngstruct.h ├── pngtest.c ├── pngtest.png ├── pngtrans.c ├── pngusr.dfa ├── pngwio.c ├── pngwrite.c ├── pngwtran.c ├── pngwutil.c ├── powerpc │ ├── filter_vsx_intrinsics.c │ └── powerpc_init.c ├── projects │ ├── owatcom │ │ ├── libpng.tgt │ │ ├── libpng.wpj │ │ ├── pngconfig.mak │ │ ├── pngstest.tgt │ │ ├── pngtest.tgt │ │ └── pngvalid.tgt │ ├── visualc71 │ │ ├── PRJ0041.mak │ │ ├── README.txt │ │ ├── README_zlib.txt │ │ ├── libpng.sln │ │ ├── libpng.vcproj │ │ ├── pngtest.vcproj │ │ └── zlib.vcproj │ └── vstudio │ │ ├── README.txt │ │ ├── libpng │ │ └── libpng.vcxproj │ │ ├── pnglibconf │ │ └── pnglibconf.vcxproj │ │ ├── vstudio.sln │ │ ├── zlib.props │ │ └── zlib │ │ └── zlib.vcxproj ├── scripts │ ├── README.txt │ ├── SCOPTIONS.ppc │ ├── checksym.awk │ ├── descrip.mms │ ├── dfn.awk │ ├── genchk.cmake.in │ ├── genout.cmake.in │ ├── gensrc.cmake.in │ ├── intprefix.c │ ├── libpng-config-body.in │ ├── libpng-config-head.in │ ├── libpng.pc.in │ ├── libtool.m4 │ ├── ltoptions.m4 │ ├── ltsugar.m4 │ ├── ltversion.m4 │ ├── lt~obsolete.m4 │ ├── macro.lst │ ├── makefile.32sunu │ ├── makefile.64sunu │ ├── makefile.acorn │ ├── makefile.aix │ ├── makefile.amiga │ ├── makefile.atari │ ├── makefile.bc32 │ ├── makefile.beos │ ├── makefile.clang │ ├── makefile.darwin │ ├── makefile.dec │ ├── makefile.dj2 │ ├── makefile.emcc │ ├── makefile.freebsd │ ├── makefile.gcc │ ├── makefile.hp64 │ ├── makefile.hpgcc │ ├── makefile.hpux │ ├── makefile.ibmc │ ├── makefile.intel │ ├── makefile.linux │ ├── makefile.mips │ ├── makefile.msys │ ├── makefile.netbsd │ ├── makefile.openbsd │ ├── makefile.sco │ ├── makefile.sggcc │ ├── makefile.sgi │ ├── makefile.so9 │ ├── makefile.solaris │ ├── makefile.std │ ├── makefile.sunos │ ├── makefile.vcwin-arm64 │ ├── makefile.vcwin32 │ ├── makevms.com │ ├── options.awk │ ├── pnglibconf.dfa │ ├── pnglibconf.h.prebuilt │ ├── pnglibconf.mak │ ├── pngwin.rc │ ├── prefix.c │ ├── smakefile.ppc │ ├── sym.c │ ├── symbols.c │ ├── symbols.def │ ├── test.cmake.in │ └── vers.c ├── test-driver └── tests │ ├── pngimage-full │ ├── pngimage-quick │ ├── pngstest-1.8 │ ├── pngstest-1.8-alpha │ ├── pngstest-linear │ ├── pngstest-linear-alpha │ ├── pngstest-none │ ├── pngstest-none-alpha │ ├── pngstest-sRGB │ ├── pngstest-sRGB-alpha │ ├── pngtest-all │ ├── pngunknown-IDAT │ ├── pngunknown-discard │ ├── pngunknown-if-safe │ ├── pngunknown-sAPI │ ├── pngunknown-sTER │ ├── pngunknown-save │ ├── pngunknown-vpAg │ ├── pngvalid-gamma-16-to-8 │ ├── pngvalid-gamma-alpha-mode │ ├── pngvalid-gamma-background │ ├── pngvalid-gamma-expand16-alpha-mode │ ├── pngvalid-gamma-expand16-background │ ├── pngvalid-gamma-expand16-transform │ ├── pngvalid-gamma-sbit │ ├── pngvalid-gamma-threshold │ ├── pngvalid-gamma-transform │ ├── pngvalid-progressive-interlace-standard │ ├── pngvalid-progressive-size │ ├── pngvalid-progressive-standard │ ├── pngvalid-standard │ └── pngvalid-transform ├── libtheora-1.1.1 ├── AUTHORS ├── CHANGES ├── CMakeLists.txt ├── COPYING ├── FindOgg.cmake ├── LICENSE ├── Makefile.am ├── Makefile.in ├── README ├── SConstruct ├── aclocal.m4 ├── autogen.sh ├── compile ├── config.guess ├── config.h.in ├── config.sub ├── configure ├── configure.ac ├── depcomp ├── doc │ ├── Doxyfile.in │ ├── Makefile.am │ ├── Makefile.in │ ├── color.html │ ├── draft-ietf-avt-rtp-theora-00.txt │ ├── draft-ietf-avt-rtp-theora-00.xml │ ├── libtheora │ │ ├── html │ │ │ ├── annotated.html │ │ │ ├── classes.html │ │ │ ├── codec_8h.html │ │ │ ├── codec_8h_source.html │ │ │ ├── doxygen.css │ │ │ ├── doxygen.png │ │ │ ├── files.html │ │ │ ├── functions.html │ │ │ ├── functions_vars.html │ │ │ ├── globals.html │ │ │ ├── globals_defs.html │ │ │ ├── globals_enum.html │ │ │ ├── globals_eval.html │ │ │ ├── globals_func.html │ │ │ ├── globals_type.html │ │ │ ├── globals_vars.html │ │ │ ├── group__basefuncs.html │ │ │ ├── group__decfuncs.html │ │ │ ├── group__encfuncs.html │ │ │ ├── group__oldfuncs.html │ │ │ ├── index.html │ │ │ ├── modules.html │ │ │ ├── structth__comment.html │ │ │ ├── structth__huff__code.html │ │ │ ├── structth__img__plane.html │ │ │ ├── structth__info.html │ │ │ ├── structth__quant__info.html │ │ │ ├── structth__quant__ranges.html │ │ │ ├── structth__stripe__callback.html │ │ │ ├── structtheora__comment.html │ │ │ ├── structtheora__info.html │ │ │ ├── structtheora__state.html │ │ │ ├── structyuv__buffer.html │ │ │ ├── tab_b.gif │ │ │ ├── tab_l.gif │ │ │ ├── tab_r.gif │ │ │ ├── tabs.css │ │ │ ├── theora_8h.html │ │ │ ├── theora_8h_source.html │ │ │ ├── theoradec_8h.html │ │ │ ├── theoradec_8h_source.html │ │ │ ├── theoraenc_8h.html │ │ │ └── theoraenc_8h_source.html │ │ └── latex │ │ │ ├── Makefile │ │ │ ├── annotated.tex │ │ │ ├── codec_8h.tex │ │ │ ├── doxygen.sty │ │ │ ├── files.tex │ │ │ ├── group__basefuncs.tex │ │ │ ├── group__decfuncs.tex │ │ │ ├── group__encfuncs.tex │ │ │ ├── group__oldfuncs.tex │ │ │ ├── index.tex │ │ │ ├── modules.tex │ │ │ ├── refman.tex │ │ │ ├── structth__comment.tex │ │ │ ├── structth__huff__code.tex │ │ │ ├── structth__img__plane.tex │ │ │ ├── structth__info.tex │ │ │ ├── structth__quant__info.tex │ │ │ ├── structth__quant__ranges.tex │ │ │ ├── structth__stripe__callback.tex │ │ │ ├── structtheora__comment.tex │ │ │ ├── structtheora__info.tex │ │ │ ├── structtheora__state.tex │ │ │ ├── structyuv__buffer.tex │ │ │ ├── theora_8h.tex │ │ │ ├── theoradec_8h.tex │ │ │ └── theoraenc_8h.tex │ ├── spec │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── Theora.pdf │ │ ├── fdct.fig │ │ ├── hilbert-block.fig │ │ ├── hilbert-mb.fig │ │ ├── idct.fig │ │ ├── lflim.fig │ │ ├── ltablex.sty │ │ ├── macroblock.fig │ │ ├── pic-frame.fig │ │ ├── pic_even.fig │ │ ├── pic_even_odd.fig │ │ ├── pic_odd.fig │ │ ├── pic_odd_even.fig │ │ ├── pixel420.fig │ │ ├── pixel422.fig │ │ ├── pixel444.fig │ │ ├── raster-block.fig │ │ ├── reference-frames.fig │ │ ├── spec.bib │ │ ├── spec.tex │ │ ├── superblock.fig │ │ ├── vp3huff.c │ │ └── xifish.fig │ └── vp3-format.txt ├── examples │ ├── Makefile.am │ ├── Makefile.in │ ├── dump_psnr.c │ ├── dump_video.c │ ├── encoder_example.c │ ├── getopt.c │ ├── getopt.h │ ├── getopt1.c │ ├── player_example.c │ └── png2theora.c ├── include │ ├── Makefile.am │ ├── Makefile.in │ └── theora │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── codec.h │ │ ├── theora.h │ │ ├── theoradec.h │ │ └── theoraenc.h ├── install-sh ├── lib │ ├── Makefile.am │ ├── Makefile.in │ ├── Version_script │ ├── Version_script-dec │ ├── Version_script-enc │ ├── analyze.c │ ├── apiwrapper.c │ ├── apiwrapper.h │ ├── bitpack.c │ ├── bitpack.h │ ├── cpu.c │ ├── cpu.h │ ├── dct.h │ ├── decapiwrapper.c │ ├── decinfo.c │ ├── decint.h │ ├── decode.c │ ├── dequant.c │ ├── dequant.h │ ├── encapiwrapper.c │ ├── encfrag.c │ ├── encinfo.c │ ├── encint.h │ ├── encode.c │ ├── encoder_disabled.c │ ├── enquant.c │ ├── enquant.h │ ├── fdct.c │ ├── fragment.c │ ├── huffdec.c │ ├── huffdec.h │ ├── huffenc.c │ ├── huffenc.h │ ├── huffman.h │ ├── idct.c │ ├── info.c │ ├── internal.c │ ├── internal.h │ ├── mathops.c │ ├── mathops.h │ ├── mcenc.c │ ├── modedec.h │ ├── ocintrin.h │ ├── quant.c │ ├── quant.h │ ├── rate.c │ ├── state.c │ ├── theora.exp │ ├── theoradec.exp │ ├── theoraenc.exp │ ├── tokenize.c │ ├── x86 │ │ ├── mmxencfrag.c │ │ ├── mmxfdct.c │ │ ├── mmxfrag.c │ │ ├── mmxfrag.h │ │ ├── mmxidct.c │ │ ├── mmxloop.h │ │ ├── mmxstate.c │ │ ├── sse2fdct.c │ │ ├── x86enc.c │ │ ├── x86enc.h │ │ ├── x86int.h │ │ └── x86state.c │ └── x86_vc │ │ ├── mmxencfrag.c │ │ ├── mmxfdct.c │ │ ├── mmxfrag.c │ │ ├── mmxfrag.h │ │ ├── mmxidct.c │ │ ├── mmxloop.h │ │ ├── mmxstate.c │ │ ├── x86enc.c │ │ ├── x86enc.h │ │ ├── x86int.h │ │ └── x86state.c ├── libtheora.spec ├── libtheora.spec.in ├── ltmain.sh ├── m4 │ ├── Makefile.am │ ├── Makefile.in │ ├── as-ac-expand.m4 │ ├── ogg.m4 │ ├── pkg.m4 │ ├── sdl.m4 │ └── vorbis.m4 ├── macosx │ ├── English.lproj │ │ └── InfoPlist.strings │ ├── Info.plist │ ├── Theora.xcodeproj │ │ └── project.pbxproj │ └── Theora_Prefix.pch ├── missing ├── mkinstalldirs ├── symbian │ ├── bld.inf │ ├── config.h │ └── theora.mmp ├── tests │ ├── Makefile.am │ ├── Makefile.in │ ├── comment.c │ ├── comment_theora.c │ ├── granulepos.c │ ├── granulepos_theora.c │ ├── noop.c │ ├── noop_theora.c │ └── tests.h ├── theora-uninstalled.pc.in ├── theora.pc.in ├── theoradec-uninstalled.pc.in ├── theoradec.pc.in ├── theoraenc-uninstalled.pc.in ├── theoraenc.pc.in └── win32 │ ├── VS2005 │ ├── README │ ├── dump_video │ │ ├── dump_video_dynamic.vcproj │ │ └── dump_video_static.vcproj │ ├── encoder_example │ │ ├── encoder_example_dynamic.vcproj │ │ └── encoder_example_static.vcproj │ ├── libogg.vsprops │ ├── libtheora │ │ ├── libtheora_dynamic.vcproj │ │ └── libtheora_static.vcproj │ ├── libtheora_dynamic.sln │ ├── libtheora_static.sln │ └── libvorbis.vsprops │ ├── VS2008 │ ├── README │ ├── dump_video │ │ ├── dump_video_dynamic.vcproj │ │ └── dump_video_static.vcproj │ ├── encoder_example │ │ ├── encoder_example_dynamic.vcproj │ │ └── encoder_example_static.vcproj │ ├── libogg.vsprops │ ├── libtheora │ │ ├── libtheora_dynamic.vcproj │ │ └── libtheora_static.vcproj │ ├── libtheora_dynamic.sln │ ├── libtheora_static.sln │ └── libvorbis.vsprops │ ├── build_theora_static.bat │ ├── build_theora_static_debug.bat │ ├── experimental │ ├── dumpvid │ │ └── dumpvid.dsp │ ├── encoderwin │ │ ├── ReadMe.txt │ │ └── encoderwin.dsp │ ├── transcoder │ │ ├── avi2vp3 │ │ │ ├── avi2vp3.c │ │ │ ├── avilib.c │ │ │ ├── avilib.h │ │ │ ├── outfile.vp3 │ │ │ └── vp31.avi │ │ ├── readme.txt │ │ ├── transcoder.dsp │ │ └── transcoder_example.c │ └── wincompat │ │ ├── README.txt │ │ ├── getopt.c │ │ ├── getopt.h │ │ ├── getopt_long.c │ │ └── unistd.h │ ├── getopt.c │ ├── getopt1.c │ ├── getopt_win.h │ ├── theora_static.dsp │ └── xmingw32 │ ├── Makefile │ ├── libtheoradec-all.def │ ├── libtheoradec-all.rc │ ├── libtheoradec.rc │ ├── libtheoradec70.rc │ ├── libtheoradec70d.rc │ ├── libtheoradec71.rc │ ├── libtheoradec71d.rc │ ├── libtheoradec80.rc │ ├── libtheoradec80d.rc │ ├── libtheoradecd.rc │ ├── libtheoraenc-all.def │ ├── libtheoraenc-all.rc │ ├── libtheoraenc.rc │ ├── libtheoraenc70.rc │ ├── libtheoraenc70d.rc │ ├── libtheoraenc71.rc │ ├── libtheoraenc71d.rc │ ├── libtheoraenc80.rc │ ├── libtheoraenc80d.rc │ └── libtheoraencd.rc ├── libvorbis-1.3.7 ├── AUTHORS ├── CHANGES ├── CMakeLists.txt ├── COPYING ├── Makefile.am ├── Makefile.in ├── aclocal.m4 ├── autogen.sh ├── cmake │ ├── FindOgg.cmake │ └── VorbisConfig.cmake.in ├── compile ├── config.guess ├── config.h.in ├── config.sub ├── configure ├── configure.ac ├── depcomp ├── doc │ ├── 01-introduction.tex │ ├── 02-bitpacking.tex │ ├── 03-codebook.tex │ ├── 04-codec.tex │ ├── 05-comment.tex │ ├── 06-floor0.tex │ ├── 07-floor1.tex │ ├── 08-residue.tex │ ├── 09-helper.tex │ ├── 10-tables.tex │ ├── Doxyfile.in │ ├── Makefile.am │ ├── Makefile.in │ ├── Vorbis_I_spec.cfg │ ├── Vorbis_I_spec.css │ ├── Vorbis_I_spec.html │ ├── Vorbis_I_spec.pdf │ ├── Vorbis_I_spec.tex │ ├── Vorbis_I_spec0x.png │ ├── Vorbis_I_spec10x.png │ ├── Vorbis_I_spec11x.png │ ├── Vorbis_I_spec12x.png │ ├── Vorbis_I_spec13x.png │ ├── Vorbis_I_spec14x.png │ ├── Vorbis_I_spec1x.png │ ├── Vorbis_I_spec2x.png │ ├── Vorbis_I_spec3x.png │ ├── Vorbis_I_spec4x.png │ ├── Vorbis_I_spec5x.png │ ├── Vorbis_I_spec6x.png │ ├── Vorbis_I_spec7x.png │ ├── Vorbis_I_spec8x.png │ ├── Vorbis_I_spec9x.png │ ├── a1-encapsulation-ogg.tex │ ├── a2-encapsulation-rtp.tex │ ├── components.png │ ├── eightphase.png │ ├── fish_xiph_org.png │ ├── floor1-1.png │ ├── floor1-2.png │ ├── floor1-3.png │ ├── floor1-4.png │ ├── floor1_inverse_dB_table.html │ ├── floorval.png │ ├── footer.tex │ ├── fourphase.png │ ├── framing.html │ ├── helper.html │ ├── hufftree-under.png │ ├── hufftree.png │ ├── index.html │ ├── libvorbis │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── index.html │ │ ├── overview.html │ │ ├── reference.html │ │ ├── return.html │ │ ├── style.css │ │ ├── vorbis_analysis.html │ │ ├── vorbis_analysis_blockout.html │ │ ├── vorbis_analysis_buffer.html │ │ ├── vorbis_analysis_headerout.html │ │ ├── vorbis_analysis_init.html │ │ ├── vorbis_analysis_wrote.html │ │ ├── vorbis_bitrate_addblock.html │ │ ├── vorbis_bitrate_flushpacket.html │ │ ├── vorbis_block.html │ │ ├── vorbis_block_clear.html │ │ ├── vorbis_block_init.html │ │ ├── vorbis_comment.html │ │ ├── vorbis_comment_add.html │ │ ├── vorbis_comment_add_tag.html │ │ ├── vorbis_comment_clear.html │ │ ├── vorbis_comment_init.html │ │ ├── vorbis_comment_query.html │ │ ├── vorbis_comment_query_count.html │ │ ├── vorbis_commentheader_out.html │ │ ├── vorbis_dsp_clear.html │ │ ├── vorbis_dsp_state.html │ │ ├── vorbis_granule_time.html │ │ ├── vorbis_info.html │ │ ├── vorbis_info_blocksize.html │ │ ├── vorbis_info_clear.html │ │ ├── vorbis_info_init.html │ │ ├── vorbis_packet_blocksize.html │ │ ├── vorbis_synthesis.html │ │ ├── vorbis_synthesis_blockin.html │ │ ├── vorbis_synthesis_halfrate.html │ │ ├── vorbis_synthesis_halfrate_p.html │ │ ├── vorbis_synthesis_headerin.html │ │ ├── vorbis_synthesis_idheader.html │ │ ├── vorbis_synthesis_init.html │ │ ├── vorbis_synthesis_lapout.html │ │ ├── vorbis_synthesis_pcmout.html │ │ ├── vorbis_synthesis_read.html │ │ ├── vorbis_synthesis_restart.html │ │ ├── vorbis_synthesis_trackonly.html │ │ └── vorbis_version_string.html │ ├── oggstream.html │ ├── programming.html │ ├── residue-pack.png │ ├── residue2.png │ ├── rfc5215.txt │ ├── rfc5215.xml │ ├── squarepolar.png │ ├── stereo.html │ ├── stream.png │ ├── v-comment.html │ ├── vorbis-clip.txt │ ├── vorbis-errors.txt │ ├── vorbis-fidelity.html │ ├── vorbisenc │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── changes.html │ │ ├── examples.html │ │ ├── index.html │ │ ├── ovectl_ratemanage2_arg.html │ │ ├── ovectl_ratemanage_arg.html │ │ ├── overview.html │ │ ├── reference.html │ │ ├── style.css │ │ ├── vorbis_encode_ctl.html │ │ ├── vorbis_encode_init.html │ │ ├── vorbis_encode_init_vbr.html │ │ ├── vorbis_encode_setup_init.html │ │ ├── vorbis_encode_setup_managed.html │ │ └── vorbis_encode_setup_vbr.html │ ├── vorbisfile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── OggVorbis_File.html │ │ ├── callbacks.html │ │ ├── chaining_example_c.html │ │ ├── chainingexample.html │ │ ├── crosslap.html │ │ ├── datastructures.html │ │ ├── decoding.html │ │ ├── example.html │ │ ├── exampleindex.html │ │ ├── fileinfo.html │ │ ├── index.html │ │ ├── initialization.html │ │ ├── ov_bitrate.html │ │ ├── ov_bitrate_instant.html │ │ ├── ov_callbacks.html │ │ ├── ov_clear.html │ │ ├── ov_comment.html │ │ ├── ov_crosslap.html │ │ ├── ov_fopen.html │ │ ├── ov_info.html │ │ ├── ov_open.html │ │ ├── ov_open_callbacks.html │ │ ├── ov_pcm_seek.html │ │ ├── ov_pcm_seek_lap.html │ │ ├── ov_pcm_seek_page.html │ │ ├── ov_pcm_seek_page_lap.html │ │ ├── ov_pcm_tell.html │ │ ├── ov_pcm_total.html │ │ ├── ov_raw_seek.html │ │ ├── ov_raw_seek_lap.html │ │ ├── ov_raw_tell.html │ │ ├── ov_raw_total.html │ │ ├── ov_read.html │ │ ├── ov_read_filter.html │ │ ├── ov_read_float.html │ │ ├── ov_seekable.html │ │ ├── ov_serialnumber.html │ │ ├── ov_streams.html │ │ ├── ov_test.html │ │ ├── ov_test_callbacks.html │ │ ├── ov_test_open.html │ │ ├── ov_time_seek.html │ │ ├── ov_time_seek_lap.html │ │ ├── ov_time_seek_page.html │ │ ├── ov_time_seek_page_lap.html │ │ ├── ov_time_tell.html │ │ ├── ov_time_total.html │ │ ├── overview.html │ │ ├── reference.html │ │ ├── seekexample.html │ │ ├── seeking.html │ │ ├── seeking_example_c.html │ │ ├── seeking_test_c.html │ │ ├── seekingexample.html │ │ ├── style.css │ │ ├── threads.html │ │ └── vorbisfile_example_c.html │ ├── window1.png │ └── window2.png ├── examples │ ├── Makefile.am │ ├── Makefile.in │ ├── chaining_example.c │ ├── decoder_example.c │ ├── encoder_example.c │ ├── frameview.pl │ ├── seeking_example.c │ └── vorbisfile_example.c ├── include │ ├── Makefile.am │ ├── Makefile.in │ └── vorbis │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── codec.h │ │ ├── vorbisenc.h │ │ └── vorbisfile.h ├── install-sh ├── lib │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── Makefile.in │ ├── analysis.c │ ├── backends.h │ ├── barkmel.c │ ├── bitrate.c │ ├── bitrate.h │ ├── block.c │ ├── books │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── coupled │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── res_books_51.h │ │ │ └── res_books_stereo.h │ │ ├── floor │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── floor_books.h │ │ └── uncoupled │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── res_books_uncoupled.h │ ├── codebook.c │ ├── codebook.h │ ├── codec_internal.h │ ├── envelope.c │ ├── envelope.h │ ├── floor0.c │ ├── floor1.c │ ├── highlevel.h │ ├── info.c │ ├── lookup.c │ ├── lookup.h │ ├── lookup_data.h │ ├── lookups.pl │ ├── lpc.c │ ├── lpc.h │ ├── lsp.c │ ├── lsp.h │ ├── mapping0.c │ ├── masking.h │ ├── mdct.c │ ├── mdct.h │ ├── misc.h │ ├── modes │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── floor_all.h │ │ ├── psych_11.h │ │ ├── psych_16.h │ │ ├── psych_44.h │ │ ├── psych_8.h │ │ ├── residue_16.h │ │ ├── residue_44.h │ │ ├── residue_44p51.h │ │ ├── residue_44u.h │ │ ├── residue_8.h │ │ ├── setup_11.h │ │ ├── setup_16.h │ │ ├── setup_22.h │ │ ├── setup_32.h │ │ ├── setup_44.h │ │ ├── setup_44p51.h │ │ ├── setup_44u.h │ │ ├── setup_8.h │ │ └── setup_X.h │ ├── os.h │ ├── psy.c │ ├── psy.h │ ├── psytune.c │ ├── registry.c │ ├── registry.h │ ├── res0.c │ ├── scales.h │ ├── sharedbook.c │ ├── smallft.c │ ├── smallft.h │ ├── synthesis.c │ ├── tone.c │ ├── vorbisenc.c │ ├── vorbisfile.c │ ├── window.c │ └── window.h ├── libvorbis.spec ├── libvorbis.spec.in ├── ltmain.sh ├── m4 │ ├── Makefile.am │ ├── Makefile.in │ ├── add_cflags.m4 │ ├── libtool.m4 │ ├── ltoptions.m4 │ ├── ltsugar.m4 │ ├── ltversion.m4 │ ├── lt~obsolete.m4 │ ├── ogg.m4 │ └── pkg.m4 ├── macosx │ ├── English.lproj │ │ └── InfoPlist.strings │ ├── Info.plist │ └── Vorbis.xcodeproj │ │ └── project.pbxproj ├── missing ├── symbian │ ├── bld.inf │ ├── config.h │ └── vorbis.mmp ├── test │ ├── Makefile.am │ ├── Makefile.in │ ├── test.c │ ├── util.c │ ├── util.h │ ├── write_read.c │ └── write_read.h ├── vorbis-uninstalled.pc.in ├── vorbis.m4 ├── vorbis.pc.in ├── vorbisenc-uninstalled.pc.in ├── vorbisenc.pc.in ├── vorbisfile-uninstalled.pc.in ├── vorbisfile.pc.in ├── vq │ ├── 16.vqs │ ├── 16u.vqs │ ├── 44c-1.vqs │ ├── 44c0.vqs │ ├── 44c1.vqs │ ├── 44c2.vqs │ ├── 44c3.vqs │ ├── 44c4.vqs │ ├── 44c5.vqs │ ├── 44c6.vqs │ ├── 44c7.vqs │ ├── 44c8.vqs │ ├── 44c9.vqs │ ├── 44p-1.vqs │ ├── 44p0.vqs │ ├── 44p1.vqs │ ├── 44p2.vqs │ ├── 44p3.vqs │ ├── 44p4.vqs │ ├── 44p5.vqs │ ├── 44p6.vqs │ ├── 44p7.vqs │ ├── 44p8.vqs │ ├── 44p9.vqs │ ├── 44u0.vqs │ ├── 44u1.vqs │ ├── 44u2.vqs │ ├── 44u3.vqs │ ├── 44u4.vqs │ ├── 44u5.vqs │ ├── 44u6.vqs │ ├── 44u7.vqs │ ├── 44u8.vqs │ ├── 44u9.vqs │ ├── 8.vqs │ ├── 8u.vqs │ ├── Makefile.am │ ├── Makefile.in │ ├── bookutil.c │ ├── bookutil.h │ ├── distribution.c │ ├── floor_11.vqs │ ├── floor_22.vqs │ ├── floor_44.vqs │ ├── huffbuild.c │ ├── latticebuild.c │ ├── latticetune.c │ ├── localcodebook.h │ ├── make_floor_books.pl │ ├── make_residue_books.pl │ ├── metrics.c │ ├── vqgen.c │ └── vqgen.h └── win32 │ ├── VS2005 │ ├── README │ ├── libogg.vsprops │ ├── libvorbis │ │ ├── libvorbis_dynamic.vcproj │ │ └── libvorbis_static.vcproj │ ├── libvorbisfile │ │ ├── libvorbisfile_dynamic.vcproj │ │ └── libvorbisfile_static.vcproj │ ├── vorbis_dynamic.sln │ ├── vorbis_static.sln │ ├── vorbisdec │ │ ├── vorbisdec_dynamic.vcproj │ │ └── vorbisdec_static.vcproj │ └── vorbisenc │ │ ├── vorbisenc_dynamic.vcproj │ │ └── vorbisenc_static.vcproj │ ├── VS2008 │ ├── README │ ├── libogg.vsprops │ ├── libvorbis │ │ ├── libvorbis_dynamic.vcproj │ │ └── libvorbis_static.vcproj │ ├── libvorbisfile │ │ ├── libvorbisfile_dynamic.vcproj │ │ └── libvorbisfile_static.vcproj │ ├── vorbis_dynamic.sln │ ├── vorbis_static.sln │ ├── vorbisdec │ │ ├── vorbisdec_dynamic.vcproj │ │ └── vorbisdec_static.vcproj │ └── vorbisenc │ │ ├── vorbisenc_dynamic.vcproj │ │ └── vorbisenc_static.vcproj │ ├── VS2010 │ ├── README │ ├── libogg.props │ ├── libvorbis │ │ ├── libvorbis_dynamic.vcxproj │ │ └── libvorbis_static.vcxproj │ ├── libvorbisfile │ │ ├── libvorbisfile_dynamic.vcxproj │ │ └── libvorbisfile_static.vcxproj │ ├── vorbis_dynamic.sln │ ├── vorbis_static.sln │ ├── vorbisdec │ │ ├── vorbisdec_dynamic.vcxproj │ │ └── vorbisdec_static.vcxproj │ └── vorbisenc │ │ ├── vorbisenc_dynamic.vcxproj │ │ └── vorbisenc_static.vcxproj │ ├── vorbis.def │ ├── vorbisenc.def │ └── vorbisfile.def ├── libwebp-1.3.2 ├── .cmake-format.py ├── .pylintrc ├── .style.yapf ├── AUTHORS ├── Android.mk ├── CMakeLists.txt ├── CONTRIBUTING.md ├── COPYING ├── ChangeLog ├── Makefile.am ├── Makefile.in ├── Makefile.vc ├── NEWS ├── PATENTS ├── PRESUBMIT.py ├── README.md ├── aclocal.m4 ├── ar-lib ├── autogen.sh ├── build.gradle ├── cmake │ ├── WebPConfig.cmake.in │ ├── config.h.in │ ├── cpu.cmake │ └── deps.cmake ├── codereview.settings ├── compile ├── config.guess ├── config.sub ├── configure ├── configure.ac ├── depcomp ├── doc │ ├── 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 │ ├── Makefile.in │ ├── 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 │ ├── Makefile.in │ ├── 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 │ ├── Makefile.in │ ├── 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 ├── install-sh ├── iosbuild.sh ├── ltmain.sh ├── m4 │ ├── ax_pthread.m4 │ ├── libtool.m4 │ ├── ltoptions.m4 │ ├── ltsugar.m4 │ ├── ltversion.m4 │ └── lt~obsolete.m4 ├── makefile.unix ├── man │ ├── Makefile.am │ ├── Makefile.in │ ├── cwebp.1 │ ├── dwebp.1 │ ├── gif2webp.1 │ ├── img2webp.1 │ ├── vwebp.1 │ ├── webpinfo.1 │ └── webpmux.1 ├── missing ├── sharpyuv │ ├── Makefile.am │ ├── Makefile.in │ ├── 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 │ ├── Makefile.in │ ├── dec │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── 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 │ │ ├── Makefile.in │ │ ├── anim_decode.c │ │ ├── demux.c │ │ ├── libwebpdemux.pc.in │ │ └── libwebpdemux.rc │ ├── dsp │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── 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 │ │ ├── Makefile.in │ │ ├── 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 │ │ ├── Makefile.in │ │ ├── anim_encode.c │ │ ├── animi.h │ │ ├── libwebpmux.pc.in │ │ ├── libwebpmux.rc │ │ ├── muxedit.c │ │ ├── muxi.h │ │ ├── muxinternal.c │ │ └── muxread.c │ ├── utils │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── 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 │ │ ├── config.h.in │ │ ├── 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 ├── minimp3 ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── fuzzing │ ├── build.sh │ ├── fuzz.c │ ├── fuzz.sh │ └── get-afl.sh ├── huffopt │ ├── HUFFCODE │ └── huffopt.c ├── minimp3.h ├── minimp3_ex.h ├── minimp3_test.c ├── player │ ├── FreeSans.h │ ├── FreeSans.ttf │ ├── audio_sdl.c │ ├── audio_sdl.h │ ├── build-sdl.sh │ ├── build.sh │ ├── decode.c │ ├── decode.h │ ├── glad.c │ ├── glad.h │ ├── nuklear.h │ ├── nuklear_sdl_gl3.h │ ├── player.cpp │ ├── stb_image.h │ ├── style.h │ ├── system.cpp │ └── system.h ├── scripts │ ├── build.sh │ ├── fuzz.sh │ ├── fuzz_init.sh │ ├── fuzz_libfuzzer.sh │ ├── perf.sh │ ├── test.sh │ ├── test_fuzz.sh │ └── test_mode.sh └── vectors │ ├── ILL2_center2.bit │ ├── ILL2_center2.pcm │ ├── ILL2_dual.bit │ ├── ILL2_dual.pcm │ ├── ILL2_dynx22.bit │ ├── ILL2_dynx22.pcm │ ├── ILL2_dynx31.bit │ ├── ILL2_dynx31.pcm │ ├── ILL2_dynx32.bit │ ├── ILL2_dynx32.pcm │ ├── ILL2_ext_switching.bit │ ├── ILL2_ext_switching.pcm │ ├── ILL2_layer1.bit │ ├── ILL2_layer1.pcm │ ├── ILL2_layer3.bit │ ├── ILL2_layer3.pcm │ ├── ILL2_mono.bit │ ├── ILL2_mono.pcm │ ├── ILL2_multilingual.bit │ ├── ILL2_multilingual.pcm │ ├── ILL2_overalloc1.bit │ ├── ILL2_overalloc1.pcm │ ├── ILL2_overalloc2.bit │ ├── ILL2_overalloc2.pcm │ ├── ILL2_prediction.bit │ ├── ILL2_prediction.pcm │ ├── ILL2_samples.bit │ ├── ILL2_samples.pcm │ ├── ILL2_scf63.bit │ ├── ILL2_scf63.pcm │ ├── ILL2_tca21.bit │ ├── ILL2_tca21.pcm │ ├── ILL2_tca30.bit │ ├── ILL2_tca30.pcm │ ├── ILL2_tca30_PC.bit │ ├── ILL2_tca30_PC.pcm │ ├── ILL2_tca31_PC.bit │ ├── ILL2_tca31_PC.pcm │ ├── ILL2_tca31_mtx0.bit │ ├── ILL2_tca31_mtx0.pcm │ ├── ILL2_tca31_mtx2.bit │ ├── ILL2_tca31_mtx2.pcm │ ├── ILL2_tca32_PC.bit │ ├── ILL2_tca32_PC.pcm │ ├── ILL2_wrongcrc.bit │ ├── ILL2_wrongcrc.pcm │ ├── ILL4_ext_id1.bit │ ├── ILL4_ext_id1.pcm │ ├── ILL4_sync.bit │ ├── ILL4_sync.pcm │ ├── ILL4_wrong_length1.bit │ ├── ILL4_wrong_length1.pcm │ ├── ILL4_wrong_length2.bit │ ├── ILL4_wrong_length2.pcm │ ├── ILL4_wrongcrc.bit │ ├── ILL4_wrongcrc.pcm │ ├── M2L3_bitrate_16_all.bit │ ├── M2L3_bitrate_16_all.pcm │ ├── M2L3_bitrate_22_all.bit │ ├── M2L3_bitrate_22_all.pcm │ ├── M2L3_bitrate_24_all.bit │ ├── M2L3_bitrate_24_all.pcm │ ├── M2L3_compl24.bit │ ├── M2L3_compl24.pcm │ ├── M2L3_noise.bit │ ├── M2L3_noise.pcm │ ├── fuzz │ └── l3-compl-cut.mp3 │ ├── l1-fl1.bit │ ├── l1-fl1.pcm │ ├── l1-fl2.bit │ ├── l1-fl2.pcm │ ├── l1-fl3.bit │ ├── l1-fl3.pcm │ ├── l1-fl4.bit │ ├── l1-fl4.pcm │ ├── l1-fl5.bit │ ├── l1-fl5.pcm │ ├── l1-fl6.bit │ ├── l1-fl6.pcm │ ├── l1-fl7.bit │ ├── l1-fl7.pcm │ ├── l1-fl8.bit │ ├── l1-fl8.pcm │ ├── l2-fl10.bit │ ├── l2-fl10.pcm │ ├── l2-fl11.bit │ ├── l2-fl11.pcm │ ├── l2-fl12.bit │ ├── l2-fl12.pcm │ ├── l2-fl13.bit │ ├── l2-fl13.pcm │ ├── l2-fl14.bit │ ├── l2-fl14.pcm │ ├── l2-fl15.bit │ ├── l2-fl15.pcm │ ├── l2-fl16.bit │ ├── l2-fl16.pcm │ ├── l2-nonstandard-fl1_fl2_ff.bit │ ├── l2-nonstandard-fl1_fl2_ff.pcm │ ├── l2-nonstandard-free_format.bit │ ├── l2-nonstandard-free_format.pcm │ ├── l2-nonstandard-test32-size.bit │ ├── l2-nonstandard-test32-size.pcm │ ├── l2-test32.bit │ ├── l2-test32.pcm │ ├── l3-compl.bit │ ├── l3-compl.pcm │ ├── l3-he_32khz.bit │ ├── l3-he_32khz.pcm │ ├── l3-he_44khz.bit │ ├── l3-he_44khz.pcm │ ├── l3-he_48khz.bit │ ├── l3-he_48khz.pcm │ ├── l3-he_free.bit │ ├── l3-he_free.pcm │ ├── l3-he_mode.bit │ ├── l3-he_mode.pcm │ ├── l3-hecommon.bit │ ├── l3-hecommon.pcm │ ├── l3-nonstandard-big-iscf.bit │ ├── l3-nonstandard-compl-sideinfo-bigvalues.bit │ ├── l3-nonstandard-compl-sideinfo-bigvalues.pcm │ ├── l3-nonstandard-compl-sideinfo-blocktype.bit │ ├── l3-nonstandard-compl-sideinfo-blocktype.pcm │ ├── l3-nonstandard-compl-sideinfo-size.bit │ ├── l3-nonstandard-compl-sideinfo-size.pcm │ ├── l3-nonstandard-id3v1.bit │ ├── l3-nonstandard-id3v1.pcm │ ├── l3-nonstandard-id3v2.bit │ ├── l3-nonstandard-id3v2.pcm │ ├── l3-nonstandard-sideinfo-size.bit │ ├── l3-nonstandard-sideinfo-size.pcm │ ├── l3-nonstandard-sin1k0db_lame_vbrtag.bit │ ├── l3-nonstandard-sin1k0db_lame_vbrtag.pcm │ ├── l3-si.bit │ ├── l3-si.pcm │ ├── l3-si_block.bit │ ├── l3-si_block.pcm │ ├── l3-si_huff.bit │ ├── l3-si_huff.pcm │ ├── l3-sin1k0db.bit │ ├── l3-sin1k0db.pcm │ ├── l3-test45.bit │ ├── l3-test45.pcm │ ├── l3-test46.bit │ ├── l3-test46.pcm │ └── performance │ ├── MEANDR90.mp3 │ ├── MEANDR_PHASE0.mp3 │ ├── MEANDR_PHASE90.mp3 │ ├── MIPSTest.mp3 │ └── noise_meandr.mp3 ├── opus-1.4 ├── AUTHORS ├── CMakeLists.txt ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile.am ├── Makefile.in ├── Makefile.mips ├── Makefile.unix ├── NEWS ├── README ├── aclocal.m4 ├── celt │ ├── _kiss_fft_guts.h │ ├── arch.h │ ├── arm │ │ ├── arm2gnu.pl │ │ ├── arm_celt_map.c │ │ ├── armcpu.c │ │ ├── armcpu.h │ │ ├── armopts.s.in │ │ ├── celt_fft_ne10.c │ │ ├── celt_mdct_ne10.c │ │ ├── celt_neon_intr.c │ │ ├── celt_pitch_xcorr_arm-gnu.S │ │ ├── celt_pitch_xcorr_arm.s │ │ ├── fft_arm.h │ │ ├── fixed_arm64.h │ │ ├── fixed_armv4.h │ │ ├── fixed_armv5e.h │ │ ├── kiss_fft_armv4.h │ │ ├── kiss_fft_armv5e.h │ │ ├── mdct_arm.h │ │ ├── pitch_arm.h │ │ └── pitch_neon_intr.c │ ├── bands.c │ ├── bands.h │ ├── celt.c │ ├── celt.h │ ├── celt_decoder.c │ ├── celt_encoder.c │ ├── celt_lpc.c │ ├── celt_lpc.h │ ├── cpu_support.h │ ├── cwrs.c │ ├── cwrs.h │ ├── ecintrin.h │ ├── entcode.c │ ├── entcode.h │ ├── entdec.c │ ├── entdec.h │ ├── entenc.c │ ├── entenc.h │ ├── fixed_debug.h │ ├── fixed_generic.h │ ├── float_cast.h │ ├── kiss_fft.c │ ├── kiss_fft.h │ ├── laplace.c │ ├── laplace.h │ ├── mathops.c │ ├── mathops.h │ ├── mdct.c │ ├── mdct.h │ ├── meson.build │ ├── mfrngcod.h │ ├── mips │ │ ├── celt_mipsr1.h │ │ ├── fixed_generic_mipsr1.h │ │ ├── kiss_fft_mipsr1.h │ │ ├── mdct_mipsr1.h │ │ ├── pitch_mipsr1.h │ │ └── vq_mipsr1.h │ ├── modes.c │ ├── modes.h │ ├── opus_custom_demo.c │ ├── os_support.h │ ├── pitch.c │ ├── pitch.h │ ├── quant_bands.c │ ├── quant_bands.h │ ├── rate.c │ ├── rate.h │ ├── stack_alloc.h │ ├── static_modes_fixed.h │ ├── static_modes_fixed_arm_ne10.h │ ├── static_modes_float.h │ ├── static_modes_float_arm_ne10.h │ ├── tests │ │ ├── meson.build │ │ ├── test_unit_cwrs32.c │ │ ├── test_unit_dft.c │ │ ├── test_unit_entropy.c │ │ ├── test_unit_laplace.c │ │ ├── test_unit_mathops.c │ │ ├── test_unit_mdct.c │ │ ├── test_unit_rotation.c │ │ └── test_unit_types.c │ ├── vq.c │ ├── vq.h │ └── x86 │ │ ├── celt_lpc_sse.h │ │ ├── celt_lpc_sse4_1.c │ │ ├── pitch_sse.c │ │ ├── pitch_sse.h │ │ ├── pitch_sse2.c │ │ ├── pitch_sse4_1.c │ │ ├── vq_sse.h │ │ ├── vq_sse2.c │ │ ├── x86_celt_map.c │ │ ├── x86cpu.c │ │ └── x86cpu.h ├── celt_headers.mk ├── celt_sources.mk ├── cmake │ ├── CFeatureCheck.cmake │ ├── OpusBuildtype.cmake │ ├── OpusConfig.cmake │ ├── OpusConfig.cmake.in │ ├── OpusFunctions.cmake │ ├── OpusPackageVersion.cmake │ ├── OpusSources.cmake │ ├── RunTest.cmake │ ├── config.h.cmake.in │ ├── cpu_info_by_asm.c │ ├── cpu_info_by_c.c │ └── vla.c ├── compile ├── config.guess ├── config.h.in ├── config.sub ├── configure ├── configure.ac ├── depcomp ├── doc │ ├── Doxyfile.in │ ├── Makefile.am │ ├── Makefile.in │ ├── TODO │ ├── customdoxygen.css │ ├── footer.html │ ├── header.html │ ├── meson.build │ ├── opus_logo.svg │ └── trivial_example.c ├── include │ ├── meson.build │ ├── opus.h │ ├── opus_custom.h │ ├── opus_defines.h │ ├── opus_multistream.h │ ├── opus_projection.h │ └── opus_types.h ├── install-sh ├── ltmain.sh ├── m4 │ ├── as-gcc-inline-assembly.m4 │ ├── ax_add_fortify_source.m4 │ ├── libtool.m4 │ ├── ltoptions.m4 │ ├── ltsugar.m4 │ ├── ltversion.m4 │ ├── lt~obsolete.m4 │ └── opus-intrinsics.m4 ├── meson.build ├── meson │ ├── get-version.py │ └── read-sources-list.py ├── meson_options.txt ├── missing ├── opus-uninstalled.pc.in ├── opus.m4 ├── opus.pc.in ├── opus_headers.mk ├── opus_sources.mk ├── package_version ├── silk │ ├── A2NLSF.c │ ├── API.h │ ├── CNG.c │ ├── HP_variable_cutoff.c │ ├── Inlines.h │ ├── LPC_analysis_filter.c │ ├── LPC_fit.c │ ├── LPC_inv_pred_gain.c │ ├── LP_variable_cutoff.c │ ├── MacroCount.h │ ├── MacroDebug.h │ ├── NLSF2A.c │ ├── NLSF_VQ.c │ ├── NLSF_VQ_weights_laroia.c │ ├── NLSF_decode.c │ ├── NLSF_del_dec_quant.c │ ├── NLSF_encode.c │ ├── NLSF_stabilize.c │ ├── NLSF_unpack.c │ ├── NSQ.c │ ├── NSQ.h │ ├── NSQ_del_dec.c │ ├── PLC.c │ ├── PLC.h │ ├── SigProc_FIX.h │ ├── VAD.c │ ├── VQ_WMat_EC.c │ ├── ana_filt_bank_1.c │ ├── arm │ │ ├── LPC_inv_pred_gain_arm.h │ │ ├── LPC_inv_pred_gain_neon_intr.c │ │ ├── NSQ_del_dec_arm.h │ │ ├── NSQ_del_dec_neon_intr.c │ │ ├── NSQ_neon.c │ │ ├── NSQ_neon.h │ │ ├── SigProc_FIX_armv4.h │ │ ├── SigProc_FIX_armv5e.h │ │ ├── arm_silk_map.c │ │ ├── biquad_alt_arm.h │ │ ├── biquad_alt_neon_intr.c │ │ ├── macros_arm64.h │ │ ├── macros_armv4.h │ │ └── macros_armv5e.h │ ├── biquad_alt.c │ ├── bwexpander.c │ ├── bwexpander_32.c │ ├── check_control_input.c │ ├── code_signs.c │ ├── control.h │ ├── control_SNR.c │ ├── control_audio_bandwidth.c │ ├── control_codec.c │ ├── debug.c │ ├── debug.h │ ├── dec_API.c │ ├── decode_core.c │ ├── decode_frame.c │ ├── decode_indices.c │ ├── decode_parameters.c │ ├── decode_pitch.c │ ├── decode_pulses.c │ ├── decoder_set_fs.c │ ├── define.h │ ├── enc_API.c │ ├── encode_indices.c │ ├── encode_pulses.c │ ├── errors.h │ ├── fixed │ │ ├── LTP_analysis_filter_FIX.c │ │ ├── LTP_scale_ctrl_FIX.c │ │ ├── apply_sine_window_FIX.c │ │ ├── arm │ │ │ ├── warped_autocorrelation_FIX_arm.h │ │ │ └── warped_autocorrelation_FIX_neon_intr.c │ │ ├── autocorr_FIX.c │ │ ├── burg_modified_FIX.c │ │ ├── corrMatrix_FIX.c │ │ ├── encode_frame_FIX.c │ │ ├── find_LPC_FIX.c │ │ ├── find_LTP_FIX.c │ │ ├── find_pitch_lags_FIX.c │ │ ├── find_pred_coefs_FIX.c │ │ ├── k2a_FIX.c │ │ ├── k2a_Q16_FIX.c │ │ ├── main_FIX.h │ │ ├── mips │ │ │ ├── noise_shape_analysis_FIX_mipsr1.h │ │ │ └── warped_autocorrelation_FIX_mipsr1.h │ │ ├── noise_shape_analysis_FIX.c │ │ ├── pitch_analysis_core_FIX.c │ │ ├── process_gains_FIX.c │ │ ├── regularize_correlations_FIX.c │ │ ├── residual_energy16_FIX.c │ │ ├── residual_energy_FIX.c │ │ ├── schur64_FIX.c │ │ ├── schur_FIX.c │ │ ├── structs_FIX.h │ │ ├── vector_ops_FIX.c │ │ ├── warped_autocorrelation_FIX.c │ │ └── x86 │ │ │ ├── burg_modified_FIX_sse4_1.c │ │ │ └── vector_ops_FIX_sse4_1.c │ ├── float │ │ ├── LPC_analysis_filter_FLP.c │ │ ├── LPC_inv_pred_gain_FLP.c │ │ ├── LTP_analysis_filter_FLP.c │ │ ├── LTP_scale_ctrl_FLP.c │ │ ├── SigProc_FLP.h │ │ ├── apply_sine_window_FLP.c │ │ ├── autocorrelation_FLP.c │ │ ├── burg_modified_FLP.c │ │ ├── bwexpander_FLP.c │ │ ├── corrMatrix_FLP.c │ │ ├── encode_frame_FLP.c │ │ ├── energy_FLP.c │ │ ├── find_LPC_FLP.c │ │ ├── find_LTP_FLP.c │ │ ├── find_pitch_lags_FLP.c │ │ ├── find_pred_coefs_FLP.c │ │ ├── inner_product_FLP.c │ │ ├── k2a_FLP.c │ │ ├── main_FLP.h │ │ ├── noise_shape_analysis_FLP.c │ │ ├── pitch_analysis_core_FLP.c │ │ ├── process_gains_FLP.c │ │ ├── regularize_correlations_FLP.c │ │ ├── residual_energy_FLP.c │ │ ├── scale_copy_vector_FLP.c │ │ ├── scale_vector_FLP.c │ │ ├── schur_FLP.c │ │ ├── sort_FLP.c │ │ ├── structs_FLP.h │ │ ├── warped_autocorrelation_FLP.c │ │ └── wrappers_FLP.c │ ├── gain_quant.c │ ├── init_decoder.c │ ├── init_encoder.c │ ├── inner_prod_aligned.c │ ├── interpolate.c │ ├── lin2log.c │ ├── log2lin.c │ ├── macros.h │ ├── main.h │ ├── meson.build │ ├── mips │ │ ├── NSQ_del_dec_mipsr1.h │ │ ├── macros_mipsr1.h │ │ └── sigproc_fix_mipsr1.h │ ├── pitch_est_defines.h │ ├── pitch_est_tables.c │ ├── process_NLSFs.c │ ├── quant_LTP_gains.c │ ├── resampler.c │ ├── resampler_down2.c │ ├── resampler_down2_3.c │ ├── resampler_private.h │ ├── resampler_private_AR2.c │ ├── resampler_private_IIR_FIR.c │ ├── resampler_private_down_FIR.c │ ├── resampler_private_up2_HQ.c │ ├── resampler_rom.c │ ├── resampler_rom.h │ ├── resampler_structs.h │ ├── shell_coder.c │ ├── sigm_Q15.c │ ├── sort.c │ ├── stereo_LR_to_MS.c │ ├── stereo_MS_to_LR.c │ ├── stereo_decode_pred.c │ ├── stereo_encode_pred.c │ ├── stereo_find_predictor.c │ ├── stereo_quant_pred.c │ ├── structs.h │ ├── sum_sqr_shift.c │ ├── table_LSF_cos.c │ ├── tables.h │ ├── tables_LTP.c │ ├── tables_NLSF_CB_NB_MB.c │ ├── tables_NLSF_CB_WB.c │ ├── tables_gain.c │ ├── tables_other.c │ ├── tables_pitch_lag.c │ ├── tables_pulses_per_block.c │ ├── tests │ │ ├── meson.build │ │ └── test_unit_LPC_inv_pred_gain.c │ ├── tuning_parameters.h │ ├── typedef.h │ └── x86 │ │ ├── NSQ_del_dec_sse4_1.c │ │ ├── NSQ_sse4_1.c │ │ ├── SigProc_FIX_sse.h │ │ ├── VAD_sse4_1.c │ │ ├── VQ_WMat_EC_sse4_1.c │ │ ├── main_sse.h │ │ └── x86_silk_map.c ├── silk_headers.mk ├── silk_sources.mk ├── src │ ├── analysis.c │ ├── analysis.h │ ├── mapping_matrix.c │ ├── mapping_matrix.h │ ├── meson.build │ ├── mlp.c │ ├── mlp.h │ ├── mlp_data.c │ ├── opus.c │ ├── opus_compare.c │ ├── opus_decoder.c │ ├── opus_demo.c │ ├── opus_encoder.c │ ├── opus_multistream.c │ ├── opus_multistream_decoder.c │ ├── opus_multistream_encoder.c │ ├── opus_private.h │ ├── opus_projection_decoder.c │ ├── opus_projection_encoder.c │ ├── repacketizer.c │ ├── repacketizer_demo.c │ └── tansig_table.h ├── test-driver ├── tests │ ├── meson.build │ ├── opus_encode_regressions.c │ ├── run_vectors.sh │ ├── test_opus_api.c │ ├── test_opus_common.h │ ├── test_opus_decode.c │ ├── test_opus_encode.c │ ├── test_opus_padding.c │ └── test_opus_projection.c └── win32 │ ├── VS2015 │ ├── common.props │ ├── opus.sln │ ├── opus.vcxproj │ ├── opus.vcxproj.filters │ ├── opus_demo.vcxproj │ ├── opus_demo.vcxproj.filters │ ├── test_opus_api.vcxproj │ ├── test_opus_api.vcxproj.filters │ ├── test_opus_decode.vcxproj │ ├── test_opus_decode.vcxproj.filters │ ├── test_opus_encode.vcxproj │ └── test_opus_encode.vcxproj.filters │ ├── config.h │ └── genversion.bat ├── opusfile-0.12 ├── AUTHORS ├── CMakeLists.txt ├── COPYING ├── FindOgg.cmake ├── FindOpus.cmake ├── Makefile.am ├── Makefile.in ├── README.md ├── aclocal.m4 ├── compile ├── config.guess ├── config.h.in ├── config.sub ├── configure ├── configure.ac ├── depcomp ├── doc │ ├── Doxyfile.in │ ├── Makefile │ └── opus_logo.svg ├── examples │ ├── opusfile_example.c │ ├── seeking_example.c │ ├── win32utf8.c │ └── win32utf8.h ├── include │ └── opusfile.h ├── install-sh ├── ltmain.sh ├── m4 │ ├── attributes.m4 │ ├── libtool.m4 │ ├── ltoptions.m4 │ ├── ltsugar.m4 │ ├── ltversion.m4 │ └── lt~obsolete.m4 ├── missing ├── opusfile-uninstalled.pc.in ├── opusfile.pc.in ├── opusurl-uninstalled.pc.in ├── opusurl.pc.in ├── package_version ├── src │ ├── http.c │ ├── info.c │ ├── internal.c │ ├── internal.h │ ├── opusfile.c │ ├── stream.c │ ├── wincerts.c │ └── winerrno.h ├── unix │ └── Makefile └── win32 │ └── VS2015 │ ├── opusfile.sln │ ├── opusfile.vcxproj │ ├── opusfile.vcxproj.filters │ ├── opusfile_example.vcxproj │ ├── opusfile_example.vcxproj.filters │ ├── seeking_example.vcxproj │ └── seeking_example.vcxproj.filters ├── package_msys.sh ├── physfs-3.0.2 ├── .hg_archival.txt ├── .hgignore ├── .hgtags ├── CMakeLists.txt ├── LICENSE.txt ├── README.txt ├── docs │ ├── CHANGELOG.txt │ ├── CREDITS.txt │ ├── Doxyfile │ ├── INSTALL.txt │ ├── README-API-documentation.txt │ └── TODO.txt ├── extras │ ├── README-CSharp.txt │ ├── abs-file.h │ ├── buildbot-checker.sh │ ├── buildbot-emscripten.sh │ ├── buildbot-os2.sh │ ├── buildbot-raspberrypi.sh │ ├── casefolding.txt │ ├── globbing.c │ ├── globbing.h │ ├── ignorecase.c │ ├── ignorecase.h │ ├── makecasefoldhashtable.pl │ ├── physfs.pc.in │ ├── physfshttpd.c │ ├── physfsrwops.c │ ├── physfsrwops.h │ ├── physfsunpack.c │ ├── selfextract.c │ └── uninstall.sh ├── src │ ├── physfs.c │ ├── physfs.h │ ├── physfs_archiver_7z.c │ ├── physfs_archiver_dir.c │ ├── physfs_archiver_grp.c │ ├── physfs_archiver_hog.c │ ├── physfs_archiver_iso9660.c │ ├── physfs_archiver_mvl.c │ ├── physfs_archiver_qpak.c │ ├── physfs_archiver_slb.c │ ├── physfs_archiver_unpacked.c │ ├── physfs_archiver_vdf.c │ ├── physfs_archiver_wad.c │ ├── physfs_archiver_zip.c │ ├── physfs_byteorder.c │ ├── physfs_casefolding.h │ ├── physfs_internal.h │ ├── physfs_lzmasdk.h │ ├── physfs_miniz.h │ ├── physfs_platform_apple.m │ ├── physfs_platform_haiku.cpp │ ├── physfs_platform_os2.c │ ├── physfs_platform_posix.c │ ├── physfs_platform_qnx.c │ ├── physfs_platform_unix.c │ ├── physfs_platform_windows.c │ ├── physfs_platform_winrt.cpp │ ├── physfs_platforms.h │ └── physfs_unicode.c └── test │ └── test_physfs.c └── zlib-1.3 ├── CMakeLists.txt ├── ChangeLog ├── FAQ ├── INDEX ├── LICENSE ├── Makefile ├── 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.cmakein ├── zconf.h.in ├── zconf.h.included ├── zlib.3 ├── zlib.3.pdf ├── zlib.h ├── zlib.map ├── zlib.pc.cmakein ├── zlib.pc.in ├── zutil.c └── zutil.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/.gitignore -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/README.txt -------------------------------------------------------------------------------- /mingw-w64/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/mingw-w64/README.txt -------------------------------------------------------------------------------- /mingw-w64/git/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/mingw-w64/git/PKGBUILD -------------------------------------------------------------------------------- /mingw-w64/release/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/mingw-w64/release/PKGBUILD -------------------------------------------------------------------------------- /universal/Allegro.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/Allegro.nuspec -------------------------------------------------------------------------------- /universal/Allegro.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/Allegro.targets -------------------------------------------------------------------------------- /universal/AllegroDeps.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/AllegroDeps.nuspec -------------------------------------------------------------------------------- /universal/AllegroDeps.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/AllegroDeps.targets -------------------------------------------------------------------------------- /universal/AllegroUI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/AllegroUI.xml -------------------------------------------------------------------------------- /universal/README_msvc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/README_msvc.txt -------------------------------------------------------------------------------- /universal/README_msys.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/README_msys.txt -------------------------------------------------------------------------------- /universal/README_nuget.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/README_nuget.txt -------------------------------------------------------------------------------- /universal/build_allegro_msvc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/build_allegro_msvc.bat -------------------------------------------------------------------------------- /universal/build_allegro_msvc2013_32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/build_allegro_msvc2013_32.bat -------------------------------------------------------------------------------- /universal/build_allegro_msvc2013_64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/build_allegro_msvc2013_64.bat -------------------------------------------------------------------------------- /universal/build_allegro_msvc2015_32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/build_allegro_msvc2015_32.bat -------------------------------------------------------------------------------- /universal/build_allegro_msvc2015_64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/build_allegro_msvc2015_64.bat -------------------------------------------------------------------------------- /universal/build_allegro_msvc2022_32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/build_allegro_msvc2022_32.bat -------------------------------------------------------------------------------- /universal/build_allegro_msvc2022_64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/build_allegro_msvc2022_64.bat -------------------------------------------------------------------------------- /universal/build_allegro_msys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/build_allegro_msys.sh -------------------------------------------------------------------------------- /universal/build_allegro_msys_32.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/build_allegro_msys_32.sh -------------------------------------------------------------------------------- /universal/build_allegro_msys_64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/build_allegro_msys_64.sh -------------------------------------------------------------------------------- /universal/build_deps_msvc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/build_deps_msvc.bat -------------------------------------------------------------------------------- /universal/build_deps_msvc2013_32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/build_deps_msvc2013_32.bat -------------------------------------------------------------------------------- /universal/build_deps_msvc2013_64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/build_deps_msvc2013_64.bat -------------------------------------------------------------------------------- /universal/build_deps_msvc2015_32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/build_deps_msvc2015_32.bat -------------------------------------------------------------------------------- /universal/build_deps_msvc2015_64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/build_deps_msvc2015_64.bat -------------------------------------------------------------------------------- /universal/build_deps_msvc2022_32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/build_deps_msvc2022_32.bat -------------------------------------------------------------------------------- /universal/build_deps_msvc2022_64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/build_deps_msvc2022_64.bat -------------------------------------------------------------------------------- /universal/build_deps_msys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/build_deps_msys.sh -------------------------------------------------------------------------------- /universal/build_deps_msys_32.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/build_deps_msys_32.sh -------------------------------------------------------------------------------- /universal/build_deps_msys_64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/build_deps_msys_64.sh -------------------------------------------------------------------------------- /universal/build_nuget.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/build_nuget.cmd -------------------------------------------------------------------------------- /universal/create_nuspec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/create_nuspec.py -------------------------------------------------------------------------------- /universal/dumb-2.0.3/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | SortIncludes: false 4 | -------------------------------------------------------------------------------- /universal/dumb-2.0.3/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/.gitattributes -------------------------------------------------------------------------------- /universal/dumb-2.0.3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/.gitignore -------------------------------------------------------------------------------- /universal/dumb-2.0.3/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/CHANGELOG.md -------------------------------------------------------------------------------- /universal/dumb-2.0.3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/CMakeLists.txt -------------------------------------------------------------------------------- /universal/dumb-2.0.3/COMPILING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/COMPILING.md -------------------------------------------------------------------------------- /universal/dumb-2.0.3/DUMBFILE_SYSTEM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/DUMBFILE_SYSTEM.md -------------------------------------------------------------------------------- /universal/dumb-2.0.3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/LICENSE -------------------------------------------------------------------------------- /universal/dumb-2.0.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/README.md -------------------------------------------------------------------------------- /universal/dumb-2.0.3/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/examples/README.md -------------------------------------------------------------------------------- /universal/dumb-2.0.3/examples/dumbout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/examples/dumbout.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/include/aldumb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/include/aldumb.h -------------------------------------------------------------------------------- /universal/dumb-2.0.3/include/dumb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/include/dumb.h -------------------------------------------------------------------------------- /universal/dumb-2.0.3/pkg-config.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/pkg-config.pc.in -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/core/atexit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/core/atexit.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/core/duhlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/core/duhlen.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/core/duhtag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/core/duhtag.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/core/loadduh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/core/loadduh.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/core/makeduh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/core/makeduh.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/core/rawsig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/core/rawsig.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/core/readduh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/core/readduh.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/core/rendduh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/core/rendduh.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/core/rendsig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/core/rendsig.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/core/unload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/core/unload.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/helpers/lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/helpers/lpc.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/helpers/riff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/helpers/riff.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/it/itload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/it/itload.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/it/itload2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/it/itload2.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/it/itmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/it/itmisc.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/it/itorder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/it/itorder.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/it/itread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/it/itread.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/it/itread2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/it/itread2.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/it/itrender.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/it/itrender.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/it/itunload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/it/itunload.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/it/load669.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/it/load669.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/it/load6692.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/it/load6692.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/it/loadamf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/it/loadamf.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/it/loadamf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/it/loadamf2.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/it/loadany.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/it/loadany.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/it/loadany2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/it/loadany2.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/it/loadasy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/it/loadasy.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/it/loadasy2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/it/loadasy2.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/it/loadmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/it/loadmod.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/it/loadmod2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/it/loadmod2.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/it/loadmtm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/it/loadmtm.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/it/loadmtm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/it/loadmtm2.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/it/loadokt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/it/loadokt.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/it/loadokt2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/it/loadokt2.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/it/loadpsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/it/loadpsm.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/it/loadpsm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/it/loadpsm2.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/it/loadptm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/it/loadptm.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/it/loadptm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/it/loadptm2.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/it/loadriff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/it/loadriff.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/it/loads3m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/it/loads3m.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/it/loadstm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/it/loadstm.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/it/loadxm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/it/loadxm.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/it/loadxm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/it/loadxm2.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/it/read669.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/it/read669.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/it/readam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/it/readam.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/it/readamf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/it/readamf.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/it/readany.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/it/readany.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/it/readasy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/it/readasy.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/it/readmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/it/readmod.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/it/readmtm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/it/readmtm.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/it/readokt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/it/readokt.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/it/readpsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/it/readpsm.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/it/readptm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/it/readptm.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/it/reads3m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/it/reads3m.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/it/readstm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/it/readstm.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/it/readxm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/it/readxm.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/src/it/readxm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/dumb-2.0.3/src/it/readxm2.c -------------------------------------------------------------------------------- /universal/dumb-2.0.3/vc6/.gitignore: -------------------------------------------------------------------------------- 1 | *.user 2 | Debug 3 | Release -------------------------------------------------------------------------------- /universal/flac-1.4.3/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/AUTHORS -------------------------------------------------------------------------------- /universal/flac-1.4.3/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/CHANGELOG.md -------------------------------------------------------------------------------- /universal/flac-1.4.3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/CMakeLists.txt -------------------------------------------------------------------------------- /universal/flac-1.4.3/COPYING.FDL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/COPYING.FDL -------------------------------------------------------------------------------- /universal/flac-1.4.3/COPYING.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/COPYING.GPL -------------------------------------------------------------------------------- /universal/flac-1.4.3/COPYING.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/COPYING.LGPL -------------------------------------------------------------------------------- /universal/flac-1.4.3/COPYING.Xiph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/COPYING.Xiph -------------------------------------------------------------------------------- /universal/flac-1.4.3/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/Makefile.am -------------------------------------------------------------------------------- /universal/flac-1.4.3/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/Makefile.in -------------------------------------------------------------------------------- /universal/flac-1.4.3/PaxHeaders/cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/PaxHeaders/cmake -------------------------------------------------------------------------------- /universal/flac-1.4.3/PaxHeaders/doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/PaxHeaders/doc -------------------------------------------------------------------------------- /universal/flac-1.4.3/PaxHeaders/m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/PaxHeaders/m4 -------------------------------------------------------------------------------- /universal/flac-1.4.3/PaxHeaders/man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/PaxHeaders/man -------------------------------------------------------------------------------- /universal/flac-1.4.3/PaxHeaders/src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/PaxHeaders/src -------------------------------------------------------------------------------- /universal/flac-1.4.3/PaxHeaders/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/PaxHeaders/test -------------------------------------------------------------------------------- /universal/flac-1.4.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/README.md -------------------------------------------------------------------------------- /universal/flac-1.4.3/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/aclocal.m4 -------------------------------------------------------------------------------- /universal/flac-1.4.3/ar-lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/ar-lib -------------------------------------------------------------------------------- /universal/flac-1.4.3/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/autogen.sh -------------------------------------------------------------------------------- /universal/flac-1.4.3/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/compile -------------------------------------------------------------------------------- /universal/flac-1.4.3/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/config.guess -------------------------------------------------------------------------------- /universal/flac-1.4.3/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/config.h.in -------------------------------------------------------------------------------- /universal/flac-1.4.3/config.rpath: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /universal/flac-1.4.3/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/config.sub -------------------------------------------------------------------------------- /universal/flac-1.4.3/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/configure -------------------------------------------------------------------------------- /universal/flac-1.4.3/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/configure.ac -------------------------------------------------------------------------------- /universal/flac-1.4.3/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/depcomp -------------------------------------------------------------------------------- /universal/flac-1.4.3/doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/doc/Doxyfile.in -------------------------------------------------------------------------------- /universal/flac-1.4.3/doc/FLAC.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/doc/FLAC.tag -------------------------------------------------------------------------------- /universal/flac-1.4.3/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/doc/Makefile.am -------------------------------------------------------------------------------- /universal/flac-1.4.3/doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/doc/Makefile.in -------------------------------------------------------------------------------- /universal/flac-1.4.3/doc/api/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/doc/api/bc_s.png -------------------------------------------------------------------------------- /universal/flac-1.4.3/doc/api/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/doc/api/bdwn.png -------------------------------------------------------------------------------- /universal/flac-1.4.3/doc/api/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/doc/api/doc.png -------------------------------------------------------------------------------- /universal/flac-1.4.3/doc/api/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/doc/api/menu.js -------------------------------------------------------------------------------- /universal/flac-1.4.3/doc/api/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/doc/api/open.png -------------------------------------------------------------------------------- /universal/flac-1.4.3/doc/api/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/doc/api/tabs.css -------------------------------------------------------------------------------- /universal/flac-1.4.3/doc/isoflac.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/doc/isoflac.txt -------------------------------------------------------------------------------- /universal/flac-1.4.3/examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/examples/README -------------------------------------------------------------------------------- /universal/flac-1.4.3/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/install-sh -------------------------------------------------------------------------------- /universal/flac-1.4.3/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/ltmain.sh -------------------------------------------------------------------------------- /universal/flac-1.4.3/m4/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/m4/Makefile.am -------------------------------------------------------------------------------- /universal/flac-1.4.3/m4/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/m4/Makefile.in -------------------------------------------------------------------------------- /universal/flac-1.4.3/m4/add_cflags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/m4/add_cflags.m4 -------------------------------------------------------------------------------- /universal/flac-1.4.3/m4/bswap.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/m4/bswap.m4 -------------------------------------------------------------------------------- /universal/flac-1.4.3/m4/clang.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/m4/clang.m4 -------------------------------------------------------------------------------- /universal/flac-1.4.3/m4/codeset.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/m4/codeset.m4 -------------------------------------------------------------------------------- /universal/flac-1.4.3/m4/endian.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/m4/endian.m4 -------------------------------------------------------------------------------- /universal/flac-1.4.3/m4/iconv.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/m4/iconv.m4 -------------------------------------------------------------------------------- /universal/flac-1.4.3/m4/lib-ld.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/m4/lib-ld.m4 -------------------------------------------------------------------------------- /universal/flac-1.4.3/m4/lib-link.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/m4/lib-link.m4 -------------------------------------------------------------------------------- /universal/flac-1.4.3/m4/lib-prefix.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/m4/lib-prefix.m4 -------------------------------------------------------------------------------- /universal/flac-1.4.3/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/m4/libtool.m4 -------------------------------------------------------------------------------- /universal/flac-1.4.3/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/m4/ltoptions.m4 -------------------------------------------------------------------------------- /universal/flac-1.4.3/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/m4/ltsugar.m4 -------------------------------------------------------------------------------- /universal/flac-1.4.3/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/m4/ltversion.m4 -------------------------------------------------------------------------------- /universal/flac-1.4.3/m4/ogg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/m4/ogg.m4 -------------------------------------------------------------------------------- /universal/flac-1.4.3/m4/really_gcc.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/m4/really_gcc.m4 -------------------------------------------------------------------------------- /universal/flac-1.4.3/man/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/man/Makefile.am -------------------------------------------------------------------------------- /universal/flac-1.4.3/man/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/man/Makefile.in -------------------------------------------------------------------------------- /universal/flac-1.4.3/man/flac.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/man/flac.1 -------------------------------------------------------------------------------- /universal/flac-1.4.3/man/flac.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/man/flac.md -------------------------------------------------------------------------------- /universal/flac-1.4.3/man/metaflac.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/man/metaflac.1 -------------------------------------------------------------------------------- /universal/flac-1.4.3/man/metaflac.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/man/metaflac.md -------------------------------------------------------------------------------- /universal/flac-1.4.3/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/missing -------------------------------------------------------------------------------- /universal/flac-1.4.3/oss-fuzz/empty.cc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /universal/flac-1.4.3/oss-fuzz/seek.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/oss-fuzz/seek.cc -------------------------------------------------------------------------------- /universal/flac-1.4.3/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/src/Makefile.am -------------------------------------------------------------------------------- /universal/flac-1.4.3/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/src/Makefile.in -------------------------------------------------------------------------------- /universal/flac-1.4.3/src/flac/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/src/flac/main.c -------------------------------------------------------------------------------- /universal/flac-1.4.3/src/flac/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/src/flac/utils.c -------------------------------------------------------------------------------- /universal/flac-1.4.3/src/flac/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/src/flac/utils.h -------------------------------------------------------------------------------- /universal/flac-1.4.3/src/share/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/src/share/README -------------------------------------------------------------------------------- /universal/flac-1.4.3/test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/test/Makefile.am -------------------------------------------------------------------------------- /universal/flac-1.4.3/test/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/test/Makefile.in -------------------------------------------------------------------------------- /universal/flac-1.4.3/test/cuesheet.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/test/cuesheet.ok -------------------------------------------------------------------------------- /universal/flac-1.4.3/test/cuesheets/bad.130.TRACK_missing_INDEX_01_1.cue: -------------------------------------------------------------------------------- 1 | FILE "z.wav" WAVE 2 | TRACK 01 AUDIO 3 | -------------------------------------------------------------------------------- /universal/flac-1.4.3/test/cuesheets/bad.134.TRACK_missing_number.cue: -------------------------------------------------------------------------------- 1 | FILE "z.wav" WAVE 2 | TRACK 3 | -------------------------------------------------------------------------------- /universal/flac-1.4.3/test/cuesheets/bad.135.TRACK_invalid_number_1.cue: -------------------------------------------------------------------------------- 1 | FILE "z.wav" WAVE 2 | TRACK thhpt! AUDIO 3 | -------------------------------------------------------------------------------- /universal/flac-1.4.3/test/cuesheets/bad.136.TRACK_invalid_number_2.cue: -------------------------------------------------------------------------------- 1 | FILE "z.wav" WAVE 2 | TRACK 0 AUDIO 3 | -------------------------------------------------------------------------------- /universal/flac-1.4.3/test/cuesheets/bad.137.TRACK_cdda_out_of_range.cue: -------------------------------------------------------------------------------- 1 | FILE "z.wav" WAVE 2 | TRACK 100 AUDIO 3 | -------------------------------------------------------------------------------- /universal/flac-1.4.3/test/cuesheets/bad.139.TRACK_missing_type.cue: -------------------------------------------------------------------------------- 1 | FILE "z.wav" WAVE 2 | TRACK 01 3 | -------------------------------------------------------------------------------- /universal/flac-1.4.3/test/cuesheets/bad.140.no_TRACKs.cue: -------------------------------------------------------------------------------- 1 | FILE "z.wav" WAVE 2 | -------------------------------------------------------------------------------- /universal/flac-1.4.3/test/cuesheets/bad.200.FLAC_leadin_missing_offset.cue: -------------------------------------------------------------------------------- 1 | REM FLAC__lead-in 2 | -------------------------------------------------------------------------------- /universal/flac-1.4.3/test/cuesheets/bad.201.FLAC_leadin_illegal_offset.cue: -------------------------------------------------------------------------------- 1 | REM FLAC__lead-in thhpt! 2 | -------------------------------------------------------------------------------- /universal/flac-1.4.3/test/cuesheets/bad.202.FLAC_leadin_cdda_illegal_offset.cue: -------------------------------------------------------------------------------- 1 | REM FLAC__lead-in 123 2 | -------------------------------------------------------------------------------- /universal/flac-1.4.3/test/cuesheets/bad.231.FLAC_leadout_missing_track.cue: -------------------------------------------------------------------------------- 1 | REM FLAC__lead-out 2 | -------------------------------------------------------------------------------- /universal/flac-1.4.3/test/cuesheets/bad.232.FLAC_leadout_illegal_track.cue: -------------------------------------------------------------------------------- 1 | REM FLAC__lead-out thhpt! 2 | -------------------------------------------------------------------------------- /universal/flac-1.4.3/test/cuesheets/bad.233.FLAC_leadout_missing_offset.cue: -------------------------------------------------------------------------------- 1 | REM FLAC__lead-out 170 2 | -------------------------------------------------------------------------------- /universal/flac-1.4.3/test/cuesheets/bad.234.FLAC_leadout_illegal_offset.cue: -------------------------------------------------------------------------------- 1 | REM FLAC__lead-out 170 thhpt! 2 | -------------------------------------------------------------------------------- /universal/flac-1.4.3/test/cuesheets/bad.235.FLAC_leadout_offset_not_211680000.cue: -------------------------------------------------------------------------------- 1 | REM FLAC__lead-out 170 211680588 2 | -------------------------------------------------------------------------------- /universal/flac-1.4.3/test/picture.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/flac-1.4.3/test/picture.ok -------------------------------------------------------------------------------- /universal/freetype-2.13.2/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/freetype-2.13.2/ChangeLog -------------------------------------------------------------------------------- /universal/freetype-2.13.2/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/freetype-2.13.2/LICENSE.TXT -------------------------------------------------------------------------------- /universal/freetype-2.13.2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/freetype-2.13.2/Makefile -------------------------------------------------------------------------------- /universal/freetype-2.13.2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/freetype-2.13.2/README -------------------------------------------------------------------------------- /universal/freetype-2.13.2/README.git: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/freetype-2.13.2/README.git -------------------------------------------------------------------------------- /universal/freetype-2.13.2/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/freetype-2.13.2/autogen.sh -------------------------------------------------------------------------------- /universal/freetype-2.13.2/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/freetype-2.13.2/configure -------------------------------------------------------------------------------- /universal/freetype-2.13.2/docs/CMAKE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/freetype-2.13.2/docs/CMAKE -------------------------------------------------------------------------------- /universal/freetype-2.13.2/docs/DEBUG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/freetype-2.13.2/docs/DEBUG -------------------------------------------------------------------------------- /universal/freetype-2.13.2/docs/MAKEPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/freetype-2.13.2/docs/MAKEPP -------------------------------------------------------------------------------- /universal/freetype-2.13.2/docs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/freetype-2.13.2/docs/README -------------------------------------------------------------------------------- /universal/freetype-2.13.2/docs/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/freetype-2.13.2/docs/TODO -------------------------------------------------------------------------------- /universal/freetype-2.13.2/docs/reference/assets/javascripts/lunr/min/lunr.jp.min.js: -------------------------------------------------------------------------------- 1 | module.exports=require("./lunr.ja"); -------------------------------------------------------------------------------- /universal/freetype-2.13.2/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/freetype-2.13.2/meson.build -------------------------------------------------------------------------------- /universal/freetype-2.13.2/modules.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/freetype-2.13.2/modules.cfg -------------------------------------------------------------------------------- /universal/freetype-2.13.2/objs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/freetype-2.13.2/objs/README -------------------------------------------------------------------------------- /universal/freetype-2.9.1.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/freetype-2.9.1.tar.bz2 -------------------------------------------------------------------------------- /universal/libjpeg-turbo-3.0.0/cjpeg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libjpeg-turbo-3.0.0/cjpeg.1 -------------------------------------------------------------------------------- /universal/libjpeg-turbo-3.0.0/cjpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libjpeg-turbo-3.0.0/cjpeg.c -------------------------------------------------------------------------------- /universal/libjpeg-turbo-3.0.0/cmyk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libjpeg-turbo-3.0.0/cmyk.h -------------------------------------------------------------------------------- /universal/libjpeg-turbo-3.0.0/djpeg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libjpeg-turbo-3.0.0/djpeg.1 -------------------------------------------------------------------------------- /universal/libjpeg-turbo-3.0.0/djpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libjpeg-turbo-3.0.0/djpeg.c -------------------------------------------------------------------------------- /universal/libjpeg-turbo-3.0.0/doc/html/doxygen-extra.css: -------------------------------------------------------------------------------- 1 | code { 2 | color: #4665A2; 3 | } 4 | -------------------------------------------------------------------------------- /universal/libjpeg-turbo-3.0.0/doxygen-extra.css: -------------------------------------------------------------------------------- 1 | code { 2 | color: #4665A2; 3 | } 4 | -------------------------------------------------------------------------------- /universal/libjpeg-turbo-3.0.0/java/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Main-Class: TJExample 3 | -------------------------------------------------------------------------------- /universal/libjpeg-turbo-3.0.0/jcicc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libjpeg-turbo-3.0.0/jcicc.c -------------------------------------------------------------------------------- /universal/libjpeg-turbo-3.0.0/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libjpeg-turbo-3.0.0/jdct.h -------------------------------------------------------------------------------- /universal/libjpeg-turbo-3.0.0/jdicc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libjpeg-turbo-3.0.0/jdicc.c -------------------------------------------------------------------------------- /universal/libjpeg-turbo-3.0.0/jsimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libjpeg-turbo-3.0.0/jsimd.h -------------------------------------------------------------------------------- /universal/libjpeg-turbo-3.0.0/rdbmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libjpeg-turbo-3.0.0/rdbmp.c -------------------------------------------------------------------------------- /universal/libjpeg-turbo-3.0.0/rdgif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libjpeg-turbo-3.0.0/rdgif.c -------------------------------------------------------------------------------- /universal/libjpeg-turbo-3.0.0/rdppm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libjpeg-turbo-3.0.0/rdppm.c -------------------------------------------------------------------------------- /universal/libjpeg-turbo-3.0.0/wrbmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libjpeg-turbo-3.0.0/wrbmp.c -------------------------------------------------------------------------------- /universal/libjpeg-turbo-3.0.0/wrgif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libjpeg-turbo-3.0.0/wrgif.c -------------------------------------------------------------------------------- /universal/libjpeg-turbo-3.0.0/wrppm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libjpeg-turbo-3.0.0/wrppm.c -------------------------------------------------------------------------------- /universal/libogg-1.3.5/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libogg-1.3.5/AUTHORS -------------------------------------------------------------------------------- /universal/libogg-1.3.5/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libogg-1.3.5/CHANGES -------------------------------------------------------------------------------- /universal/libogg-1.3.5/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libogg-1.3.5/CMakeLists.txt -------------------------------------------------------------------------------- /universal/libogg-1.3.5/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libogg-1.3.5/COPYING -------------------------------------------------------------------------------- /universal/libogg-1.3.5/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libogg-1.3.5/Makefile.am -------------------------------------------------------------------------------- /universal/libogg-1.3.5/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libogg-1.3.5/Makefile.in -------------------------------------------------------------------------------- /universal/libogg-1.3.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libogg-1.3.5/README.md -------------------------------------------------------------------------------- /universal/libogg-1.3.5/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libogg-1.3.5/aclocal.m4 -------------------------------------------------------------------------------- /universal/libogg-1.3.5/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libogg-1.3.5/compile -------------------------------------------------------------------------------- /universal/libogg-1.3.5/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libogg-1.3.5/config.guess -------------------------------------------------------------------------------- /universal/libogg-1.3.5/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libogg-1.3.5/config.h.in -------------------------------------------------------------------------------- /universal/libogg-1.3.5/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libogg-1.3.5/config.sub -------------------------------------------------------------------------------- /universal/libogg-1.3.5/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libogg-1.3.5/configure -------------------------------------------------------------------------------- /universal/libogg-1.3.5/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libogg-1.3.5/configure.ac -------------------------------------------------------------------------------- /universal/libogg-1.3.5/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libogg-1.3.5/depcomp -------------------------------------------------------------------------------- /universal/libogg-1.3.5/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libogg-1.3.5/doc/index.html -------------------------------------------------------------------------------- /universal/libogg-1.3.5/doc/pages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libogg-1.3.5/doc/pages.png -------------------------------------------------------------------------------- /universal/libogg-1.3.5/doc/stream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libogg-1.3.5/doc/stream.png -------------------------------------------------------------------------------- /universal/libogg-1.3.5/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libogg-1.3.5/install-sh -------------------------------------------------------------------------------- /universal/libogg-1.3.5/libogg.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libogg-1.3.5/libogg.spec -------------------------------------------------------------------------------- /universal/libogg-1.3.5/libogg.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libogg-1.3.5/libogg.spec.in -------------------------------------------------------------------------------- /universal/libogg-1.3.5/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libogg-1.3.5/ltmain.sh -------------------------------------------------------------------------------- /universal/libogg-1.3.5/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libogg-1.3.5/m4/libtool.m4 -------------------------------------------------------------------------------- /universal/libogg-1.3.5/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libogg-1.3.5/m4/ltsugar.m4 -------------------------------------------------------------------------------- /universal/libogg-1.3.5/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libogg-1.3.5/missing -------------------------------------------------------------------------------- /universal/libogg-1.3.5/ogg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libogg-1.3.5/ogg.m4 -------------------------------------------------------------------------------- /universal/libogg-1.3.5/ogg.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libogg-1.3.5/ogg.pc.in -------------------------------------------------------------------------------- /universal/libogg-1.3.5/src/bitwise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libogg-1.3.5/src/bitwise.c -------------------------------------------------------------------------------- /universal/libogg-1.3.5/src/crctable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libogg-1.3.5/src/crctable.h -------------------------------------------------------------------------------- /universal/libogg-1.3.5/src/framing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libogg-1.3.5/src/framing.c -------------------------------------------------------------------------------- /universal/libogg-1.3.5/win32/ogg.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libogg-1.3.5/win32/ogg.def -------------------------------------------------------------------------------- /universal/libopenmpt-0.7.11/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libopenmpt-0.7.11/LICENSE -------------------------------------------------------------------------------- /universal/libopenmpt-0.7.11/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libopenmpt-0.7.11/Makefile -------------------------------------------------------------------------------- /universal/libopenmpt-0.7.11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libopenmpt-0.7.11/README.md -------------------------------------------------------------------------------- /universal/libopenmpt-0.7.11/contrib/libmodplug-0.8.8.5/autogen.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | autoreconf -i 3 | -------------------------------------------------------------------------------- /universal/libopenmpt-0.7.11/contrib/libmodplug-0.8.9.0/autogen.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | autoreconf -i 3 | -------------------------------------------------------------------------------- /universal/libpng-1.6.40/.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/.appveyor.yml -------------------------------------------------------------------------------- /universal/libpng-1.6.40/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/.gitignore -------------------------------------------------------------------------------- /universal/libpng-1.6.40/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/.travis.yml -------------------------------------------------------------------------------- /universal/libpng-1.6.40/ANNOUNCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/ANNOUNCE -------------------------------------------------------------------------------- /universal/libpng-1.6.40/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/AUTHORS -------------------------------------------------------------------------------- /universal/libpng-1.6.40/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/CHANGES -------------------------------------------------------------------------------- /universal/libpng-1.6.40/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/INSTALL -------------------------------------------------------------------------------- /universal/libpng-1.6.40/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/LICENSE -------------------------------------------------------------------------------- /universal/libpng-1.6.40/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/Makefile.am -------------------------------------------------------------------------------- /universal/libpng-1.6.40/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/Makefile.in -------------------------------------------------------------------------------- /universal/libpng-1.6.40/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/README -------------------------------------------------------------------------------- /universal/libpng-1.6.40/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/TODO -------------------------------------------------------------------------------- /universal/libpng-1.6.40/TRADEMARK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/TRADEMARK -------------------------------------------------------------------------------- /universal/libpng-1.6.40/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/aclocal.m4 -------------------------------------------------------------------------------- /universal/libpng-1.6.40/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/autogen.sh -------------------------------------------------------------------------------- /universal/libpng-1.6.40/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/compile -------------------------------------------------------------------------------- /universal/libpng-1.6.40/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/config.guess -------------------------------------------------------------------------------- /universal/libpng-1.6.40/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/config.h.in -------------------------------------------------------------------------------- /universal/libpng-1.6.40/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/config.sub -------------------------------------------------------------------------------- /universal/libpng-1.6.40/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/configure -------------------------------------------------------------------------------- /universal/libpng-1.6.40/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/configure.ac -------------------------------------------------------------------------------- /universal/libpng-1.6.40/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/depcomp -------------------------------------------------------------------------------- /universal/libpng-1.6.40/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/example.c -------------------------------------------------------------------------------- /universal/libpng-1.6.40/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/install-sh -------------------------------------------------------------------------------- /universal/libpng-1.6.40/libpng.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/libpng.3 -------------------------------------------------------------------------------- /universal/libpng-1.6.40/libpng.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/libpng.pc.in -------------------------------------------------------------------------------- /universal/libpng-1.6.40/libpngpf.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/libpngpf.3 -------------------------------------------------------------------------------- /universal/libpng-1.6.40/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/ltmain.sh -------------------------------------------------------------------------------- /universal/libpng-1.6.40/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/missing -------------------------------------------------------------------------------- /universal/libpng-1.6.40/png.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/png.5 -------------------------------------------------------------------------------- /universal/libpng-1.6.40/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/png.c -------------------------------------------------------------------------------- /universal/libpng-1.6.40/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/png.h -------------------------------------------------------------------------------- /universal/libpng-1.6.40/pngbar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/pngbar.jpg -------------------------------------------------------------------------------- /universal/libpng-1.6.40/pngbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/pngbar.png -------------------------------------------------------------------------------- /universal/libpng-1.6.40/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/pngconf.h -------------------------------------------------------------------------------- /universal/libpng-1.6.40/pngdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/pngdebug.h -------------------------------------------------------------------------------- /universal/libpng-1.6.40/pngerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/pngerror.c -------------------------------------------------------------------------------- /universal/libpng-1.6.40/pngget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/pngget.c -------------------------------------------------------------------------------- /universal/libpng-1.6.40/pnginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/pnginfo.h -------------------------------------------------------------------------------- /universal/libpng-1.6.40/pngmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/pngmem.c -------------------------------------------------------------------------------- /universal/libpng-1.6.40/pngnow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/pngnow.png -------------------------------------------------------------------------------- /universal/libpng-1.6.40/pngpread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/pngpread.c -------------------------------------------------------------------------------- /universal/libpng-1.6.40/pngpriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/pngpriv.h -------------------------------------------------------------------------------- /universal/libpng-1.6.40/pngread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/pngread.c -------------------------------------------------------------------------------- /universal/libpng-1.6.40/pngrio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/pngrio.c -------------------------------------------------------------------------------- /universal/libpng-1.6.40/pngrtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/pngrtran.c -------------------------------------------------------------------------------- /universal/libpng-1.6.40/pngrutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/pngrutil.c -------------------------------------------------------------------------------- /universal/libpng-1.6.40/pngset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/pngset.c -------------------------------------------------------------------------------- /universal/libpng-1.6.40/pngstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/pngstruct.h -------------------------------------------------------------------------------- /universal/libpng-1.6.40/pngtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/pngtest.c -------------------------------------------------------------------------------- /universal/libpng-1.6.40/pngtest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/pngtest.png -------------------------------------------------------------------------------- /universal/libpng-1.6.40/pngtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/pngtrans.c -------------------------------------------------------------------------------- /universal/libpng-1.6.40/pngusr.dfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/pngusr.dfa -------------------------------------------------------------------------------- /universal/libpng-1.6.40/pngwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/pngwio.c -------------------------------------------------------------------------------- /universal/libpng-1.6.40/pngwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/pngwrite.c -------------------------------------------------------------------------------- /universal/libpng-1.6.40/pngwtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/pngwtran.c -------------------------------------------------------------------------------- /universal/libpng-1.6.40/pngwutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/pngwutil.c -------------------------------------------------------------------------------- /universal/libpng-1.6.40/scripts/sym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/scripts/sym.c -------------------------------------------------------------------------------- /universal/libpng-1.6.40/test-driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libpng-1.6.40/test-driver -------------------------------------------------------------------------------- /universal/libpng-1.6.40/tests/pngvalid-gamma-16-to-8: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --gamma-16-to-8 3 | -------------------------------------------------------------------------------- /universal/libpng-1.6.40/tests/pngvalid-gamma-alpha-mode: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --gamma-alpha-mode 3 | -------------------------------------------------------------------------------- /universal/libpng-1.6.40/tests/pngvalid-gamma-background: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --gamma-background 3 | -------------------------------------------------------------------------------- /universal/libpng-1.6.40/tests/pngvalid-gamma-sbit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --gamma-sbit 3 | -------------------------------------------------------------------------------- /universal/libpng-1.6.40/tests/pngvalid-gamma-threshold: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --gamma-threshold 3 | -------------------------------------------------------------------------------- /universal/libpng-1.6.40/tests/pngvalid-gamma-transform: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --gamma-transform 3 | -------------------------------------------------------------------------------- /universal/libpng-1.6.40/tests/pngvalid-transform: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --transform 3 | -------------------------------------------------------------------------------- /universal/libtheora-1.1.1/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libtheora-1.1.1/AUTHORS -------------------------------------------------------------------------------- /universal/libtheora-1.1.1/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libtheora-1.1.1/CHANGES -------------------------------------------------------------------------------- /universal/libtheora-1.1.1/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libtheora-1.1.1/COPYING -------------------------------------------------------------------------------- /universal/libtheora-1.1.1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libtheora-1.1.1/LICENSE -------------------------------------------------------------------------------- /universal/libtheora-1.1.1/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libtheora-1.1.1/Makefile.am -------------------------------------------------------------------------------- /universal/libtheora-1.1.1/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libtheora-1.1.1/Makefile.in -------------------------------------------------------------------------------- /universal/libtheora-1.1.1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libtheora-1.1.1/README -------------------------------------------------------------------------------- /universal/libtheora-1.1.1/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libtheora-1.1.1/SConstruct -------------------------------------------------------------------------------- /universal/libtheora-1.1.1/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libtheora-1.1.1/aclocal.m4 -------------------------------------------------------------------------------- /universal/libtheora-1.1.1/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libtheora-1.1.1/autogen.sh -------------------------------------------------------------------------------- /universal/libtheora-1.1.1/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libtheora-1.1.1/compile -------------------------------------------------------------------------------- /universal/libtheora-1.1.1/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libtheora-1.1.1/config.h.in -------------------------------------------------------------------------------- /universal/libtheora-1.1.1/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libtheora-1.1.1/config.sub -------------------------------------------------------------------------------- /universal/libtheora-1.1.1/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libtheora-1.1.1/configure -------------------------------------------------------------------------------- /universal/libtheora-1.1.1/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libtheora-1.1.1/depcomp -------------------------------------------------------------------------------- /universal/libtheora-1.1.1/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libtheora-1.1.1/install-sh -------------------------------------------------------------------------------- /universal/libtheora-1.1.1/lib/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libtheora-1.1.1/lib/cpu.c -------------------------------------------------------------------------------- /universal/libtheora-1.1.1/lib/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libtheora-1.1.1/lib/cpu.h -------------------------------------------------------------------------------- /universal/libtheora-1.1.1/lib/dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libtheora-1.1.1/lib/dct.h -------------------------------------------------------------------------------- /universal/libtheora-1.1.1/lib/fdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libtheora-1.1.1/lib/fdct.c -------------------------------------------------------------------------------- /universal/libtheora-1.1.1/lib/idct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libtheora-1.1.1/lib/idct.c -------------------------------------------------------------------------------- /universal/libtheora-1.1.1/lib/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libtheora-1.1.1/lib/info.c -------------------------------------------------------------------------------- /universal/libtheora-1.1.1/lib/mcenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libtheora-1.1.1/lib/mcenc.c -------------------------------------------------------------------------------- /universal/libtheora-1.1.1/lib/quant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libtheora-1.1.1/lib/quant.c -------------------------------------------------------------------------------- /universal/libtheora-1.1.1/lib/quant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libtheora-1.1.1/lib/quant.h -------------------------------------------------------------------------------- /universal/libtheora-1.1.1/lib/rate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libtheora-1.1.1/lib/rate.c -------------------------------------------------------------------------------- /universal/libtheora-1.1.1/lib/state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libtheora-1.1.1/lib/state.c -------------------------------------------------------------------------------- /universal/libtheora-1.1.1/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libtheora-1.1.1/ltmain.sh -------------------------------------------------------------------------------- /universal/libtheora-1.1.1/m4/ogg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libtheora-1.1.1/m4/ogg.m4 -------------------------------------------------------------------------------- /universal/libtheora-1.1.1/m4/pkg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libtheora-1.1.1/m4/pkg.m4 -------------------------------------------------------------------------------- /universal/libtheora-1.1.1/m4/sdl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libtheora-1.1.1/m4/sdl.m4 -------------------------------------------------------------------------------- /universal/libtheora-1.1.1/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libtheora-1.1.1/missing -------------------------------------------------------------------------------- /universal/libtheora-1.1.1/win32/experimental/wincompat/README.txt: -------------------------------------------------------------------------------- 1 | GetOpt routines ported from BSD-licensed sources, see comments. -------------------------------------------------------------------------------- /universal/libtheora-1.1.1/win32/experimental/wincompat/unistd.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/AUTHORS -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/CHANGES -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/COPYING -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/Makefile.am -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/Makefile.in -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/aclocal.m4 -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/autogen.sh -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/compile -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/config.h.in -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/config.sub -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/configure -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/depcomp -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/install-sh -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/lib/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/lib/block.c -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/lib/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/lib/info.c -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/lib/lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/lib/lpc.c -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/lib/lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/lib/lpc.h -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/lib/lsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/lib/lsp.c -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/lib/lsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/lib/lsp.h -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/lib/mdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/lib/mdct.c -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/lib/mdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/lib/mdct.h -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/lib/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/lib/misc.h -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/lib/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/lib/os.h -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/lib/psy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/lib/psy.c -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/lib/psy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/lib/psy.h -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/lib/res0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/lib/res0.c -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/lib/tone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/lib/tone.c -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/ltmain.sh -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/m4/ogg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/m4/ogg.m4 -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/m4/pkg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/m4/pkg.m4 -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/missing -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/test/test.c -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/test/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/test/util.c -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/test/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/test/util.h -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/vorbis.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/vorbis.m4 -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/vq/16.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/vq/16.vqs -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/vq/16u.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/vq/16u.vqs -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/vq/44c0.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/vq/44c0.vqs -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/vq/44c1.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/vq/44c1.vqs -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/vq/44c2.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/vq/44c2.vqs -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/vq/44c3.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/vq/44c3.vqs -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/vq/44c4.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/vq/44c4.vqs -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/vq/44c5.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/vq/44c5.vqs -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/vq/44c6.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/vq/44c6.vqs -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/vq/44c7.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/vq/44c7.vqs -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/vq/44c8.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/vq/44c8.vqs -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/vq/44c9.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/vq/44c9.vqs -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/vq/44p0.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/vq/44p0.vqs -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/vq/44p1.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/vq/44p1.vqs -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/vq/44p2.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/vq/44p2.vqs -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/vq/44p3.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/vq/44p3.vqs -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/vq/44p4.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/vq/44p4.vqs -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/vq/44p5.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/vq/44p5.vqs -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/vq/44p6.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/vq/44p6.vqs -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/vq/44p7.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/vq/44p7.vqs -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/vq/44p8.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/vq/44p8.vqs -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/vq/44p9.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/vq/44p9.vqs -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/vq/44u0.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/vq/44u0.vqs -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/vq/44u1.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/vq/44u1.vqs -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/vq/44u2.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/vq/44u2.vqs -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/vq/44u3.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/vq/44u3.vqs -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/vq/44u4.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/vq/44u4.vqs -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/vq/44u5.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/vq/44u5.vqs -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/vq/44u6.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/vq/44u6.vqs -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/vq/44u7.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/vq/44u7.vqs -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/vq/44u8.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/vq/44u8.vqs -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/vq/44u9.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/vq/44u9.vqs -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/vq/8.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/vq/8.vqs -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/vq/8u.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/vq/8u.vqs -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/vq/vqgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/vq/vqgen.c -------------------------------------------------------------------------------- /universal/libvorbis-1.3.7/vq/vqgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libvorbis-1.3.7/vq/vqgen.h -------------------------------------------------------------------------------- /universal/libwebp-1.3.2/.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libwebp-1.3.2/.pylintrc -------------------------------------------------------------------------------- /universal/libwebp-1.3.2/.style.yapf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libwebp-1.3.2/.style.yapf -------------------------------------------------------------------------------- /universal/libwebp-1.3.2/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libwebp-1.3.2/AUTHORS -------------------------------------------------------------------------------- /universal/libwebp-1.3.2/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libwebp-1.3.2/Android.mk -------------------------------------------------------------------------------- /universal/libwebp-1.3.2/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libwebp-1.3.2/COPYING -------------------------------------------------------------------------------- /universal/libwebp-1.3.2/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libwebp-1.3.2/ChangeLog -------------------------------------------------------------------------------- /universal/libwebp-1.3.2/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libwebp-1.3.2/Makefile.am -------------------------------------------------------------------------------- /universal/libwebp-1.3.2/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libwebp-1.3.2/Makefile.in -------------------------------------------------------------------------------- /universal/libwebp-1.3.2/Makefile.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libwebp-1.3.2/Makefile.vc -------------------------------------------------------------------------------- /universal/libwebp-1.3.2/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libwebp-1.3.2/NEWS -------------------------------------------------------------------------------- /universal/libwebp-1.3.2/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libwebp-1.3.2/PATENTS -------------------------------------------------------------------------------- /universal/libwebp-1.3.2/PRESUBMIT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libwebp-1.3.2/PRESUBMIT.py -------------------------------------------------------------------------------- /universal/libwebp-1.3.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libwebp-1.3.2/README.md -------------------------------------------------------------------------------- /universal/libwebp-1.3.2/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libwebp-1.3.2/aclocal.m4 -------------------------------------------------------------------------------- /universal/libwebp-1.3.2/ar-lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libwebp-1.3.2/ar-lib -------------------------------------------------------------------------------- /universal/libwebp-1.3.2/autogen.sh: -------------------------------------------------------------------------------- 1 | #! /bin/sh -e 2 | exec autoreconf -fi 3 | -------------------------------------------------------------------------------- /universal/libwebp-1.3.2/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libwebp-1.3.2/build.gradle -------------------------------------------------------------------------------- /universal/libwebp-1.3.2/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libwebp-1.3.2/compile -------------------------------------------------------------------------------- /universal/libwebp-1.3.2/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libwebp-1.3.2/config.guess -------------------------------------------------------------------------------- /universal/libwebp-1.3.2/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libwebp-1.3.2/config.sub -------------------------------------------------------------------------------- /universal/libwebp-1.3.2/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libwebp-1.3.2/configure -------------------------------------------------------------------------------- /universal/libwebp-1.3.2/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libwebp-1.3.2/configure.ac -------------------------------------------------------------------------------- /universal/libwebp-1.3.2/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libwebp-1.3.2/depcomp -------------------------------------------------------------------------------- /universal/libwebp-1.3.2/doc/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libwebp-1.3.2/doc/api.md -------------------------------------------------------------------------------- /universal/libwebp-1.3.2/doc/tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libwebp-1.3.2/doc/tools.md -------------------------------------------------------------------------------- /universal/libwebp-1.3.2/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libwebp-1.3.2/gradlew -------------------------------------------------------------------------------- /universal/libwebp-1.3.2/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libwebp-1.3.2/gradlew.bat -------------------------------------------------------------------------------- /universal/libwebp-1.3.2/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libwebp-1.3.2/install-sh -------------------------------------------------------------------------------- /universal/libwebp-1.3.2/iosbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libwebp-1.3.2/iosbuild.sh -------------------------------------------------------------------------------- /universal/libwebp-1.3.2/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libwebp-1.3.2/ltmain.sh -------------------------------------------------------------------------------- /universal/libwebp-1.3.2/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libwebp-1.3.2/m4/libtool.m4 -------------------------------------------------------------------------------- /universal/libwebp-1.3.2/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libwebp-1.3.2/m4/ltsugar.m4 -------------------------------------------------------------------------------- /universal/libwebp-1.3.2/makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libwebp-1.3.2/makefile.unix -------------------------------------------------------------------------------- /universal/libwebp-1.3.2/man/cwebp.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libwebp-1.3.2/man/cwebp.1 -------------------------------------------------------------------------------- /universal/libwebp-1.3.2/man/dwebp.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libwebp-1.3.2/man/dwebp.1 -------------------------------------------------------------------------------- /universal/libwebp-1.3.2/man/vwebp.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libwebp-1.3.2/man/vwebp.1 -------------------------------------------------------------------------------- /universal/libwebp-1.3.2/man/webpmux.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libwebp-1.3.2/man/webpmux.1 -------------------------------------------------------------------------------- /universal/libwebp-1.3.2/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libwebp-1.3.2/missing -------------------------------------------------------------------------------- /universal/libwebp-1.3.2/src/dsp/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libwebp-1.3.2/src/dsp/cpu.c -------------------------------------------------------------------------------- /universal/libwebp-1.3.2/src/dsp/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libwebp-1.3.2/src/dsp/cpu.h -------------------------------------------------------------------------------- /universal/libwebp-1.3.2/src/dsp/dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libwebp-1.3.2/src/dsp/dec.c -------------------------------------------------------------------------------- /universal/libwebp-1.3.2/src/dsp/dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libwebp-1.3.2/src/dsp/dsp.h -------------------------------------------------------------------------------- /universal/libwebp-1.3.2/src/dsp/enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libwebp-1.3.2/src/dsp/enc.c -------------------------------------------------------------------------------- /universal/libwebp-1.3.2/src/dsp/yuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libwebp-1.3.2/src/dsp/yuv.c -------------------------------------------------------------------------------- /universal/libwebp-1.3.2/src/dsp/yuv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libwebp-1.3.2/src/dsp/yuv.h -------------------------------------------------------------------------------- /universal/libwebp-1.3.2/swig/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/libwebp-1.3.2/swig/setup.py -------------------------------------------------------------------------------- /universal/minimp3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/.gitignore -------------------------------------------------------------------------------- /universal/minimp3/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/.travis.yml -------------------------------------------------------------------------------- /universal/minimp3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/LICENSE -------------------------------------------------------------------------------- /universal/minimp3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/README.md -------------------------------------------------------------------------------- /universal/minimp3/fuzzing/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/fuzzing/build.sh -------------------------------------------------------------------------------- /universal/minimp3/fuzzing/fuzz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/fuzzing/fuzz.c -------------------------------------------------------------------------------- /universal/minimp3/fuzzing/fuzz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/fuzzing/fuzz.sh -------------------------------------------------------------------------------- /universal/minimp3/fuzzing/get-afl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/fuzzing/get-afl.sh -------------------------------------------------------------------------------- /universal/minimp3/huffopt/HUFFCODE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/huffopt/HUFFCODE -------------------------------------------------------------------------------- /universal/minimp3/huffopt/huffopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/huffopt/huffopt.c -------------------------------------------------------------------------------- /universal/minimp3/minimp3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/minimp3.h -------------------------------------------------------------------------------- /universal/minimp3/minimp3_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/minimp3_ex.h -------------------------------------------------------------------------------- /universal/minimp3/minimp3_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/minimp3_test.c -------------------------------------------------------------------------------- /universal/minimp3/player/FreeSans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/player/FreeSans.h -------------------------------------------------------------------------------- /universal/minimp3/player/FreeSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/player/FreeSans.ttf -------------------------------------------------------------------------------- /universal/minimp3/player/audio_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/player/audio_sdl.c -------------------------------------------------------------------------------- /universal/minimp3/player/audio_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/player/audio_sdl.h -------------------------------------------------------------------------------- /universal/minimp3/player/build-sdl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/player/build-sdl.sh -------------------------------------------------------------------------------- /universal/minimp3/player/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/player/build.sh -------------------------------------------------------------------------------- /universal/minimp3/player/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/player/decode.c -------------------------------------------------------------------------------- /universal/minimp3/player/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/player/decode.h -------------------------------------------------------------------------------- /universal/minimp3/player/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/player/glad.c -------------------------------------------------------------------------------- /universal/minimp3/player/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/player/glad.h -------------------------------------------------------------------------------- /universal/minimp3/player/nuklear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/player/nuklear.h -------------------------------------------------------------------------------- /universal/minimp3/player/player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/player/player.cpp -------------------------------------------------------------------------------- /universal/minimp3/player/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/player/stb_image.h -------------------------------------------------------------------------------- /universal/minimp3/player/style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/player/style.h -------------------------------------------------------------------------------- /universal/minimp3/player/system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/player/system.cpp -------------------------------------------------------------------------------- /universal/minimp3/player/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/player/system.h -------------------------------------------------------------------------------- /universal/minimp3/scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/scripts/build.sh -------------------------------------------------------------------------------- /universal/minimp3/scripts/fuzz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/scripts/fuzz.sh -------------------------------------------------------------------------------- /universal/minimp3/scripts/perf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/scripts/perf.sh -------------------------------------------------------------------------------- /universal/minimp3/scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/scripts/test.sh -------------------------------------------------------------------------------- /universal/minimp3/vectors/ILL2_overalloc2.pcm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /universal/minimp3/vectors/l1-fl1.bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/vectors/l1-fl1.bit -------------------------------------------------------------------------------- /universal/minimp3/vectors/l1-fl1.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/vectors/l1-fl1.pcm -------------------------------------------------------------------------------- /universal/minimp3/vectors/l1-fl2.bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/vectors/l1-fl2.bit -------------------------------------------------------------------------------- /universal/minimp3/vectors/l1-fl2.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/vectors/l1-fl2.pcm -------------------------------------------------------------------------------- /universal/minimp3/vectors/l1-fl3.bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/vectors/l1-fl3.bit -------------------------------------------------------------------------------- /universal/minimp3/vectors/l1-fl3.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/vectors/l1-fl3.pcm -------------------------------------------------------------------------------- /universal/minimp3/vectors/l1-fl4.bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/vectors/l1-fl4.bit -------------------------------------------------------------------------------- /universal/minimp3/vectors/l1-fl4.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/vectors/l1-fl4.pcm -------------------------------------------------------------------------------- /universal/minimp3/vectors/l1-fl5.bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/vectors/l1-fl5.bit -------------------------------------------------------------------------------- /universal/minimp3/vectors/l1-fl5.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/vectors/l1-fl5.pcm -------------------------------------------------------------------------------- /universal/minimp3/vectors/l1-fl6.bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/vectors/l1-fl6.bit -------------------------------------------------------------------------------- /universal/minimp3/vectors/l1-fl6.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/vectors/l1-fl6.pcm -------------------------------------------------------------------------------- /universal/minimp3/vectors/l1-fl7.bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/vectors/l1-fl7.bit -------------------------------------------------------------------------------- /universal/minimp3/vectors/l1-fl7.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/vectors/l1-fl7.pcm -------------------------------------------------------------------------------- /universal/minimp3/vectors/l1-fl8.bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/vectors/l1-fl8.bit -------------------------------------------------------------------------------- /universal/minimp3/vectors/l1-fl8.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/vectors/l1-fl8.pcm -------------------------------------------------------------------------------- /universal/minimp3/vectors/l2-fl10.bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/vectors/l2-fl10.bit -------------------------------------------------------------------------------- /universal/minimp3/vectors/l2-fl10.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/vectors/l2-fl10.pcm -------------------------------------------------------------------------------- /universal/minimp3/vectors/l2-fl11.bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/vectors/l2-fl11.bit -------------------------------------------------------------------------------- /universal/minimp3/vectors/l2-fl11.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/vectors/l2-fl11.pcm -------------------------------------------------------------------------------- /universal/minimp3/vectors/l2-fl12.bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/vectors/l2-fl12.bit -------------------------------------------------------------------------------- /universal/minimp3/vectors/l2-fl12.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/vectors/l2-fl12.pcm -------------------------------------------------------------------------------- /universal/minimp3/vectors/l2-fl13.bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/vectors/l2-fl13.bit -------------------------------------------------------------------------------- /universal/minimp3/vectors/l2-fl13.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/vectors/l2-fl13.pcm -------------------------------------------------------------------------------- /universal/minimp3/vectors/l2-fl14.bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/vectors/l2-fl14.bit -------------------------------------------------------------------------------- /universal/minimp3/vectors/l2-fl14.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/vectors/l2-fl14.pcm -------------------------------------------------------------------------------- /universal/minimp3/vectors/l2-fl15.bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/vectors/l2-fl15.bit -------------------------------------------------------------------------------- /universal/minimp3/vectors/l2-fl15.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/vectors/l2-fl15.pcm -------------------------------------------------------------------------------- /universal/minimp3/vectors/l2-fl16.bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/vectors/l2-fl16.bit -------------------------------------------------------------------------------- /universal/minimp3/vectors/l2-fl16.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/vectors/l2-fl16.pcm -------------------------------------------------------------------------------- /universal/minimp3/vectors/l3-nonstandard-sideinfo-size.pcm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /universal/minimp3/vectors/l3-si.bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/vectors/l3-si.bit -------------------------------------------------------------------------------- /universal/minimp3/vectors/l3-si.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/minimp3/vectors/l3-si.pcm -------------------------------------------------------------------------------- /universal/opus-1.4/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/AUTHORS -------------------------------------------------------------------------------- /universal/opus-1.4/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/CMakeLists.txt -------------------------------------------------------------------------------- /universal/opus-1.4/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/COPYING -------------------------------------------------------------------------------- /universal/opus-1.4/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /universal/opus-1.4/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/INSTALL -------------------------------------------------------------------------------- /universal/opus-1.4/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/Makefile.am -------------------------------------------------------------------------------- /universal/opus-1.4/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/Makefile.in -------------------------------------------------------------------------------- /universal/opus-1.4/Makefile.mips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/Makefile.mips -------------------------------------------------------------------------------- /universal/opus-1.4/Makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/Makefile.unix -------------------------------------------------------------------------------- /universal/opus-1.4/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /universal/opus-1.4/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/README -------------------------------------------------------------------------------- /universal/opus-1.4/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/aclocal.m4 -------------------------------------------------------------------------------- /universal/opus-1.4/celt/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt/arch.h -------------------------------------------------------------------------------- /universal/opus-1.4/celt/arm/armcpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt/arm/armcpu.c -------------------------------------------------------------------------------- /universal/opus-1.4/celt/arm/armcpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt/arm/armcpu.h -------------------------------------------------------------------------------- /universal/opus-1.4/celt/arm/fft_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt/arm/fft_arm.h -------------------------------------------------------------------------------- /universal/opus-1.4/celt/bands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt/bands.c -------------------------------------------------------------------------------- /universal/opus-1.4/celt/bands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt/bands.h -------------------------------------------------------------------------------- /universal/opus-1.4/celt/celt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt/celt.c -------------------------------------------------------------------------------- /universal/opus-1.4/celt/celt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt/celt.h -------------------------------------------------------------------------------- /universal/opus-1.4/celt/celt_lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt/celt_lpc.c -------------------------------------------------------------------------------- /universal/opus-1.4/celt/celt_lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt/celt_lpc.h -------------------------------------------------------------------------------- /universal/opus-1.4/celt/cpu_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt/cpu_support.h -------------------------------------------------------------------------------- /universal/opus-1.4/celt/cwrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt/cwrs.c -------------------------------------------------------------------------------- /universal/opus-1.4/celt/cwrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt/cwrs.h -------------------------------------------------------------------------------- /universal/opus-1.4/celt/ecintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt/ecintrin.h -------------------------------------------------------------------------------- /universal/opus-1.4/celt/entcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt/entcode.c -------------------------------------------------------------------------------- /universal/opus-1.4/celt/entcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt/entcode.h -------------------------------------------------------------------------------- /universal/opus-1.4/celt/entdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt/entdec.c -------------------------------------------------------------------------------- /universal/opus-1.4/celt/entdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt/entdec.h -------------------------------------------------------------------------------- /universal/opus-1.4/celt/entenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt/entenc.c -------------------------------------------------------------------------------- /universal/opus-1.4/celt/entenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt/entenc.h -------------------------------------------------------------------------------- /universal/opus-1.4/celt/fixed_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt/fixed_debug.h -------------------------------------------------------------------------------- /universal/opus-1.4/celt/float_cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt/float_cast.h -------------------------------------------------------------------------------- /universal/opus-1.4/celt/kiss_fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt/kiss_fft.c -------------------------------------------------------------------------------- /universal/opus-1.4/celt/kiss_fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt/kiss_fft.h -------------------------------------------------------------------------------- /universal/opus-1.4/celt/laplace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt/laplace.c -------------------------------------------------------------------------------- /universal/opus-1.4/celt/laplace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt/laplace.h -------------------------------------------------------------------------------- /universal/opus-1.4/celt/mathops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt/mathops.c -------------------------------------------------------------------------------- /universal/opus-1.4/celt/mathops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt/mathops.h -------------------------------------------------------------------------------- /universal/opus-1.4/celt/mdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt/mdct.c -------------------------------------------------------------------------------- /universal/opus-1.4/celt/mdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt/mdct.h -------------------------------------------------------------------------------- /universal/opus-1.4/celt/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt/meson.build -------------------------------------------------------------------------------- /universal/opus-1.4/celt/mfrngcod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt/mfrngcod.h -------------------------------------------------------------------------------- /universal/opus-1.4/celt/modes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt/modes.c -------------------------------------------------------------------------------- /universal/opus-1.4/celt/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt/modes.h -------------------------------------------------------------------------------- /universal/opus-1.4/celt/os_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt/os_support.h -------------------------------------------------------------------------------- /universal/opus-1.4/celt/pitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt/pitch.c -------------------------------------------------------------------------------- /universal/opus-1.4/celt/pitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt/pitch.h -------------------------------------------------------------------------------- /universal/opus-1.4/celt/quant_bands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt/quant_bands.c -------------------------------------------------------------------------------- /universal/opus-1.4/celt/quant_bands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt/quant_bands.h -------------------------------------------------------------------------------- /universal/opus-1.4/celt/rate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt/rate.c -------------------------------------------------------------------------------- /universal/opus-1.4/celt/rate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt/rate.h -------------------------------------------------------------------------------- /universal/opus-1.4/celt/stack_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt/stack_alloc.h -------------------------------------------------------------------------------- /universal/opus-1.4/celt/vq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt/vq.c -------------------------------------------------------------------------------- /universal/opus-1.4/celt/vq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt/vq.h -------------------------------------------------------------------------------- /universal/opus-1.4/celt/x86/vq_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt/x86/vq_sse.h -------------------------------------------------------------------------------- /universal/opus-1.4/celt/x86/vq_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt/x86/vq_sse2.c -------------------------------------------------------------------------------- /universal/opus-1.4/celt/x86/x86cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt/x86/x86cpu.c -------------------------------------------------------------------------------- /universal/opus-1.4/celt/x86/x86cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt/x86/x86cpu.h -------------------------------------------------------------------------------- /universal/opus-1.4/celt_headers.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt_headers.mk -------------------------------------------------------------------------------- /universal/opus-1.4/celt_sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/celt_sources.mk -------------------------------------------------------------------------------- /universal/opus-1.4/cmake/vla.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/cmake/vla.c -------------------------------------------------------------------------------- /universal/opus-1.4/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/compile -------------------------------------------------------------------------------- /universal/opus-1.4/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/config.guess -------------------------------------------------------------------------------- /universal/opus-1.4/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/config.h.in -------------------------------------------------------------------------------- /universal/opus-1.4/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/config.sub -------------------------------------------------------------------------------- /universal/opus-1.4/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/configure -------------------------------------------------------------------------------- /universal/opus-1.4/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/configure.ac -------------------------------------------------------------------------------- /universal/opus-1.4/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/depcomp -------------------------------------------------------------------------------- /universal/opus-1.4/doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/doc/Doxyfile.in -------------------------------------------------------------------------------- /universal/opus-1.4/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/doc/Makefile.am -------------------------------------------------------------------------------- /universal/opus-1.4/doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/doc/Makefile.in -------------------------------------------------------------------------------- /universal/opus-1.4/doc/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/doc/TODO -------------------------------------------------------------------------------- /universal/opus-1.4/doc/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/doc/footer.html -------------------------------------------------------------------------------- /universal/opus-1.4/doc/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/doc/header.html -------------------------------------------------------------------------------- /universal/opus-1.4/doc/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/doc/meson.build -------------------------------------------------------------------------------- /universal/opus-1.4/doc/opus_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/doc/opus_logo.svg -------------------------------------------------------------------------------- /universal/opus-1.4/include/opus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/include/opus.h -------------------------------------------------------------------------------- /universal/opus-1.4/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/install-sh -------------------------------------------------------------------------------- /universal/opus-1.4/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/ltmain.sh -------------------------------------------------------------------------------- /universal/opus-1.4/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/m4/libtool.m4 -------------------------------------------------------------------------------- /universal/opus-1.4/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/m4/ltoptions.m4 -------------------------------------------------------------------------------- /universal/opus-1.4/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/m4/ltsugar.m4 -------------------------------------------------------------------------------- /universal/opus-1.4/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/m4/ltversion.m4 -------------------------------------------------------------------------------- /universal/opus-1.4/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /universal/opus-1.4/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/meson.build -------------------------------------------------------------------------------- /universal/opus-1.4/meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/meson_options.txt -------------------------------------------------------------------------------- /universal/opus-1.4/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/missing -------------------------------------------------------------------------------- /universal/opus-1.4/opus.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/opus.m4 -------------------------------------------------------------------------------- /universal/opus-1.4/opus.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/opus.pc.in -------------------------------------------------------------------------------- /universal/opus-1.4/opus_headers.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/opus_headers.mk -------------------------------------------------------------------------------- /universal/opus-1.4/opus_sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/opus_sources.mk -------------------------------------------------------------------------------- /universal/opus-1.4/package_version: -------------------------------------------------------------------------------- 1 | PACKAGE_VERSION="1.4" 2 | -------------------------------------------------------------------------------- /universal/opus-1.4/silk/A2NLSF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk/A2NLSF.c -------------------------------------------------------------------------------- /universal/opus-1.4/silk/API.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk/API.h -------------------------------------------------------------------------------- /universal/opus-1.4/silk/CNG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk/CNG.c -------------------------------------------------------------------------------- /universal/opus-1.4/silk/Inlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk/Inlines.h -------------------------------------------------------------------------------- /universal/opus-1.4/silk/LPC_fit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk/LPC_fit.c -------------------------------------------------------------------------------- /universal/opus-1.4/silk/MacroCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk/MacroCount.h -------------------------------------------------------------------------------- /universal/opus-1.4/silk/MacroDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk/MacroDebug.h -------------------------------------------------------------------------------- /universal/opus-1.4/silk/NLSF2A.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk/NLSF2A.c -------------------------------------------------------------------------------- /universal/opus-1.4/silk/NLSF_VQ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk/NLSF_VQ.c -------------------------------------------------------------------------------- /universal/opus-1.4/silk/NLSF_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk/NLSF_decode.c -------------------------------------------------------------------------------- /universal/opus-1.4/silk/NLSF_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk/NLSF_encode.c -------------------------------------------------------------------------------- /universal/opus-1.4/silk/NLSF_unpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk/NLSF_unpack.c -------------------------------------------------------------------------------- /universal/opus-1.4/silk/NSQ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk/NSQ.c -------------------------------------------------------------------------------- /universal/opus-1.4/silk/NSQ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk/NSQ.h -------------------------------------------------------------------------------- /universal/opus-1.4/silk/NSQ_del_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk/NSQ_del_dec.c -------------------------------------------------------------------------------- /universal/opus-1.4/silk/PLC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk/PLC.c -------------------------------------------------------------------------------- /universal/opus-1.4/silk/PLC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk/PLC.h -------------------------------------------------------------------------------- /universal/opus-1.4/silk/SigProc_FIX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk/SigProc_FIX.h -------------------------------------------------------------------------------- /universal/opus-1.4/silk/VAD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk/VAD.c -------------------------------------------------------------------------------- /universal/opus-1.4/silk/VQ_WMat_EC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk/VQ_WMat_EC.c -------------------------------------------------------------------------------- /universal/opus-1.4/silk/biquad_alt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk/biquad_alt.c -------------------------------------------------------------------------------- /universal/opus-1.4/silk/bwexpander.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk/bwexpander.c -------------------------------------------------------------------------------- /universal/opus-1.4/silk/code_signs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk/code_signs.c -------------------------------------------------------------------------------- /universal/opus-1.4/silk/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk/control.h -------------------------------------------------------------------------------- /universal/opus-1.4/silk/control_SNR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk/control_SNR.c -------------------------------------------------------------------------------- /universal/opus-1.4/silk/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk/debug.c -------------------------------------------------------------------------------- /universal/opus-1.4/silk/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk/debug.h -------------------------------------------------------------------------------- /universal/opus-1.4/silk/dec_API.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk/dec_API.c -------------------------------------------------------------------------------- /universal/opus-1.4/silk/decode_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk/decode_core.c -------------------------------------------------------------------------------- /universal/opus-1.4/silk/define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk/define.h -------------------------------------------------------------------------------- /universal/opus-1.4/silk/enc_API.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk/enc_API.c -------------------------------------------------------------------------------- /universal/opus-1.4/silk/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk/errors.h -------------------------------------------------------------------------------- /universal/opus-1.4/silk/gain_quant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk/gain_quant.c -------------------------------------------------------------------------------- /universal/opus-1.4/silk/interpolate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk/interpolate.c -------------------------------------------------------------------------------- /universal/opus-1.4/silk/lin2log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk/lin2log.c -------------------------------------------------------------------------------- /universal/opus-1.4/silk/log2lin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk/log2lin.c -------------------------------------------------------------------------------- /universal/opus-1.4/silk/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk/macros.h -------------------------------------------------------------------------------- /universal/opus-1.4/silk/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk/main.h -------------------------------------------------------------------------------- /universal/opus-1.4/silk/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk/meson.build -------------------------------------------------------------------------------- /universal/opus-1.4/silk/resampler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk/resampler.c -------------------------------------------------------------------------------- /universal/opus-1.4/silk/shell_coder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk/shell_coder.c -------------------------------------------------------------------------------- /universal/opus-1.4/silk/sigm_Q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk/sigm_Q15.c -------------------------------------------------------------------------------- /universal/opus-1.4/silk/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk/sort.c -------------------------------------------------------------------------------- /universal/opus-1.4/silk/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk/structs.h -------------------------------------------------------------------------------- /universal/opus-1.4/silk/tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk/tables.h -------------------------------------------------------------------------------- /universal/opus-1.4/silk/tables_LTP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk/tables_LTP.c -------------------------------------------------------------------------------- /universal/opus-1.4/silk/tables_gain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk/tables_gain.c -------------------------------------------------------------------------------- /universal/opus-1.4/silk/typedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk/typedef.h -------------------------------------------------------------------------------- /universal/opus-1.4/silk_headers.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk_headers.mk -------------------------------------------------------------------------------- /universal/opus-1.4/silk_sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/silk_sources.mk -------------------------------------------------------------------------------- /universal/opus-1.4/src/analysis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/src/analysis.c -------------------------------------------------------------------------------- /universal/opus-1.4/src/analysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/src/analysis.h -------------------------------------------------------------------------------- /universal/opus-1.4/src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/src/meson.build -------------------------------------------------------------------------------- /universal/opus-1.4/src/mlp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/src/mlp.c -------------------------------------------------------------------------------- /universal/opus-1.4/src/mlp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/src/mlp.h -------------------------------------------------------------------------------- /universal/opus-1.4/src/mlp_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/src/mlp_data.c -------------------------------------------------------------------------------- /universal/opus-1.4/src/opus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/src/opus.c -------------------------------------------------------------------------------- /universal/opus-1.4/src/opus_compare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/src/opus_compare.c -------------------------------------------------------------------------------- /universal/opus-1.4/src/opus_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/src/opus_decoder.c -------------------------------------------------------------------------------- /universal/opus-1.4/src/opus_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/src/opus_demo.c -------------------------------------------------------------------------------- /universal/opus-1.4/src/opus_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/src/opus_encoder.c -------------------------------------------------------------------------------- /universal/opus-1.4/src/opus_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/src/opus_private.h -------------------------------------------------------------------------------- /universal/opus-1.4/src/repacketizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/src/repacketizer.c -------------------------------------------------------------------------------- /universal/opus-1.4/src/tansig_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/src/tansig_table.h -------------------------------------------------------------------------------- /universal/opus-1.4/test-driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/test-driver -------------------------------------------------------------------------------- /universal/opus-1.4/tests/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/tests/meson.build -------------------------------------------------------------------------------- /universal/opus-1.4/win32/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opus-1.4/win32/config.h -------------------------------------------------------------------------------- /universal/opusfile-0.12/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opusfile-0.12/AUTHORS -------------------------------------------------------------------------------- /universal/opusfile-0.12/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opusfile-0.12/COPYING -------------------------------------------------------------------------------- /universal/opusfile-0.12/FindOgg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opusfile-0.12/FindOgg.cmake -------------------------------------------------------------------------------- /universal/opusfile-0.12/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opusfile-0.12/Makefile.am -------------------------------------------------------------------------------- /universal/opusfile-0.12/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opusfile-0.12/Makefile.in -------------------------------------------------------------------------------- /universal/opusfile-0.12/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opusfile-0.12/README.md -------------------------------------------------------------------------------- /universal/opusfile-0.12/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opusfile-0.12/aclocal.m4 -------------------------------------------------------------------------------- /universal/opusfile-0.12/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opusfile-0.12/compile -------------------------------------------------------------------------------- /universal/opusfile-0.12/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opusfile-0.12/config.guess -------------------------------------------------------------------------------- /universal/opusfile-0.12/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opusfile-0.12/config.h.in -------------------------------------------------------------------------------- /universal/opusfile-0.12/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opusfile-0.12/config.sub -------------------------------------------------------------------------------- /universal/opusfile-0.12/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opusfile-0.12/configure -------------------------------------------------------------------------------- /universal/opusfile-0.12/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opusfile-0.12/configure.ac -------------------------------------------------------------------------------- /universal/opusfile-0.12/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opusfile-0.12/depcomp -------------------------------------------------------------------------------- /universal/opusfile-0.12/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opusfile-0.12/doc/Makefile -------------------------------------------------------------------------------- /universal/opusfile-0.12/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opusfile-0.12/install-sh -------------------------------------------------------------------------------- /universal/opusfile-0.12/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opusfile-0.12/ltmain.sh -------------------------------------------------------------------------------- /universal/opusfile-0.12/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opusfile-0.12/m4/libtool.m4 -------------------------------------------------------------------------------- /universal/opusfile-0.12/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opusfile-0.12/m4/ltsugar.m4 -------------------------------------------------------------------------------- /universal/opusfile-0.12/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opusfile-0.12/missing -------------------------------------------------------------------------------- /universal/opusfile-0.12/opusurl.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opusfile-0.12/opusurl.pc.in -------------------------------------------------------------------------------- /universal/opusfile-0.12/package_version: -------------------------------------------------------------------------------- 1 | PACKAGE_VERSION="0.12" 2 | -------------------------------------------------------------------------------- /universal/opusfile-0.12/src/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opusfile-0.12/src/http.c -------------------------------------------------------------------------------- /universal/opusfile-0.12/src/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opusfile-0.12/src/info.c -------------------------------------------------------------------------------- /universal/opusfile-0.12/src/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opusfile-0.12/src/stream.c -------------------------------------------------------------------------------- /universal/opusfile-0.12/unix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/opusfile-0.12/unix/Makefile -------------------------------------------------------------------------------- /universal/package_msys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/package_msys.sh -------------------------------------------------------------------------------- /universal/physfs-3.0.2/.hgignore: -------------------------------------------------------------------------------- 1 | syntax:glob 2 | cmake-build 3 | -------------------------------------------------------------------------------- /universal/physfs-3.0.2/.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/physfs-3.0.2/.hgtags -------------------------------------------------------------------------------- /universal/physfs-3.0.2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/physfs-3.0.2/CMakeLists.txt -------------------------------------------------------------------------------- /universal/physfs-3.0.2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/physfs-3.0.2/LICENSE.txt -------------------------------------------------------------------------------- /universal/physfs-3.0.2/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/physfs-3.0.2/README.txt -------------------------------------------------------------------------------- /universal/physfs-3.0.2/docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/physfs-3.0.2/docs/Doxyfile -------------------------------------------------------------------------------- /universal/physfs-3.0.2/docs/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/physfs-3.0.2/docs/TODO.txt -------------------------------------------------------------------------------- /universal/physfs-3.0.2/src/physfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/physfs-3.0.2/src/physfs.c -------------------------------------------------------------------------------- /universal/physfs-3.0.2/src/physfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/physfs-3.0.2/src/physfs.h -------------------------------------------------------------------------------- /universal/zlib-1.3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/CMakeLists.txt -------------------------------------------------------------------------------- /universal/zlib-1.3/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/ChangeLog -------------------------------------------------------------------------------- /universal/zlib-1.3/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/FAQ -------------------------------------------------------------------------------- /universal/zlib-1.3/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/INDEX -------------------------------------------------------------------------------- /universal/zlib-1.3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/LICENSE -------------------------------------------------------------------------------- /universal/zlib-1.3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/Makefile -------------------------------------------------------------------------------- /universal/zlib-1.3/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/Makefile.in -------------------------------------------------------------------------------- /universal/zlib-1.3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/README -------------------------------------------------------------------------------- /universal/zlib-1.3/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/adler32.c -------------------------------------------------------------------------------- /universal/zlib-1.3/amiga/Makefile.pup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/amiga/Makefile.pup -------------------------------------------------------------------------------- /universal/zlib-1.3/amiga/Makefile.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/amiga/Makefile.sas -------------------------------------------------------------------------------- /universal/zlib-1.3/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/compress.c -------------------------------------------------------------------------------- /universal/zlib-1.3/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/configure -------------------------------------------------------------------------------- /universal/zlib-1.3/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/crc32.c -------------------------------------------------------------------------------- /universal/zlib-1.3/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/crc32.h -------------------------------------------------------------------------------- /universal/zlib-1.3/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/deflate.c -------------------------------------------------------------------------------- /universal/zlib-1.3/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/deflate.h -------------------------------------------------------------------------------- /universal/zlib-1.3/doc/algorithm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/doc/algorithm.txt -------------------------------------------------------------------------------- /universal/zlib-1.3/doc/rfc1950.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/doc/rfc1950.txt -------------------------------------------------------------------------------- /universal/zlib-1.3/doc/rfc1951.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/doc/rfc1951.txt -------------------------------------------------------------------------------- /universal/zlib-1.3/doc/rfc1952.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/doc/rfc1952.txt -------------------------------------------------------------------------------- /universal/zlib-1.3/doc/txtvsbin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/doc/txtvsbin.txt -------------------------------------------------------------------------------- /universal/zlib-1.3/examples/enough.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/examples/enough.c -------------------------------------------------------------------------------- /universal/zlib-1.3/examples/fitblk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/examples/fitblk.c -------------------------------------------------------------------------------- /universal/zlib-1.3/examples/gun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/examples/gun.c -------------------------------------------------------------------------------- /universal/zlib-1.3/examples/gzjoin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/examples/gzjoin.c -------------------------------------------------------------------------------- /universal/zlib-1.3/examples/gzlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/examples/gzlog.c -------------------------------------------------------------------------------- /universal/zlib-1.3/examples/gzlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/examples/gzlog.h -------------------------------------------------------------------------------- /universal/zlib-1.3/examples/gznorm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/examples/gznorm.c -------------------------------------------------------------------------------- /universal/zlib-1.3/examples/zpipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/examples/zpipe.c -------------------------------------------------------------------------------- /universal/zlib-1.3/examples/zran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/examples/zran.c -------------------------------------------------------------------------------- /universal/zlib-1.3/examples/zran.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/examples/zran.h -------------------------------------------------------------------------------- /universal/zlib-1.3/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/gzclose.c -------------------------------------------------------------------------------- /universal/zlib-1.3/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/gzguts.h -------------------------------------------------------------------------------- /universal/zlib-1.3/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/gzlib.c -------------------------------------------------------------------------------- /universal/zlib-1.3/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/gzread.c -------------------------------------------------------------------------------- /universal/zlib-1.3/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/gzwrite.c -------------------------------------------------------------------------------- /universal/zlib-1.3/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/infback.c -------------------------------------------------------------------------------- /universal/zlib-1.3/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/inffast.c -------------------------------------------------------------------------------- /universal/zlib-1.3/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/inffast.h -------------------------------------------------------------------------------- /universal/zlib-1.3/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/inffixed.h -------------------------------------------------------------------------------- /universal/zlib-1.3/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/inflate.c -------------------------------------------------------------------------------- /universal/zlib-1.3/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/inflate.h -------------------------------------------------------------------------------- /universal/zlib-1.3/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/inftrees.c -------------------------------------------------------------------------------- /universal/zlib-1.3/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/inftrees.h -------------------------------------------------------------------------------- /universal/zlib-1.3/make_vms.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/make_vms.com -------------------------------------------------------------------------------- /universal/zlib-1.3/msdos/Makefile.bor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/msdos/Makefile.bor -------------------------------------------------------------------------------- /universal/zlib-1.3/msdos/Makefile.dj2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/msdos/Makefile.dj2 -------------------------------------------------------------------------------- /universal/zlib-1.3/msdos/Makefile.emx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/msdos/Makefile.emx -------------------------------------------------------------------------------- /universal/zlib-1.3/msdos/Makefile.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/msdos/Makefile.msc -------------------------------------------------------------------------------- /universal/zlib-1.3/msdos/Makefile.tc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/msdos/Makefile.tc -------------------------------------------------------------------------------- /universal/zlib-1.3/nintendods/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/nintendods/README -------------------------------------------------------------------------------- /universal/zlib-1.3/old/Makefile.emx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/old/Makefile.emx -------------------------------------------------------------------------------- /universal/zlib-1.3/old/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/old/README -------------------------------------------------------------------------------- /universal/zlib-1.3/old/descrip.mms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/old/descrip.mms -------------------------------------------------------------------------------- /universal/zlib-1.3/old/os2/zlib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/old/os2/zlib.def -------------------------------------------------------------------------------- /universal/zlib-1.3/os400/README400: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/os400/README400 -------------------------------------------------------------------------------- /universal/zlib-1.3/os400/bndsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/os400/bndsrc -------------------------------------------------------------------------------- /universal/zlib-1.3/os400/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/os400/make.sh -------------------------------------------------------------------------------- /universal/zlib-1.3/os400/zlib.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/os400/zlib.inc -------------------------------------------------------------------------------- /universal/zlib-1.3/qnx/package.qpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/qnx/package.qpg -------------------------------------------------------------------------------- /universal/zlib-1.3/test/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/test/example.c -------------------------------------------------------------------------------- /universal/zlib-1.3/test/infcover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/test/infcover.c -------------------------------------------------------------------------------- /universal/zlib-1.3/test/minigzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/test/minigzip.c -------------------------------------------------------------------------------- /universal/zlib-1.3/treebuild.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/treebuild.xml -------------------------------------------------------------------------------- /universal/zlib-1.3/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/trees.c -------------------------------------------------------------------------------- /universal/zlib-1.3/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/trees.h -------------------------------------------------------------------------------- /universal/zlib-1.3/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/uncompr.c -------------------------------------------------------------------------------- /universal/zlib-1.3/win32/DLL_FAQ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/win32/DLL_FAQ.txt -------------------------------------------------------------------------------- /universal/zlib-1.3/win32/Makefile.bor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/win32/Makefile.bor -------------------------------------------------------------------------------- /universal/zlib-1.3/win32/Makefile.gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/win32/Makefile.gcc -------------------------------------------------------------------------------- /universal/zlib-1.3/win32/Makefile.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/win32/Makefile.msc -------------------------------------------------------------------------------- /universal/zlib-1.3/win32/VisualC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/win32/VisualC.txt -------------------------------------------------------------------------------- /universal/zlib-1.3/win32/zlib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/win32/zlib.def -------------------------------------------------------------------------------- /universal/zlib-1.3/win32/zlib1.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/win32/zlib1.rc -------------------------------------------------------------------------------- /universal/zlib-1.3/zconf.h.cmakein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/zconf.h.cmakein -------------------------------------------------------------------------------- /universal/zlib-1.3/zconf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/zconf.h.in -------------------------------------------------------------------------------- /universal/zlib-1.3/zconf.h.included: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/zconf.h.included -------------------------------------------------------------------------------- /universal/zlib-1.3/zlib.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/zlib.3 -------------------------------------------------------------------------------- /universal/zlib-1.3/zlib.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/zlib.3.pdf -------------------------------------------------------------------------------- /universal/zlib-1.3/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/zlib.h -------------------------------------------------------------------------------- /universal/zlib-1.3/zlib.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/zlib.map -------------------------------------------------------------------------------- /universal/zlib-1.3/zlib.pc.cmakein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/zlib.pc.cmakein -------------------------------------------------------------------------------- /universal/zlib-1.3/zlib.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/zlib.pc.in -------------------------------------------------------------------------------- /universal/zlib-1.3/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/zutil.c -------------------------------------------------------------------------------- /universal/zlib-1.3/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liballeg/allegro_winpkg/HEAD/universal/zlib-1.3/zutil.h --------------------------------------------------------------------------------