├── COPYING-LGPL.txt ├── COPYING.txt ├── README.md ├── SRCLICENSE.txt └── strife-ve-src ├── .gitignore ├── .lvimrc ├── AUTHORS ├── CMakeLists.txt ├── COPYING ├── ChangeLog ├── HACKING ├── Makefile.am ├── NEWS ├── NOT-BUGS ├── PHILOSOPHY ├── README ├── README.Music ├── README.Strife ├── TODO ├── acinclude.m4 ├── autogen.sh ├── build_linux.sh ├── build_linux_deps.sh ├── build_linux_steam.sh ├── cmake ├── FindFFMPEG.cmake ├── FindOGG.cmake ├── FindSDL2.cmake ├── FindSDL2_mixer.cmake ├── FindSDL2_net.cmake ├── FindTHEORA.cmake ├── FindVORBIS.cmake └── config.h.in ├── codeblocks ├── README ├── chocolate.workspace ├── game-res.rc ├── libopl.cbp ├── libpcsound.cbp ├── libtextscreen.cbp ├── server.cbp ├── setup-res.rc ├── setup.cbp └── strife.cbp ├── configure.ac ├── data ├── .gitignore ├── Makefile.am ├── README ├── convert-icon ├── doom.ico ├── doom.png ├── doom8.ico ├── setup.ico ├── setup.png └── setup8.ico ├── ffmpeg ├── include │ ├── libavcodec │ │ ├── avcodec.h │ │ ├── avfft.h │ │ ├── dv_profile.h │ │ ├── dxva2.h │ │ ├── old_codec_ids.h │ │ ├── vaapi.h │ │ ├── vda.h │ │ ├── vdpau.h │ │ ├── version.h │ │ ├── vorbis_parser.h │ │ └── xvmc.h │ ├── libavdevice │ │ ├── avdevice.h │ │ └── version.h │ ├── libavfilter │ │ ├── asrc_abuffer.h │ │ ├── avcodec.h │ │ ├── avfilter.h │ │ ├── avfiltergraph.h │ │ ├── buffersink.h │ │ ├── buffersrc.h │ │ └── version.h │ ├── libavformat │ │ ├── avformat.h │ │ ├── avio.h │ │ └── version.h │ ├── libavutil │ │ ├── adler32.h │ │ ├── aes.h │ │ ├── attributes.h │ │ ├── audio_fifo.h │ │ ├── audioconvert.h │ │ ├── avassert.h │ │ ├── avconfig.h │ │ ├── avstring.h │ │ ├── avutil.h │ │ ├── base64.h │ │ ├── blowfish.h │ │ ├── bprint.h │ │ ├── bswap.h │ │ ├── buffer.h │ │ ├── cast5.h │ │ ├── channel_layout.h │ │ ├── common.h │ │ ├── cpu.h │ │ ├── crc.h │ │ ├── dict.h │ │ ├── display.h │ │ ├── downmix_info.h │ │ ├── error.h │ │ ├── eval.h │ │ ├── ffversion.h │ │ ├── fifo.h │ │ ├── file.h │ │ ├── frame.h │ │ ├── hash.h │ │ ├── hmac.h │ │ ├── imgutils.h │ │ ├── intfloat.h │ │ ├── intreadwrite.h │ │ ├── lfg.h │ │ ├── log.h │ │ ├── lzo.h │ │ ├── macros.h │ │ ├── mathematics.h │ │ ├── md5.h │ │ ├── mem.h │ │ ├── motion_vector.h │ │ ├── murmur3.h │ │ ├── old_pix_fmts.h │ │ ├── opt.h │ │ ├── parseutils.h │ │ ├── pixdesc.h │ │ ├── pixelutils.h │ │ ├── pixfmt.h │ │ ├── random_seed.h │ │ ├── rational.h │ │ ├── replaygain.h │ │ ├── ripemd.h │ │ ├── samplefmt.h │ │ ├── sha.h │ │ ├── sha512.h │ │ ├── stereo3d.h │ │ ├── threadmessage.h │ │ ├── time.h │ │ ├── timecode.h │ │ ├── timestamp.h │ │ ├── version.h │ │ └── xtea.h │ ├── libpostproc │ │ ├── postprocess.h │ │ └── version.h │ ├── libswresample │ │ ├── swresample.h │ │ └── version.h │ └── libswscale │ │ ├── swscale.h │ │ └── version.h ├── macosx │ ├── libavcodec.56.dylib │ ├── libavformat.56.dylib │ ├── libavutil.54.dylib │ ├── libswresample.1.dylib │ └── libswscale.3.dylib └── windows │ ├── avcodec-56.def │ ├── avcodec-56.dll │ ├── avcodec.lib │ ├── avdevice-56.def │ ├── avdevice.lib │ ├── avfilter-5.def │ ├── avfilter.lib │ ├── avformat-56.def │ ├── avformat-56.dll │ ├── avformat.lib │ ├── avutil-54.def │ ├── avutil-54.dll │ ├── avutil.lib │ ├── postproc-53.def │ ├── postproc.lib │ ├── swresample-1.def │ ├── swresample-1.dll │ ├── swresample.lib │ ├── swscale-3.def │ ├── swscale-3.dll │ └── swscale.lib ├── libogg ├── AUTHORS ├── CHANGES ├── COPYING ├── Makefile.am ├── README.md ├── compile ├── config.guess ├── config.h.in ├── config.sub ├── configure.ac ├── depcomp ├── doc │ ├── Makefile.am │ ├── fish_xiph_org.png │ ├── framing.html │ ├── index.html │ ├── libogg │ │ ├── Makefile.am │ │ ├── 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 │ └── ogg │ │ ├── Makefile.am │ │ ├── config_types.h │ │ ├── config_types.h.in │ │ ├── ogg.h │ │ └── os_types.h ├── install-sh ├── libogg.spec ├── libogg.spec.in ├── ltmain.sh ├── macosx │ ├── English.lproj │ │ └── InfoPlist.strings │ ├── Info.plist │ ├── Ogg.xcodeproj │ │ └── project.pbxproj │ └── Ogg_Prefix.pch ├── missing ├── ogg-uninstalled.pc.in ├── ogg.m4 ├── ogg.pc.in ├── src │ ├── Makefile.am │ ├── bitwise.c │ └── framing.c └── win32 │ ├── .gitignore │ ├── VS2015 │ ├── libogg_dynamic.sln │ ├── libogg_dynamic.vcxproj │ ├── libogg_static.sln │ └── libogg_static.vcxproj │ └── ogg.def ├── libtheora ├── AUTHORS ├── CHANGES ├── COPYING ├── LICENSE ├── Makefile.am ├── README ├── SConstruct ├── autogen.sh ├── compile ├── config.guess ├── config.h.in ├── config.sub ├── configure.ac ├── depcomp ├── doc │ ├── Doxyfile.in │ ├── Makefile.am │ ├── 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 │ │ │ ├── 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 │ │ ├── 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 │ ├── dump_psnr.c │ ├── dump_video.c │ ├── encoder_example.c │ ├── getopt.c │ ├── getopt.h │ ├── getopt1.c │ ├── player_example.c │ └── png2theora.c ├── include │ ├── Makefile.am │ └── theora │ │ ├── Makefile.am │ │ ├── codec.h │ │ ├── theora.h │ │ ├── theoradec.h │ │ └── theoraenc.h ├── install-sh ├── libtheora.spec ├── libtheora.spec.in ├── ltmain.sh ├── m4 │ ├── Makefile.am │ ├── 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 │ └── theora.mmp ├── tests │ ├── Makefile.am │ ├── 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 │ ├── 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 ├── AUTHORS ├── CHANGES ├── COPYING ├── Makefile.am ├── autogen.sh ├── compile ├── config.guess ├── config.h.in ├── config.sub ├── 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 │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ ├── chaining_example.c │ ├── decoder_example.c │ ├── encoder_example.c │ ├── frameview.pl │ ├── seeking_example.c │ └── vorbisfile_example.c ├── include │ ├── Makefile.am │ └── vorbis │ │ ├── Makefile.am │ │ ├── codec.h │ │ ├── vorbisenc.h │ │ └── vorbisfile.h ├── install-sh ├── libvorbis.spec ├── libvorbis.spec.in ├── ltmain.sh ├── m4 │ ├── Makefile.am │ ├── 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 │ └── vorbis.mmp ├── test │ ├── Makefile.am │ ├── 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 │ ├── 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 ├── lpng1612 ├── ANNOUNCE ├── CHANGES ├── CMakeLists.txt ├── LICENSE ├── README ├── TODO ├── contrib │ ├── README.txt │ ├── arm-neon │ │ ├── README │ │ ├── android-ndk.c │ │ ├── linux-auxv.c │ │ └── linux.c │ ├── examples │ │ ├── README.txt │ │ ├── iccfrompng.c │ │ ├── pngpixel.c │ │ └── pngtopng.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.c │ │ ├── pngunknown.c │ │ ├── pngvalid.c │ │ ├── readpng.c │ │ ├── tarith.c │ │ └── timepng.c │ ├── pngminim │ │ ├── decoder │ │ │ ├── README │ │ │ ├── pngusr.dfa │ │ │ └── pngusr.h │ │ ├── encoder │ │ │ ├── README │ │ │ ├── pngusr.dfa │ │ │ └── pngusr.h │ │ └── preader │ │ │ ├── README │ │ │ ├── pngusr.dfa │ │ │ └── pngusr.h │ ├── pngminus │ │ ├── README │ │ ├── makefile.std │ │ ├── makefile.tc3 │ │ ├── makevms.com │ │ ├── png2pnm.bat │ │ ├── png2pnm.c │ │ ├── png2pnm.sh │ │ ├── pngminus.bat │ │ ├── pngminus.sh │ │ ├── pnm2png.bat │ │ ├── pnm2png.c │ │ └── pnm2png.sh │ ├── pngsuite │ │ ├── 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 │ ├── tools │ │ ├── README.txt │ │ ├── checksum-icc.c │ │ ├── chkfmt │ │ ├── cvtcolor.c │ │ ├── intgamma.sh │ │ ├── makesRGB.c │ │ ├── png-fix-itxt.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 ├── example.c ├── libpng-config.in ├── libpng-manual.txt ├── libpng.3 ├── libpng.pc.in ├── libpngpf.3 ├── png.5 ├── png.c ├── png.h ├── pngbar.jpg ├── pngbar.png ├── pngconf.h ├── pngdebug.h ├── pngerror.c ├── pngget.c ├── pnginfo.h ├── pnglibconf.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 ├── pngwio.c ├── pngwrite.c ├── pngwtran.c ├── pngwutil.c ├── projects │ ├── owatcom │ │ ├── libpng.tgt │ │ ├── libpng.wpj │ │ ├── pngconfig.mak │ │ ├── pngstest.tgt │ │ ├── pngtest.tgt │ │ └── pngvalid.tgt │ ├── visualc71 │ │ ├── .gitignore │ │ ├── PRJ0041.mak │ │ ├── README.txt │ │ ├── README_zlib.txt │ │ ├── libpng.sln │ │ ├── libpng.vcproj │ │ ├── libpng.vcxproj │ │ ├── libpng.vcxproj.filters │ │ ├── pngtest.vcproj │ │ ├── zlib.vcproj │ │ ├── zlib.vcxproj │ │ └── zlib.vcxproj.filters │ └── vstudio │ │ ├── WARNING │ │ ├── libpng │ │ └── libpng.vcxproj │ │ ├── pnglibconf │ │ └── pnglibconf.vcxproj │ │ ├── pngstest │ │ └── pngstest.vcxproj │ │ ├── pngtest │ │ └── pngtest.vcxproj │ │ ├── pngunknown │ │ └── pngunknown.vcxproj │ │ ├── pngvalid │ │ └── pngvalid.vcxproj │ │ ├── readme.txt │ │ ├── vstudio.sln │ │ ├── zlib.props │ │ └── zlib │ │ └── zlib.vcxproj └── scripts │ ├── README.txt │ ├── SCOPTIONS.ppc │ ├── checksym.awk │ ├── def.dfn │ ├── descrip.mms │ ├── dfn.awk │ ├── intprefix.dfn │ ├── libpng-config-body.in │ ├── libpng-config-head.in │ ├── libpng.pc.in │ ├── macro.lst │ ├── makefile.32sunu │ ├── makefile.64sunu │ ├── makefile.acorn │ ├── makefile.aix │ ├── makefile.amiga │ ├── makefile.atari │ ├── makefile.bc32 │ ├── makefile.beos │ ├── makefile.bor │ ├── makefile.cegcc │ ├── makefile.darwin │ ├── makefile.dec │ ├── makefile.dj2 │ ├── makefile.elf │ ├── makefile.freebsd │ ├── makefile.gcc │ ├── makefile.hp64 │ ├── makefile.hpgcc │ ├── makefile.hpux │ ├── makefile.ibmc │ ├── makefile.intel │ ├── makefile.knr │ ├── makefile.linux │ ├── makefile.mips │ ├── makefile.msc │ ├── makefile.msys │ ├── makefile.ne12bsd │ ├── makefile.netbsd │ ├── makefile.openbsd │ ├── makefile.sco │ ├── makefile.sggcc │ ├── makefile.sgi │ ├── makefile.so9 │ ├── makefile.solaris │ ├── makefile.solaris-x86 │ ├── makefile.std │ ├── makefile.sunos │ ├── makefile.tc3 │ ├── makefile.vcwin32 │ ├── makevms.com │ ├── options.awk │ ├── pnglibconf.dfa │ ├── pnglibconf.h.prebuilt │ ├── pnglibconf.mak │ ├── pngwin.rc │ ├── prefix.dfn │ ├── smakefile.ppc │ ├── sym.dfn │ ├── symbols.def │ ├── symbols.dfn │ └── vers.dfn ├── man ├── .gitignore ├── CMDLINE.template ├── INSTALL.template ├── Makefile.am ├── default.cfg.template ├── docgen ├── doom.template ├── environ.man ├── extra.cfg.template ├── heretic.template ├── hexen.template ├── simplecpp ├── strife.template └── wikipages ├── msvc ├── .gitignore ├── README ├── chocolate.sln ├── doom.vcproj ├── dpiaware.manifest ├── heretic.vcproj ├── hexen.vcproj ├── inttypes.h ├── libopl.vcproj ├── libpcsound.vcproj ├── libtextscreen.vcproj ├── server.vcproj ├── setup.vcproj ├── stdint.h ├── strife.vcproj ├── win32.rc ├── win_debug.c ├── win_opendir.c └── win_opendir.h ├── msvc2015 ├── .gitignore ├── Libraries.props ├── README ├── UpgradeLog.htm ├── chocolate.sln ├── config.h ├── doom.vcproj ├── dpiaware.manifest ├── heretic.vcproj ├── hexen.vcproj ├── inttypes.h ├── libopl.vcproj ├── libopl.vcxproj ├── libopl.vcxproj.filters ├── libpcsound.vcproj ├── libpcsound.vcxproj ├── libpcsound.vcxproj.filters ├── libtextscreen.vcproj ├── libtextscreen.vcxproj ├── libtextscreen.vcxproj.filters ├── server.vcproj ├── server.vcxproj ├── server.vcxproj.filters ├── setup.vcproj ├── setup.vcxproj ├── setup.vcxproj.filters ├── stdint.h ├── strife.vcproj ├── strife.vcxproj ├── strife.vcxproj.filters ├── win32.rc ├── win_debug.c ├── win_opendir.c └── win_opendir.h ├── nx-nonnda └── SDL_glfuncs.h ├── opl ├── .gitignore ├── Makefile.am ├── dbopl.c ├── dbopl.h ├── examples │ ├── .gitignore │ ├── Makefile.am │ └── droplay.c ├── ioperm_sys.c ├── ioperm_sys.h ├── opl.c ├── opl.h ├── opl_internal.h ├── opl_linux.c ├── opl_obsd.c ├── opl_queue.c ├── opl_queue.h ├── opl_sdl.c ├── opl_timer.c ├── opl_timer.h └── opl_win32.c ├── patchelf ├── COPYING ├── Makefile.am ├── README ├── build-aux │ ├── compile │ ├── depcomp │ ├── install-sh │ ├── missing │ └── test-driver ├── configure.ac ├── patchelf.1 ├── patchelf.spec ├── patchelf.spec.in ├── src │ ├── Makefile.am │ ├── elf.h │ └── patchelf.cc ├── tests │ ├── Makefile.am │ ├── bar.c │ ├── big-dynstr.sh │ ├── foo.c │ ├── main.c │ ├── no-rpath │ ├── no-rpath.sh │ ├── plain-fail.sh │ ├── plain-run.sh │ ├── set-interpreter-long.sh │ ├── set-interpreter-short.sh │ ├── set-rpath-library.sh │ ├── set-rpath.sh │ ├── shrink-rpath.sh │ └── simple.c └── version ├── pcsound ├── .gitignore ├── Makefile.am ├── pcsound.c ├── pcsound.h ├── pcsound_bsd.c ├── pcsound_internal.h ├── pcsound_linux.c ├── pcsound_sdl.c └── pcsound_win32.c ├── pkg ├── .gitignore ├── Makefile.am ├── config.make.in ├── osx │ ├── .gitignore │ ├── AppController.h │ ├── AppController.m │ ├── Execute.h │ ├── Execute.m │ ├── GNUmakefile │ ├── IWADController.h │ ├── IWADController.m │ ├── IWADLocation.h │ ├── IWADLocation.m │ ├── Info-gnustep.plist.in │ ├── Info.plist.in │ ├── LauncherManager.h │ ├── LauncherManager.m │ ├── PkgInfo │ ├── Resources │ │ ├── 128x128.png │ │ ├── app.icns │ │ ├── app.png │ │ ├── launcher.nib │ │ │ ├── designable.nib │ │ │ └── keyedobjects.nib │ │ ├── wadfile.icns │ │ └── wadfile.png │ ├── cp-with-libs │ ├── disk │ │ ├── background.png │ │ └── dir.DS_Store │ ├── dmgfix │ └── main.m └── win32 │ ├── GNUmakefile │ └── README ├── rpm.spec.in ├── sdl2_mixer ├── Android.mk ├── CHANGES.txt ├── COPYING.txt ├── README.txt ├── SDL2_mixer.pc.in ├── SDL2_mixer.spec.in ├── SDL_mixer.h ├── VisualC-WinRT │ ├── UWP_VS2015 │ │ ├── SDL_mixer-UWP.sln │ │ ├── SDL_mixer-UWP.vcxproj │ │ ├── SDL_mixer-UWP.vcxproj.filters │ │ ├── libogg_dynamic-UWP.vcxproj │ │ ├── libogg_dynamic-UWP.vcxproj.filters │ │ ├── libvorbis_dynamic-UWP.vcxproj │ │ ├── libvorbis_dynamic-UWP.vcxproj.filters │ │ ├── libvorbisfile_dynamic-UWP.vcxproj │ │ └── libvorbisfile_dynamic-UWP.vcxproj.filters │ ├── WinPhone80_VS2012 │ │ ├── SDL_mixer-WinPhone80.sln │ │ ├── SDL_mixer-WinPhone80.vcxproj │ │ ├── SDL_mixer-WinPhone80.vcxproj.filters │ │ ├── libogg_dynamic-WinPhone80.vcxproj │ │ ├── libogg_dynamic-WinPhone80.vcxproj.filters │ │ ├── libvorbis_dynamic-WinPhone80.vcxproj │ │ ├── libvorbis_dynamic-WinPhone80.vcxproj.filters │ │ ├── libvorbisfile_dynamic-WinPhone80.vcxproj │ │ └── libvorbisfile_dynamic-WinPhone80.vcxproj.filters │ ├── WinPhone81_VS2013 │ │ ├── SDL_mixer-WinPhone81.sln │ │ ├── SDL_mixer-WinPhone81.vcxproj │ │ ├── SDL_mixer-WinPhone81.vcxproj.filters │ │ ├── libogg_dynamic-WinPhone81.vcxproj │ │ ├── libogg_dynamic-WinPhone81.vcxproj.filters │ │ ├── libvorbis_dynamic-WinPhone81.vcxproj │ │ ├── libvorbis_dynamic-WinPhone81.vcxproj.filters │ │ ├── libvorbisfile_dynamic-WinPhone81.vcxproj │ │ └── libvorbisfile_dynamic-WinPhone81.vcxproj.filters │ ├── WinRT80_VS2012 │ │ ├── SDL_mixer-WinRT80.sln │ │ ├── SDL_mixer-WinRT80.vcxproj │ │ ├── SDL_mixer-WinRT80.vcxproj.filters │ │ ├── libogg_dynamic-WinRT80.vcxproj │ │ ├── libvorbis_dynamic-WinRT80.vcxproj │ │ └── libvorbisfile_dynamic-WinRT80.vcxproj │ └── WinRT81_VS2013 │ │ ├── SDL_mixer-WinRT81.sln │ │ ├── SDL_mixer-WinRT81.vcxproj │ │ ├── SDL_mixer-WinRT81.vcxproj.filters │ │ ├── libogg_dynamic-WinRT81.vcxproj │ │ ├── libogg_dynamic-WinRT81.vcxproj.filters │ │ ├── libvorbis_dynamic-WinRT81.vcxproj │ │ ├── libvorbis_dynamic-WinRT81.vcxproj.filters │ │ ├── libvorbisfile_dynamic-WinRT81.vcxproj │ │ └── libvorbisfile_dynamic-WinRT81.vcxproj.filters ├── VisualC │ ├── SDL_mixer.sln │ ├── SDL_mixer.vcxproj │ ├── SDL_mixer.vcxproj.filters │ ├── Version.rc │ ├── clean.sh │ ├── external │ │ └── include │ │ │ ├── FLAC │ │ │ ├── all.h │ │ │ ├── assert.h │ │ │ ├── callback.h │ │ │ ├── export.h │ │ │ ├── format.h │ │ │ ├── metadata.h │ │ │ ├── ordinals.h │ │ │ ├── stream_decoder.h │ │ │ └── stream_encoder.h │ │ │ ├── fmt123.h │ │ │ ├── libmodplug │ │ │ └── modplug.h │ │ │ ├── mpg123.h │ │ │ ├── ogg │ │ │ ├── config_types.h │ │ │ ├── ogg.h │ │ │ └── os_types.h │ │ │ ├── opus │ │ │ ├── opus.h │ │ │ ├── opus_defines.h │ │ │ ├── opus_multistream.h │ │ │ ├── opus_types.h │ │ │ └── opusfile.h │ │ │ ├── opusfile.h │ │ │ └── vorbis │ │ │ ├── codec.h │ │ │ └── vorbisfile.h │ ├── native_midi │ │ └── native_midi.vcxproj │ ├── playmus │ │ └── playmus.vcxproj │ ├── playwave │ │ └── playwave.vcxproj │ ├── resource.h │ └── timidity │ │ └── timidity.vcxproj ├── Xcode-iOS │ └── SDL_mixer.xcodeproj │ │ └── project.pbxproj ├── Xcode │ ├── Frameworks │ │ ├── FLAC.framework │ │ │ ├── FLAC │ │ │ ├── Headers │ │ │ │ └── FLAC │ │ │ │ │ ├── all.h │ │ │ │ │ ├── assert.h │ │ │ │ │ ├── callback.h │ │ │ │ │ ├── export.h │ │ │ │ │ ├── format.h │ │ │ │ │ ├── metadata.h │ │ │ │ │ ├── ordinals.h │ │ │ │ │ ├── stream_decoder.h │ │ │ │ │ └── stream_encoder.h │ │ │ ├── Resources │ │ │ │ ├── English.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── Info.plist │ │ │ │ └── LICENSE.FLAC.txt │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── FLAC │ │ │ │ ├── Headers │ │ │ │ │ └── FLAC │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ ├── assert.h │ │ │ │ │ │ ├── callback.h │ │ │ │ │ │ ├── export.h │ │ │ │ │ │ ├── format.h │ │ │ │ │ │ ├── metadata.h │ │ │ │ │ │ ├── ordinals.h │ │ │ │ │ │ ├── stream_decoder.h │ │ │ │ │ │ └── stream_encoder.h │ │ │ │ └── Resources │ │ │ │ │ ├── English.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── LICENSE.FLAC.txt │ │ │ │ └── Current │ │ │ │ ├── FLAC │ │ │ │ ├── Headers │ │ │ │ └── FLAC │ │ │ │ │ ├── all.h │ │ │ │ │ ├── assert.h │ │ │ │ │ ├── callback.h │ │ │ │ │ ├── export.h │ │ │ │ │ ├── format.h │ │ │ │ │ ├── metadata.h │ │ │ │ │ ├── ordinals.h │ │ │ │ │ ├── stream_decoder.h │ │ │ │ │ └── stream_encoder.h │ │ │ │ └── Resources │ │ │ │ ├── English.lproj │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── Info.plist │ │ │ │ └── LICENSE.FLAC.txt │ │ ├── Ogg.framework │ │ │ ├── Headers │ │ │ │ ├── ogg.h │ │ │ │ └── os_types.h │ │ │ ├── Ogg │ │ │ ├── Resources │ │ │ │ ├── English.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── Info.plist │ │ │ │ └── LICENSE.ogg-vorbis.txt │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ ├── ogg.h │ │ │ │ │ └── os_types.h │ │ │ │ ├── Ogg │ │ │ │ └── Resources │ │ │ │ │ ├── English.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── LICENSE.ogg-vorbis.txt │ │ │ │ └── Current │ │ │ │ ├── Headers │ │ │ │ ├── ogg.h │ │ │ │ └── os_types.h │ │ │ │ ├── Ogg │ │ │ │ └── Resources │ │ │ │ ├── English.lproj │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── Info.plist │ │ │ │ └── LICENSE.ogg-vorbis.txt │ │ ├── Opus.framework │ │ │ ├── Headers │ │ │ │ ├── opus.h │ │ │ │ ├── opus_defines.h │ │ │ │ ├── opus_multistream.h │ │ │ │ └── opus_types.h │ │ │ ├── Opus │ │ │ ├── Resources │ │ │ │ ├── English.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── Info.plist │ │ │ │ └── LICENSE.opus.txt │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ ├── opus.h │ │ │ │ │ ├── opus_defines.h │ │ │ │ │ ├── opus_multistream.h │ │ │ │ │ └── opus_types.h │ │ │ │ ├── Opus │ │ │ │ └── Resources │ │ │ │ │ ├── English.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── LICENSE.opus.txt │ │ │ │ └── Current │ │ │ │ ├── Headers │ │ │ │ ├── opus.h │ │ │ │ ├── opus_defines.h │ │ │ │ ├── opus_multistream.h │ │ │ │ └── opus_types.h │ │ │ │ ├── Opus │ │ │ │ └── Resources │ │ │ │ ├── English.lproj │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── Info.plist │ │ │ │ └── LICENSE.opus.txt │ │ ├── OpusFile.framework │ │ │ ├── Headers │ │ │ │ └── opusfile.h │ │ │ ├── OpusFile │ │ │ ├── Resources │ │ │ │ ├── English.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── Info.plist │ │ │ │ └── LICENSE.opusfile.txt │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ └── opusfile.h │ │ │ │ ├── OpusFile │ │ │ │ └── Resources │ │ │ │ │ ├── English.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── LICENSE.opusfile.txt │ │ │ │ └── Current │ │ │ │ ├── Headers │ │ │ │ └── opusfile.h │ │ │ │ ├── OpusFile │ │ │ │ └── Resources │ │ │ │ ├── English.lproj │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── Info.plist │ │ │ │ └── LICENSE.opusfile.txt │ │ ├── Vorbis.framework │ │ │ ├── Headers │ │ │ │ ├── codec.h │ │ │ │ ├── vorbisenc.h │ │ │ │ └── vorbisfile.h │ │ │ ├── Resources │ │ │ │ ├── English.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── Info.plist │ │ │ │ └── LICENSE.ogg-vorbis.txt │ │ │ ├── Versions │ │ │ │ ├── A │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── codec.h │ │ │ │ │ │ ├── vorbisenc.h │ │ │ │ │ │ └── vorbisfile.h │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── LICENSE.ogg-vorbis.txt │ │ │ │ │ └── Vorbis │ │ │ │ └── Current │ │ │ │ │ ├── Headers │ │ │ │ │ ├── codec.h │ │ │ │ │ ├── vorbisenc.h │ │ │ │ │ └── vorbisfile.h │ │ │ │ │ ├── Resources │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── LICENSE.ogg-vorbis.txt │ │ │ │ │ └── Vorbis │ │ │ └── Vorbis │ │ ├── modplug.framework │ │ │ ├── Headers │ │ │ │ └── modplug.h │ │ │ ├── Resources │ │ │ │ ├── Info.plist │ │ │ │ └── LICENSE.modplug.txt │ │ │ ├── Versions │ │ │ │ ├── A │ │ │ │ │ ├── Headers │ │ │ │ │ │ └── modplug.h │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── LICENSE.modplug.txt │ │ │ │ │ └── modplug │ │ │ │ └── Current │ │ │ │ │ ├── Headers │ │ │ │ │ └── modplug.h │ │ │ │ │ ├── Resources │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── LICENSE.modplug.txt │ │ │ │ │ └── modplug │ │ │ └── modplug │ │ └── mpg123.framework │ │ │ ├── Headers │ │ │ ├── fmt123.h │ │ │ └── mpg123.h │ │ │ ├── Resources │ │ │ ├── Info.plist │ │ │ └── LICENSE.mpg123.txt │ │ │ ├── Versions │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ ├── fmt123.h │ │ │ │ │ └── mpg123.h │ │ │ │ ├── Resources │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── LICENSE.mpg123.txt │ │ │ │ └── mpg123 │ │ │ └── Current │ │ │ │ ├── Headers │ │ │ │ ├── fmt123.h │ │ │ │ └── mpg123.h │ │ │ │ ├── Resources │ │ │ │ ├── Info.plist │ │ │ │ └── LICENSE.mpg123.txt │ │ │ │ └── mpg123 │ │ │ └── mpg123 │ ├── Info-Framework.plist │ ├── SDL_mixer.xcodeproj │ │ └── project.pbxproj │ ├── package │ ├── pkg-support │ │ ├── SDL_mixer.info │ │ ├── mkpackage.sh │ │ └── resources │ │ │ ├── ReadMe.txt │ │ │ └── Welcome.txt │ ├── playmus │ │ ├── English.lproj │ │ │ └── InfoPlist.strings │ │ ├── Info-playmus__Upgraded_.plist │ │ ├── SDLMain.h │ │ ├── SDLMain.m │ │ └── playmus.xcodeproj │ │ │ └── project.pbxproj │ └── playwave │ │ ├── English.lproj │ │ └── InfoPlist.strings │ │ ├── Info-playwave__Upgraded_.plist │ │ ├── SDLMain.h │ │ ├── SDLMain.m │ │ └── playwave.xcodeproj │ │ └── project.pbxproj ├── acinclude │ ├── libtool.m4 │ ├── ltoptions.m4 │ ├── ltsugar.m4 │ ├── ltversion.m4 │ ├── lt~obsolete.m4 │ ├── pkg.m4 │ └── sdl2.m4 ├── autogen.sh ├── build-scripts │ ├── config.guess │ ├── config.sub │ ├── install-sh │ ├── ltmain.sh │ └── mkinstalldirs ├── configure.in ├── debian │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── docs │ ├── libsdl2-mixer-dev.examples │ ├── libsdl2-mixer-dev.install │ ├── libsdl2-mixer.install │ ├── rules │ ├── source │ │ └── format │ └── watch ├── effect_position.c ├── effect_stereoreverse.c ├── effects_internal.c ├── effects_internal.h ├── external │ ├── flac-1.3.2.patch │ ├── flac-1.3.2 │ │ ├── AUTHORS │ │ ├── Android.mk │ │ ├── COPYING.FDL │ │ ├── COPYING.GPL │ │ ├── COPYING.LGPL │ │ ├── COPYING.Xiph │ │ ├── FLAC-vs2005.sln │ │ ├── FLAC.sln │ │ ├── Makefile.am │ │ ├── Makefile.deps │ │ ├── Makefile.lite │ │ ├── README │ │ ├── ar-lib │ │ ├── autogen.sh │ │ ├── build │ │ │ ├── Makefile.am │ │ │ ├── compile.mk │ │ │ ├── config.mk │ │ │ ├── exe.mk │ │ │ └── lib.mk │ │ ├── compile │ │ ├── config.guess │ │ ├── config.h.in │ │ ├── config.rpath │ │ ├── config.sub │ │ ├── configure.ac │ │ ├── depcomp │ │ ├── doc │ │ │ ├── Doxyfile.in │ │ │ ├── FLAC.tag │ │ │ ├── Makefile.am │ │ │ ├── Makefile.lite │ │ │ ├── doxygen.footer.html │ │ │ ├── doxygen.header.html │ │ │ ├── html │ │ │ │ ├── Makefile.am │ │ │ │ ├── changelog.html │ │ │ │ ├── developers.html │ │ │ │ ├── documentation.html │ │ │ │ ├── documentation_bugs.html │ │ │ │ ├── documentation_example_code.html │ │ │ │ ├── documentation_format_overview.html │ │ │ │ ├── documentation_tools.html │ │ │ │ ├── documentation_tools_flac.html │ │ │ │ ├── documentation_tools_metaflac.html │ │ │ │ ├── faq.html │ │ │ │ ├── favicon.ico │ │ │ │ ├── features.html │ │ │ │ ├── flac.css │ │ │ │ ├── format.html │ │ │ │ ├── id.html │ │ │ │ ├── images │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── logo.svg │ │ │ │ │ └── logo130.gif │ │ │ │ ├── index.html │ │ │ │ ├── license.html │ │ │ │ └── ogg_mapping.html │ │ │ └── isoflac.txt │ │ ├── examples │ │ │ ├── Makefile.am │ │ │ ├── Makefile.lite │ │ │ ├── README │ │ │ ├── c │ │ │ │ ├── Makefile.am │ │ │ │ ├── decode │ │ │ │ │ ├── Makefile.am │ │ │ │ │ └── file │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ │ ├── example_c_decode_file.vcproj │ │ │ │ │ │ ├── example_c_decode_file.vcxproj │ │ │ │ │ │ ├── example_c_decode_file.vcxproj.filters │ │ │ │ │ │ └── main.c │ │ │ │ └── encode │ │ │ │ │ ├── Makefile.am │ │ │ │ │ └── file │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ ├── example_c_encode_file.vcproj │ │ │ │ │ ├── example_c_encode_file.vcxproj │ │ │ │ │ ├── example_c_encode_file.vcxproj.filters │ │ │ │ │ └── main.c │ │ │ └── cpp │ │ │ │ ├── Makefile.am │ │ │ │ ├── decode │ │ │ │ ├── Makefile.am │ │ │ │ └── file │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ ├── example_cpp_decode_file.vcproj │ │ │ │ │ ├── example_cpp_decode_file.vcxproj │ │ │ │ │ ├── example_cpp_decode_file.vcxproj.filters │ │ │ │ │ └── main.cpp │ │ │ │ └── encode │ │ │ │ ├── Makefile.am │ │ │ │ └── file │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.lite │ │ │ │ ├── example_cpp_encode_file.vcproj │ │ │ │ ├── example_cpp_encode_file.vcxproj │ │ │ │ ├── example_cpp_encode_file.vcxproj.filters │ │ │ │ └── main.cpp │ │ ├── include │ │ │ ├── FLAC++ │ │ │ │ ├── Makefile.am │ │ │ │ ├── all.h │ │ │ │ ├── decoder.h │ │ │ │ ├── encoder.h │ │ │ │ ├── export.h │ │ │ │ └── metadata.h │ │ │ ├── FLAC │ │ │ │ ├── Makefile.am │ │ │ │ ├── all.h │ │ │ │ ├── assert.h │ │ │ │ ├── callback.h │ │ │ │ ├── export.h │ │ │ │ ├── format.h │ │ │ │ ├── metadata.h │ │ │ │ ├── ordinals.h │ │ │ │ ├── stream_decoder.h │ │ │ │ └── stream_encoder.h │ │ │ ├── Makefile.am │ │ │ ├── share │ │ │ │ ├── Makefile.am │ │ │ │ ├── alloc.h │ │ │ │ ├── compat.h │ │ │ │ ├── endswap.h │ │ │ │ ├── getopt.h │ │ │ │ ├── grabbag.h │ │ │ │ ├── grabbag │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── 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 │ │ │ │ └── windows_unicode_filenames.h │ │ │ └── test_libs_common │ │ │ │ ├── Makefile.am │ │ │ │ ├── file_utils_flac.h │ │ │ │ └── metadata_utils.h │ │ ├── install-sh │ │ ├── ltmain.sh │ │ ├── m4 │ │ │ ├── Makefile.am │ │ │ ├── add_cflags.m4 │ │ │ ├── add_cxxflags.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 │ │ │ └── xmms.m4 │ │ ├── man │ │ │ ├── Makefile.am │ │ │ ├── flac.1 │ │ │ ├── flac.sgml │ │ │ ├── metaflac.1 │ │ │ └── metaflac.sgml │ │ ├── microbench │ │ │ ├── Makefile.am │ │ │ ├── benchmark_residual.c │ │ │ ├── util.c │ │ │ └── util.h │ │ ├── missing │ │ ├── objs │ │ │ ├── Makefile.am │ │ │ ├── debug │ │ │ │ └── Makefile.am │ │ │ └── release │ │ │ │ └── Makefile.am │ │ ├── src │ │ │ ├── Makefile.am │ │ │ ├── Makefile.lite │ │ │ ├── flac │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.lite │ │ │ │ ├── Makefile.lite.iffscan │ │ │ │ ├── analyze.c │ │ │ │ ├── analyze.h │ │ │ │ ├── decode.c │ │ │ │ ├── decode.h │ │ │ │ ├── encode.c │ │ │ │ ├── encode.h │ │ │ │ ├── flac.vcproj │ │ │ │ ├── flac.vcxproj │ │ │ │ ├── flac.vcxproj.filters │ │ │ │ ├── foreign_metadata.c │ │ │ │ ├── foreign_metadata.h │ │ │ │ ├── iffscan.c │ │ │ │ ├── iffscan.vcproj │ │ │ │ ├── iffscan.vcxproj │ │ │ │ ├── iffscan.vcxproj.filters │ │ │ │ ├── local_string_utils.c │ │ │ │ ├── local_string_utils.h │ │ │ │ ├── main.c │ │ │ │ ├── utils.c │ │ │ │ ├── utils.h │ │ │ │ ├── vorbiscomment.c │ │ │ │ └── vorbiscomment.h │ │ │ ├── libFLAC++ │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.lite │ │ │ │ ├── flac++.pc.in │ │ │ │ ├── libFLAC++.m4 │ │ │ │ ├── libFLAC++_dynamic.vcproj │ │ │ │ ├── libFLAC++_dynamic.vcxproj │ │ │ │ ├── libFLAC++_dynamic.vcxproj.filters │ │ │ │ ├── libFLAC++_static.vcproj │ │ │ │ ├── libFLAC++_static.vcxproj │ │ │ │ ├── libFLAC++_static.vcxproj.filters │ │ │ │ ├── metadata.cpp │ │ │ │ ├── stream_decoder.cpp │ │ │ │ └── stream_encoder.cpp │ │ │ ├── libFLAC │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.lite │ │ │ │ ├── bitmath.c │ │ │ │ ├── bitreader.c │ │ │ │ ├── bitwriter.c │ │ │ │ ├── cpu.c │ │ │ │ ├── crc.c │ │ │ │ ├── fixed.c │ │ │ │ ├── fixed_intrin_sse2.c │ │ │ │ ├── fixed_intrin_ssse3.c │ │ │ │ ├── flac.pc.in │ │ │ │ ├── float.c │ │ │ │ ├── format.c │ │ │ │ ├── ia32 │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── cpu_asm.nasm │ │ │ │ │ ├── fixed_asm.nasm │ │ │ │ │ ├── lpc_asm.nasm │ │ │ │ │ └── nasm.h │ │ │ │ ├── include │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── private │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ ├── stream_decoder.h │ │ │ │ │ │ └── stream_encoder.h │ │ │ │ ├── libFLAC.m4 │ │ │ │ ├── libFLAC_dynamic.vcproj │ │ │ │ ├── libFLAC_dynamic.vcxproj │ │ │ │ ├── libFLAC_dynamic.vcxproj.filters │ │ │ │ ├── libFLAC_static.vcproj │ │ │ │ ├── libFLAC_static.vcxproj │ │ │ │ ├── libFLAC_static.vcxproj.filters │ │ │ │ ├── lpc.c │ │ │ │ ├── lpc_intrin_avx2.c │ │ │ │ ├── lpc_intrin_sse.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 │ │ │ │ ├── window.c │ │ │ │ └── windows_unicode_filenames.c │ │ │ ├── metaflac │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.lite │ │ │ │ ├── main.c │ │ │ │ ├── metaflac.vcproj │ │ │ │ ├── metaflac.vcxproj │ │ │ │ ├── metaflac.vcxproj.filters │ │ │ │ ├── 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 │ │ │ ├── plugin_common │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.lite │ │ │ │ ├── README │ │ │ │ ├── all.h │ │ │ │ ├── charset.c │ │ │ │ ├── charset.h │ │ │ │ ├── defs.h │ │ │ │ ├── dither.c │ │ │ │ ├── dither.h │ │ │ │ ├── replaygain.c │ │ │ │ ├── replaygain.h │ │ │ │ ├── tags.c │ │ │ │ └── tags.h │ │ │ ├── plugin_xmms │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.lite │ │ │ │ ├── charset.c │ │ │ │ ├── charset.h │ │ │ │ ├── configure.c │ │ │ │ ├── configure.h │ │ │ │ ├── fileinfo.c │ │ │ │ ├── http.c │ │ │ │ ├── http.h │ │ │ │ ├── locale_hack.h │ │ │ │ ├── plugin.c │ │ │ │ ├── plugin.h │ │ │ │ ├── tag.c │ │ │ │ └── tag.h │ │ │ ├── share │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.lite │ │ │ │ ├── README │ │ │ │ ├── getopt │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ ├── getopt.c │ │ │ │ │ ├── getopt1.c │ │ │ │ │ ├── getopt_static.vcproj │ │ │ │ │ ├── getopt_static.vcxproj │ │ │ │ │ └── getopt_static.vcxproj.filters │ │ │ │ ├── grabbag │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ ├── alloc.c │ │ │ │ │ ├── cuesheet.c │ │ │ │ │ ├── file.c │ │ │ │ │ ├── grabbag_static.vcproj │ │ │ │ │ ├── grabbag_static.vcxproj │ │ │ │ │ ├── grabbag_static.vcxproj.filters │ │ │ │ │ ├── picture.c │ │ │ │ │ ├── replaygain.c │ │ │ │ │ ├── seektable.c │ │ │ │ │ └── snprintf.c │ │ │ │ ├── replaygain_analysis │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ ├── replaygain_analysis.c │ │ │ │ │ ├── replaygain_analysis_static.vcproj │ │ │ │ │ ├── replaygain_analysis_static.vcxproj │ │ │ │ │ └── replaygain_analysis_static.vcxproj.filters │ │ │ │ ├── replaygain_synthesis │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ ├── replaygain_synthesis.c │ │ │ │ │ ├── replaygain_synthesis_static.vcproj │ │ │ │ │ ├── replaygain_synthesis_static.vcxproj │ │ │ │ │ └── replaygain_synthesis_static.vcxproj.filters │ │ │ │ ├── utf8 │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ ├── charmaps.h │ │ │ │ │ ├── charset.c │ │ │ │ │ ├── charset.h │ │ │ │ │ ├── charset_test.c │ │ │ │ │ ├── iconvert.c │ │ │ │ │ ├── iconvert.h │ │ │ │ │ ├── makemap.c │ │ │ │ │ ├── utf8.c │ │ │ │ │ ├── utf8_static.vcproj │ │ │ │ │ ├── utf8_static.vcxproj │ │ │ │ │ └── utf8_static.vcxproj.filters │ │ │ │ └── win_utf8_io │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ ├── win_utf8_io.c │ │ │ │ │ ├── win_utf8_io_static.vcproj │ │ │ │ │ ├── win_utf8_io_static.vcxproj │ │ │ │ │ └── win_utf8_io_static.vcxproj.filters │ │ │ ├── test_grabbag │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.lite │ │ │ │ ├── cuesheet │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ ├── main.c │ │ │ │ │ ├── test_cuesheet.vcproj │ │ │ │ │ ├── test_cuesheet.vcxproj │ │ │ │ │ └── test_cuesheet.vcxproj.filters │ │ │ │ └── picture │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.lite │ │ │ │ │ ├── main.c │ │ │ │ │ ├── test_picture.vcproj │ │ │ │ │ ├── test_picture.vcxproj │ │ │ │ │ └── test_picture.vcxproj.filters │ │ │ ├── test_libFLAC++ │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.lite │ │ │ │ ├── decoders.cpp │ │ │ │ ├── decoders.h │ │ │ │ ├── encoders.cpp │ │ │ │ ├── encoders.h │ │ │ │ ├── main.cpp │ │ │ │ ├── metadata.cpp │ │ │ │ ├── metadata.h │ │ │ │ ├── metadata_manip.cpp │ │ │ │ ├── metadata_object.cpp │ │ │ │ ├── test_libFLAC++.vcproj │ │ │ │ ├── test_libFLAC++.vcxproj │ │ │ │ └── test_libFLAC++.vcxproj.filters │ │ │ ├── test_libFLAC │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.lite │ │ │ │ ├── bitwriter.c │ │ │ │ ├── bitwriter.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_libFLAC.vcproj │ │ │ │ ├── test_libFLAC.vcxproj │ │ │ │ └── test_libFLAC.vcxproj.filters │ │ │ ├── test_libs_common │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.lite │ │ │ │ ├── README │ │ │ │ ├── file_utils_flac.c │ │ │ │ ├── metadata_utils.c │ │ │ │ ├── test_libs_common_static.vcproj │ │ │ │ ├── test_libs_common_static.vcxproj │ │ │ │ └── test_libs_common_static.vcxproj.filters │ │ │ ├── test_seeking │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.lite │ │ │ │ ├── main.c │ │ │ │ ├── test_seeking.vcproj │ │ │ │ ├── test_seeking.vcxproj │ │ │ │ └── test_seeking.vcxproj.filters │ │ │ ├── test_streams │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.lite │ │ │ │ ├── main.c │ │ │ │ ├── test_streams.vcproj │ │ │ │ ├── test_streams.vcxproj │ │ │ │ └── test_streams.vcxproj.filters │ │ │ └── utils │ │ │ │ ├── Makefile.am │ │ │ │ ├── flacdiff │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.lite │ │ │ │ ├── flacdiff.vcproj │ │ │ │ ├── flacdiff.vcxproj │ │ │ │ ├── flacdiff.vcxproj.filters │ │ │ │ └── main.cpp │ │ │ │ └── flactimer │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.lite │ │ │ │ ├── flactimer.vcproj │ │ │ │ ├── flactimer.vcxproj │ │ │ │ ├── flactimer.vcxproj.filters │ │ │ │ └── main.cpp │ │ ├── strip_non_asm_libtool_args.sh │ │ └── test │ │ │ ├── Makefile.am │ │ │ ├── Makefile.lite │ │ │ ├── common.sh.in │ │ │ ├── cuesheet.ok │ │ │ ├── cuesheets │ │ │ ├── Makefile.am │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── metaflac-test-files │ │ │ ├── Makefile.am │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ ├── libmodplug-0.8.9.0.patch │ ├── libmodplug-0.8.9.0 │ │ ├── AUTHORS │ │ ├── Android.mk │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── Makefile.am │ │ ├── NEWS │ │ ├── README │ │ ├── TODO │ │ ├── compile │ │ ├── config.guess │ │ ├── config.sub │ │ ├── configure.ac │ │ ├── depcomp │ │ ├── install-sh │ │ ├── libmodplug-0.8.9.0.patch │ │ ├── libmodplug.pc.in │ │ ├── ltmain.sh │ │ ├── m4 │ │ │ ├── libtool.m4 │ │ │ ├── ltoptions.m4 │ │ │ ├── ltsugar.m4 │ │ │ ├── ltversion.m4 │ │ │ └── lt~obsolete.m4 │ │ ├── missing │ │ └── src │ │ │ ├── Makefile.am │ │ │ ├── config.h.in │ │ │ ├── fastmix.cpp │ │ │ ├── libmodplug │ │ │ ├── it_defs.h │ │ │ ├── sndfile.h │ │ │ └── stdafx.h │ │ │ ├── load_669.cpp │ │ │ ├── load_abc.cpp │ │ │ ├── load_amf.cpp │ │ │ ├── load_ams.cpp │ │ │ ├── load_dbm.cpp │ │ │ ├── load_dmf.cpp │ │ │ ├── load_dsm.cpp │ │ │ ├── load_far.cpp │ │ │ ├── load_it.cpp │ │ │ ├── load_j2b.cpp │ │ │ ├── load_mdl.cpp │ │ │ ├── load_med.cpp │ │ │ ├── load_mid.cpp │ │ │ ├── load_mod.cpp │ │ │ ├── load_mt2.cpp │ │ │ ├── load_mtm.cpp │ │ │ ├── load_okt.cpp │ │ │ ├── load_pat.cpp │ │ │ ├── load_pat.h │ │ │ ├── load_psm.cpp │ │ │ ├── load_ptm.cpp │ │ │ ├── load_s3m.cpp │ │ │ ├── load_stm.cpp │ │ │ ├── load_ult.cpp │ │ │ ├── load_umx.cpp │ │ │ ├── load_wav.cpp │ │ │ ├── load_xm.cpp │ │ │ ├── mmcmp.cpp │ │ │ ├── modplug.cpp │ │ │ ├── modplug.h │ │ │ ├── snd_dsp.cpp │ │ │ ├── snd_flt.cpp │ │ │ ├── snd_fx.cpp │ │ │ ├── sndfile.cpp │ │ │ ├── sndmix.cpp │ │ │ └── tables.h │ ├── libogg-1.3.2.patch │ ├── libogg-1.3.2 │ │ ├── AUTHORS │ │ ├── Android.mk │ │ ├── CHANGES │ │ ├── COPYING │ │ ├── Makefile.am │ │ ├── README │ │ ├── android │ │ │ └── ogg │ │ │ │ └── config_types.h │ │ ├── compile │ │ ├── config.guess │ │ ├── config.h.in │ │ ├── config.sub │ │ ├── configure.in │ │ ├── depcomp │ │ ├── doc │ │ │ ├── Makefile.am │ │ │ ├── fish_xiph_org.png │ │ │ ├── framing.html │ │ │ ├── index.html │ │ │ ├── libogg │ │ │ │ ├── Makefile.am │ │ │ │ ├── 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 │ │ │ └── ogg │ │ │ │ ├── Makefile.am │ │ │ │ ├── config_types.h.in │ │ │ │ ├── ogg.h │ │ │ │ └── os_types.h │ │ ├── install-sh │ │ ├── libogg.spec │ │ ├── libogg.spec.in │ │ ├── ltmain.sh │ │ ├── macosx │ │ │ ├── English.lproj │ │ │ │ └── InfoPlist.strings │ │ │ ├── Info.plist │ │ │ ├── Ogg.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── Ogg_Prefix.pch │ │ ├── missing │ │ ├── ogg-uninstalled.pc.in │ │ ├── ogg.m4 │ │ ├── ogg.pc.in │ │ ├── src │ │ │ ├── Makefile.am │ │ │ ├── bitwise.c │ │ │ └── framing.c │ │ └── win32 │ │ │ ├── VS2003 │ │ │ ├── libogg │ │ │ │ └── libogg.vcproj │ │ │ └── ogg.sln │ │ │ ├── VS2005 │ │ │ ├── libogg_dynamic.sln │ │ │ ├── libogg_dynamic.vcproj │ │ │ ├── libogg_static.sln │ │ │ └── libogg_static.vcproj │ │ │ ├── VS2008 │ │ │ ├── libogg_dynamic.sln │ │ │ ├── libogg_dynamic.vcproj │ │ │ ├── libogg_static.sln │ │ │ └── libogg_static.vcproj │ │ │ ├── VS2010 │ │ │ ├── libogg_dynamic.sln │ │ │ ├── libogg_dynamic.vcxproj │ │ │ ├── libogg_static.sln │ │ │ └── libogg_static.vcxproj │ │ │ ├── VS6 │ │ │ ├── build_ogg_dynamic.bat │ │ │ ├── build_ogg_dynamic_debug.bat │ │ │ ├── build_ogg_static.bat │ │ │ ├── build_ogg_static_debug.bat │ │ │ ├── ogg.dsw │ │ │ ├── ogg_dynamic.dsp │ │ │ └── ogg_static.dsp │ │ │ └── ogg.def │ ├── libvorbis-1.3.5.patch │ ├── libvorbis-1.3.5 │ │ ├── AUTHORS │ │ ├── CHANGES │ │ ├── COPYING │ │ ├── Makefile.am │ │ ├── README │ │ ├── autogen.sh │ │ ├── compile │ │ ├── config.guess │ │ ├── config.h.in │ │ ├── config.sub │ │ ├── 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 │ │ │ ├── Vorbis_I_spec.cfg │ │ │ ├── Vorbis_I_spec.css │ │ │ ├── Vorbis_I_spec.html │ │ │ ├── Vorbis_I_spec.pdf │ │ │ ├── Vorbis_I_spec.tex │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ ├── chaining_example.c │ │ │ ├── decoder_example.c │ │ │ ├── encoder_example.c │ │ │ ├── frameview.pl │ │ │ ├── seeking_example.c │ │ │ └── vorbisfile_example.c │ │ ├── include │ │ │ ├── Makefile.am │ │ │ └── vorbis │ │ │ │ ├── Makefile.am │ │ │ │ ├── codec.h │ │ │ │ ├── vorbisenc.h │ │ │ │ └── vorbisfile.h │ │ ├── install-sh │ │ ├── libvorbis.spec │ │ ├── libvorbis.spec.in │ │ ├── ltmain.sh │ │ ├── m4 │ │ │ ├── Makefile.am │ │ │ ├── add_cflags.m4 │ │ │ ├── ogg.m4 │ │ │ └── pkg.m4 │ │ ├── macos │ │ │ ├── compat │ │ │ │ ├── strdup.c │ │ │ │ └── sys │ │ │ │ │ └── types.h │ │ │ ├── decoder_example.mcp │ │ │ ├── encoder_example.mcp │ │ │ ├── libvorbis.mcp │ │ │ ├── libvorbis.mcp.exp │ │ │ ├── libvorbisenc.mcp │ │ │ ├── libvorbisenc.mcp.exp │ │ │ ├── libvorbisfile.mcp │ │ │ ├── libvorbisfile.mcp.exp │ │ │ └── vorbis.mcp │ │ ├── macosx │ │ │ ├── English.lproj │ │ │ │ └── InfoPlist.strings │ │ │ ├── Info.plist │ │ │ └── Vorbis.xcodeproj │ │ │ │ └── project.pbxproj │ │ ├── missing │ │ ├── symbian │ │ │ ├── bld.inf │ │ │ └── vorbis.mmp │ │ ├── test │ │ │ ├── Makefile.am │ │ │ ├── test.c │ │ │ ├── util.c │ │ │ ├── util.h │ │ │ ├── write_read.c │ │ │ └── write_read.h │ │ ├── todo.txt │ │ ├── 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 │ │ │ ├── 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 │ ├── libvorbisidec-1.2.1.patch │ ├── libvorbisidec-1.2.1 │ │ ├── Android.mk │ │ ├── COPYING │ │ ├── Makefile.am │ │ ├── README │ │ ├── Version_script.in │ │ ├── acinclude │ │ │ ├── ogg.m4 │ │ │ └── pkg.m4 │ │ ├── asm_arm.h │ │ ├── backends.h │ │ ├── block.c │ │ ├── block.h │ │ ├── codebook.c │ │ ├── codebook.h │ │ ├── codec_internal.h │ │ ├── config.guess │ │ ├── config.h.in │ │ ├── config.sub │ │ ├── config_types.h │ │ ├── configure.in │ │ ├── depcomp │ │ ├── doc │ │ │ ├── OggVorbis_File.html │ │ │ ├── build.html │ │ │ ├── callbacks.html │ │ │ ├── datastructures.html │ │ │ ├── decoding.html │ │ │ ├── diff.html │ │ │ ├── example.html │ │ │ ├── fileinfo.html │ │ │ ├── index.html │ │ │ ├── initialization.html │ │ │ ├── ov_bitrate.html │ │ │ ├── ov_bitrate_instant.html │ │ │ ├── ov_callbacks.html │ │ │ ├── ov_clear.html │ │ │ ├── ov_comment.html │ │ │ ├── ov_info.html │ │ │ ├── ov_open.html │ │ │ ├── ov_open_callbacks.html │ │ │ ├── ov_pcm_seek.html │ │ │ ├── ov_pcm_seek_page.html │ │ │ ├── ov_pcm_tell.html │ │ │ ├── ov_pcm_total.html │ │ │ ├── ov_raw_seek.html │ │ │ ├── ov_raw_tell.html │ │ │ ├── ov_raw_total.html │ │ │ ├── ov_read.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_page.html │ │ │ ├── ov_time_tell.html │ │ │ ├── ov_time_total.html │ │ │ ├── overview.html │ │ │ ├── reference.html │ │ │ ├── return.html │ │ │ ├── seeking.html │ │ │ ├── threads.html │ │ │ ├── vorbis_comment.html │ │ │ └── vorbis_info.html │ │ ├── floor0.c │ │ ├── floor1.c │ │ ├── info.c │ │ ├── install-sh │ │ ├── iseeking_example.c │ │ ├── ivorbiscodec.h │ │ ├── ivorbisfile.h │ │ ├── ivorbisfile_example.c │ │ ├── lsp_lookup.h │ │ ├── ltmain.sh │ │ ├── mapping0.c │ │ ├── mdct.c │ │ ├── mdct.h │ │ ├── mdct_lookup.h │ │ ├── misc.h │ │ ├── missing │ │ ├── os.h │ │ ├── registry.c │ │ ├── registry.h │ │ ├── res012.c │ │ ├── sharedbook.c │ │ ├── synthesis.c │ │ ├── vorbisfile.c │ │ ├── vorbisidec.pc.in │ │ ├── win32 │ │ │ ├── VS2005 │ │ │ │ └── libtremor │ │ │ │ │ └── libtremor.vcproj │ │ │ └── VS2008 │ │ │ │ └── libtremor │ │ │ │ └── libtremor.vcproj │ │ ├── window.c │ │ ├── window.h │ │ └── window_lookup.h │ ├── mpg123-1.25.6.patch │ ├── mpg123-1.25.6 │ │ ├── AUTHORS │ │ ├── Android.mk │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── Makefile.am │ │ ├── NEWS │ │ ├── NEWS.libmpg123 │ │ ├── NEWS.libout123 │ │ ├── README │ │ ├── TODO │ │ ├── android │ │ │ └── mpg123.h │ │ ├── build │ │ │ ├── compile │ │ │ ├── config.guess │ │ │ ├── config.sub │ │ │ ├── depcomp │ │ │ ├── install-sh │ │ │ ├── ltmain.sh │ │ │ └── missing │ │ ├── configure.ac │ │ ├── doc │ │ │ ├── ACCURACY │ │ │ ├── BENCHMARKING │ │ │ ├── BUGS │ │ │ ├── CONTACT │ │ │ ├── LARGEFILE │ │ │ ├── LICENSE │ │ │ ├── Makemodule.am │ │ │ ├── PATENTS │ │ │ ├── README.3DNOW │ │ │ ├── README.gain │ │ │ ├── README.remote │ │ │ ├── ROAD_TO_LGPL │ │ │ ├── THANKS │ │ │ ├── TODO │ │ │ ├── doxy_examples.c │ │ │ ├── doxyfoot.xhtml │ │ │ ├── doxygen.conf │ │ │ ├── doxyhead.xhtml │ │ │ ├── examples │ │ │ │ ├── dump_seekindex.c │ │ │ │ ├── extract_frames.c │ │ │ │ ├── feedseek.c │ │ │ │ ├── id3dump.c │ │ │ │ ├── mpg123_to_out123.c │ │ │ │ ├── mpglib.c │ │ │ │ └── scan.c │ │ │ └── libmpg123_speed.txt │ │ ├── equalize.dat │ │ ├── libmpg123.pc.in │ │ ├── libout123.pc.in │ │ ├── m4 │ │ │ ├── addrconfig.m4 │ │ │ ├── libtool.m4 │ │ │ ├── ltoptions.m4 │ │ │ ├── ltsugar.m4 │ │ │ ├── ltversion.m4 │ │ │ └── lt~obsolete.m4 │ │ ├── makedll.sh │ │ ├── man1 │ │ │ ├── mpg123.1 │ │ │ └── out123.1 │ │ ├── mpg123.spec │ │ ├── mpg123.spec.in │ │ ├── ports │ │ │ ├── MSVC++ │ │ │ │ ├── 2015 │ │ │ │ │ ├── uwp │ │ │ │ │ │ ├── libmpg123.sln │ │ │ │ │ │ └── libmpg123 │ │ │ │ │ │ │ ├── libmpg123.vcxproj │ │ │ │ │ │ │ └── libmpg123.vcxproj.filters │ │ │ │ │ └── win32 │ │ │ │ │ │ ├── dump_seekindex │ │ │ │ │ │ ├── dump_seekindex.vcxproj │ │ │ │ │ │ └── dump_seekindex.vcxproj.filters │ │ │ │ │ │ ├── feedseek │ │ │ │ │ │ ├── feedseek.vcxproj │ │ │ │ │ │ └── feedseek.vcxproj.filters │ │ │ │ │ │ ├── libmpg123 │ │ │ │ │ │ ├── libmpg123.vcxproj │ │ │ │ │ │ └── libmpg123.vcxproj.filters │ │ │ │ │ │ ├── mpg123.sln │ │ │ │ │ │ └── scan │ │ │ │ │ │ ├── scan.vcxproj │ │ │ │ │ │ └── scan.vcxproj.filters │ │ │ │ ├── 2008clr │ │ │ │ │ ├── 2008clr.sln │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── ReplaceReaderclr │ │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ │ │ └── ReplaceReaderclr.csproj │ │ │ │ │ │ ├── feedseekclr │ │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ │ │ └── feedseekclr.csproj │ │ │ │ │ │ └── scanclr │ │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ │ │ └── scanclr.csproj │ │ │ │ │ └── mpg123clr │ │ │ │ │ │ ├── AssemblyInfo.cpp │ │ │ │ │ │ ├── ReadMe.txt │ │ │ │ │ │ ├── advanced.cpp │ │ │ │ │ │ ├── advanced.h │ │ │ │ │ │ ├── dllmain.cpp │ │ │ │ │ │ ├── enum.h │ │ │ │ │ │ ├── error.cpp │ │ │ │ │ │ ├── error.h │ │ │ │ │ │ ├── id3v1.cpp │ │ │ │ │ │ ├── id3v1.h │ │ │ │ │ │ ├── id3v2.cpp │ │ │ │ │ │ ├── id3v2.h │ │ │ │ │ │ ├── mpg123clr.cpp │ │ │ │ │ │ ├── mpg123clr.h │ │ │ │ │ │ ├── mpg123clr.rc │ │ │ │ │ │ ├── mpg123clr.vcproj │ │ │ │ │ │ ├── resource.h │ │ │ │ │ │ ├── stdafx.cpp │ │ │ │ │ │ ├── stdafx.h │ │ │ │ │ │ ├── string.cpp │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ ├── targetver.h │ │ │ │ │ │ ├── text.cpp │ │ │ │ │ │ └── text.h │ │ │ │ ├── CMP3Stream │ │ │ │ │ ├── INCLUDE │ │ │ │ │ │ ├── CORE │ │ │ │ │ │ │ ├── CORE_FileIn.H │ │ │ │ │ │ │ └── SourceFilter_MP3.H │ │ │ │ │ │ ├── IIEP_Def.H │ │ │ │ │ │ └── IIEP_FileIn.H │ │ │ │ │ ├── README │ │ │ │ │ ├── SOURCE │ │ │ │ │ │ ├── CORE_FileIn.CPP │ │ │ │ │ │ ├── CORE_Log.CPP │ │ │ │ │ │ ├── CORE_Mutex.CPP │ │ │ │ │ │ └── SourceFilter_MP3Stream.CPP │ │ │ │ │ └── libMPG123 │ │ │ │ │ │ ├── PLACE_LIBMPG123_SOURCES_HERE │ │ │ │ │ │ └── libMPG123.vcproj │ │ │ │ ├── examples │ │ │ │ │ ├── feedseek.c │ │ │ │ │ └── scan.c │ │ │ │ ├── mpg123.h │ │ │ │ └── msvc.c │ │ │ ├── README │ │ │ ├── Sony_PSP │ │ │ │ ├── Makefile.psp │ │ │ │ ├── README │ │ │ │ └── readers.c.patch │ │ │ ├── Xcode │ │ │ │ ├── mpg123.h │ │ │ │ └── mpg123.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ └── mpg123_.pas │ │ ├── scripts │ │ │ ├── benchmark-cpu.pl │ │ │ ├── conplay │ │ │ ├── mpg123info │ │ │ └── tag_lyrics.py │ │ ├── src │ │ │ ├── Makemodule.am │ │ │ ├── audio.c │ │ │ ├── audio.h │ │ │ ├── common.c │ │ │ ├── common.h │ │ │ ├── compat │ │ │ │ ├── Makemodule.am │ │ │ │ ├── compat.c │ │ │ │ ├── compat.h │ │ │ │ └── compat_str.c │ │ │ ├── config.h.in │ │ │ ├── control_generic.c │ │ │ ├── equalizer.c │ │ │ ├── genre.c │ │ │ ├── genre.h │ │ │ ├── getlopt.c │ │ │ ├── getlopt.h │ │ │ ├── httpget.c │ │ │ ├── httpget.h │ │ │ ├── intsym.h │ │ │ ├── libmpg123 │ │ │ │ ├── Makemodule.am │ │ │ │ ├── abi_align.h │ │ │ │ ├── check_neon.S │ │ │ │ ├── dct36_3dnow.S │ │ │ │ ├── dct36_3dnowext.S │ │ │ │ ├── dct36_avx.S │ │ │ │ ├── dct36_neon.S │ │ │ │ ├── dct36_neon64.S │ │ │ │ ├── dct36_sse.S │ │ │ │ ├── dct36_x86_64.S │ │ │ │ ├── dct64.c │ │ │ │ ├── dct64_3dnow.S │ │ │ │ ├── dct64_3dnowext.S │ │ │ │ ├── dct64_altivec.c │ │ │ │ ├── dct64_avx.S │ │ │ │ ├── dct64_avx_float.S │ │ │ │ ├── dct64_i386.c │ │ │ │ ├── dct64_i486.c │ │ │ │ ├── dct64_mmx.S │ │ │ │ ├── dct64_neon.S │ │ │ │ ├── dct64_neon64.S │ │ │ │ ├── dct64_neon64_float.S │ │ │ │ ├── dct64_neon_float.S │ │ │ │ ├── dct64_sse.S │ │ │ │ ├── dct64_sse_float.S │ │ │ │ ├── dct64_x86_64.S │ │ │ │ ├── dct64_x86_64_float.S │ │ │ │ ├── debug.h │ │ │ │ ├── decode.h │ │ │ │ ├── dither.c │ │ │ │ ├── dither.h │ │ │ │ ├── dither_impl.h │ │ │ │ ├── equalizer.c │ │ │ │ ├── equalizer_3dnow.S │ │ │ │ ├── feature.c │ │ │ │ ├── fmt123.h │ │ │ │ ├── format.c │ │ │ │ ├── frame.c │ │ │ │ ├── frame.h │ │ │ │ ├── gapless.h │ │ │ │ ├── getbits.h │ │ │ │ ├── getcpuflags.S │ │ │ │ ├── getcpuflags.h │ │ │ │ ├── getcpuflags_arm.c │ │ │ │ ├── getcpuflags_x86_64.S │ │ │ │ ├── huffman.h │ │ │ │ ├── icy.c │ │ │ │ ├── icy.h │ │ │ │ ├── icy2utf8.c │ │ │ │ ├── icy2utf8.h │ │ │ │ ├── id3.c │ │ │ │ ├── id3.h │ │ │ │ ├── index.c │ │ │ │ ├── index.h │ │ │ │ ├── l12_integer_tables.h │ │ │ │ ├── l2tables.h │ │ │ │ ├── l3_integer_tables.h │ │ │ │ ├── layer1.c │ │ │ │ ├── layer2.c │ │ │ │ ├── layer3.c │ │ │ │ ├── lfs_alias.c │ │ │ │ ├── lfs_wrap.c │ │ │ │ ├── libmpg123.c │ │ │ │ ├── mangle.h │ │ │ │ ├── mpeghead.h │ │ │ │ ├── mpg123.h.in │ │ │ │ ├── mpg123lib_intern.h │ │ │ │ ├── newhuffman.h │ │ │ │ ├── ntom.c │ │ │ │ ├── optimize.c │ │ │ │ ├── optimize.h │ │ │ │ ├── parse.c │ │ │ │ ├── parse.h │ │ │ │ ├── reader.h │ │ │ │ ├── readers.c │ │ │ │ ├── sample.h │ │ │ │ ├── stringbuf.c │ │ │ │ ├── synth.c │ │ │ │ ├── synth.h │ │ │ │ ├── synth_3dnow.S │ │ │ │ ├── synth_3dnowext.S │ │ │ │ ├── synth_8bit.c │ │ │ │ ├── synth_8bit.h │ │ │ │ ├── synth_altivec.c │ │ │ │ ├── synth_arm.S │ │ │ │ ├── synth_arm_accurate.S │ │ │ │ ├── synth_i486.c │ │ │ │ ├── synth_i586.S │ │ │ │ ├── synth_i586_dither.S │ │ │ │ ├── synth_mmx.S │ │ │ │ ├── synth_mono.h │ │ │ │ ├── synth_neon.S │ │ │ │ ├── synth_neon64.S │ │ │ │ ├── synth_neon64_accurate.S │ │ │ │ ├── synth_neon64_float.S │ │ │ │ ├── synth_neon64_s32.S │ │ │ │ ├── synth_neon_accurate.S │ │ │ │ ├── synth_neon_float.S │ │ │ │ ├── synth_neon_s32.S │ │ │ │ ├── synth_ntom.h │ │ │ │ ├── synth_real.c │ │ │ │ ├── synth_s32.c │ │ │ │ ├── synth_sse.S │ │ │ │ ├── synth_sse3d.h │ │ │ │ ├── synth_sse_accurate.S │ │ │ │ ├── synth_sse_float.S │ │ │ │ ├── synth_sse_s32.S │ │ │ │ ├── synth_stereo_avx.S │ │ │ │ ├── synth_stereo_avx_accurate.S │ │ │ │ ├── synth_stereo_avx_float.S │ │ │ │ ├── synth_stereo_avx_s32.S │ │ │ │ ├── synth_stereo_neon.S │ │ │ │ ├── synth_stereo_neon64.S │ │ │ │ ├── synth_stereo_neon64_accurate.S │ │ │ │ ├── synth_stereo_neon64_float.S │ │ │ │ ├── synth_stereo_neon64_s32.S │ │ │ │ ├── synth_stereo_neon_accurate.S │ │ │ │ ├── synth_stereo_neon_float.S │ │ │ │ ├── synth_stereo_neon_s32.S │ │ │ │ ├── synth_stereo_sse_accurate.S │ │ │ │ ├── synth_stereo_sse_float.S │ │ │ │ ├── synth_stereo_sse_s32.S │ │ │ │ ├── synth_stereo_x86_64.S │ │ │ │ ├── synth_stereo_x86_64_accurate.S │ │ │ │ ├── synth_stereo_x86_64_float.S │ │ │ │ ├── synth_stereo_x86_64_s32.S │ │ │ │ ├── synth_x86_64.S │ │ │ │ ├── synth_x86_64_accurate.S │ │ │ │ ├── synth_x86_64_float.S │ │ │ │ ├── synth_x86_64_s32.S │ │ │ │ ├── synths.h │ │ │ │ ├── tabinit.c │ │ │ │ ├── tabinit_mmx.S │ │ │ │ ├── testcpu.c │ │ │ │ └── true.h │ │ │ ├── libout123 │ │ │ │ ├── Makemodule.am │ │ │ │ ├── buffer.c │ │ │ │ ├── buffer.h │ │ │ │ ├── legacy_module.c │ │ │ │ ├── libout123.c │ │ │ │ ├── module.c │ │ │ │ ├── module.h │ │ │ │ ├── modules │ │ │ │ │ ├── Makemodule.am │ │ │ │ │ ├── aix.c │ │ │ │ │ ├── alib.c │ │ │ │ │ ├── alsa.c │ │ │ │ │ ├── arts.c │ │ │ │ │ ├── coreaudio.c │ │ │ │ │ ├── dummy.c │ │ │ │ │ ├── esd.c │ │ │ │ │ ├── hp.c │ │ │ │ │ ├── jack.c │ │ │ │ │ ├── mint.c │ │ │ │ │ ├── nas.c │ │ │ │ │ ├── openal.c │ │ │ │ │ ├── os2.c │ │ │ │ │ ├── oss.c │ │ │ │ │ ├── portaudio.c │ │ │ │ │ ├── pulse.c │ │ │ │ │ ├── qsa.c │ │ │ │ │ ├── sdl.c │ │ │ │ │ ├── sgi.c │ │ │ │ │ ├── sndio.c │ │ │ │ │ ├── sun.c │ │ │ │ │ ├── tinyalsa.c │ │ │ │ │ ├── win32.c │ │ │ │ │ └── win32_wasapi.c │ │ │ │ ├── out123.h.in │ │ │ │ ├── out123_int.h │ │ │ │ ├── sfifo.c │ │ │ │ ├── sfifo.h │ │ │ │ ├── stringlists.c │ │ │ │ ├── stringlists.h │ │ │ │ ├── wav.c │ │ │ │ ├── wav.h │ │ │ │ ├── wavhead.h │ │ │ │ ├── xfermem.c │ │ │ │ └── xfermem.h │ │ │ ├── local.c │ │ │ ├── local.h │ │ │ ├── metaprint.c │ │ │ ├── metaprint.h │ │ │ ├── mpg123-id3dump.c │ │ │ ├── mpg123-strip.c │ │ │ ├── mpg123-with-modules │ │ │ ├── mpg123.c │ │ │ ├── mpg123app.h │ │ │ ├── out123-with-modules │ │ │ ├── out123.c │ │ │ ├── playlist.c │ │ │ ├── playlist.h │ │ │ ├── resolver.c │ │ │ ├── resolver.h │ │ │ ├── streamdump.c │ │ │ ├── streamdump.h │ │ │ ├── sysutil.c │ │ │ ├── sysutil.h │ │ │ ├── term.c │ │ │ ├── term.h │ │ │ ├── tests │ │ │ │ ├── noise.c │ │ │ │ ├── plain_id3.c │ │ │ │ ├── seek_whence.c │ │ │ │ ├── testtext.h │ │ │ │ └── text.c │ │ │ ├── waves.c │ │ │ ├── waves.h │ │ │ ├── win32_net.c │ │ │ ├── win32_support.c │ │ │ └── win32_support.h │ │ └── windows-builds.sh │ ├── opus-1.0.3 │ │ ├── 001-opus.git-9c7193e4.patch │ │ ├── 002-opus.git-a88d8365.patch │ │ ├── 003-opus.git-25b27a9c.patch │ │ ├── 004-opus.git-3499e78b.patch │ │ ├── 005-opus.git-70a3d641.patch │ │ ├── 006-opus.git-6e961737.patch │ │ ├── 030-opus-1.0.3-decoder-only.diff │ │ ├── 050-opus-1.0.3-misc-port0.patch │ │ ├── 051-opus-1.0.3-misc-port1.patch │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── Makefile.am │ │ ├── Makefile.darwin │ │ ├── Makefile.unix │ │ ├── NEWS │ │ ├── README │ │ ├── celt │ │ │ ├── _kiss_fft_guts.h │ │ │ ├── arch.h │ │ │ ├── bands.c │ │ │ ├── bands.h │ │ │ ├── celt.c │ │ │ ├── celt.h │ │ │ ├── celt.vcxproj │ │ │ ├── celt.vcxproj.filters │ │ │ ├── celt_lpc.c │ │ │ ├── celt_lpc.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 │ │ │ ├── mfrngcod.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_float.h │ │ │ ├── tests │ │ │ │ ├── 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 │ │ ├── celt_headers.mk │ │ ├── celt_sources.mk │ │ ├── compile │ │ ├── config.guess │ │ ├── config.h.in │ │ ├── config.sub │ │ ├── configure.ac │ │ ├── depcomp │ │ ├── doc │ │ │ ├── Doxyfile.in │ │ │ ├── Makefile.am │ │ │ ├── customdoxygen.css │ │ │ ├── footer.html │ │ │ ├── header.html │ │ │ └── opus_logo.svg │ │ ├── include │ │ │ ├── opus.h │ │ │ ├── opus_custom.h │ │ │ ├── opus_defines.h │ │ │ ├── opus_multistream.h │ │ │ └── opus_types.h │ │ ├── install-sh │ │ ├── ltmain.sh │ │ ├── m4 │ │ │ ├── libtool.m4 │ │ │ ├── ltoptions.m4 │ │ │ ├── ltsugar.m4 │ │ │ ├── ltversion.m4 │ │ │ └── lt~obsolete.m4 │ │ ├── missing │ │ ├── opus-uninstalled.pc.in │ │ ├── opus.m4 │ │ ├── opus.pc.in │ │ ├── opus.sln │ │ ├── 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_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_del_dec.c │ │ │ ├── PLC.c │ │ │ ├── PLC.h │ │ │ ├── SigProc_FIX.h │ │ │ ├── VAD.c │ │ │ ├── VQ_WMat_EC.c │ │ │ ├── ana_filt_bank_1.c │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── noise_shape_analysis_FIX.c │ │ │ │ ├── pitch_analysis_core_FIX.c │ │ │ │ ├── prefilter_FIX.c │ │ │ │ ├── process_gains_FIX.c │ │ │ │ ├── regularize_correlations_FIX.c │ │ │ │ ├── residual_energy16_FIX.c │ │ │ │ ├── residual_energy_FIX.c │ │ │ │ ├── schur64_FIX.c │ │ │ │ ├── schur_FIX.c │ │ │ │ ├── silk_fixed.vcxproj │ │ │ │ ├── silk_fixed.vcxproj.filters │ │ │ │ ├── solve_LS_FIX.c │ │ │ │ ├── structs_FIX.h │ │ │ │ ├── vector_ops_FIX.c │ │ │ │ └── warped_autocorrelation_FIX.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 │ │ │ │ ├── levinsondurbin_FLP.c │ │ │ │ ├── main_FLP.h │ │ │ │ ├── noise_shape_analysis_FLP.c │ │ │ │ ├── pitch_analysis_core_FLP.c │ │ │ │ ├── prefilter_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 │ │ │ │ ├── silk_float.vcxproj │ │ │ │ ├── silk_float.vcxproj.filters │ │ │ │ ├── solve_LS_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 │ │ │ ├── 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 │ │ │ ├── silk_common.vcxproj │ │ │ ├── silk_common.vcxproj.filters │ │ │ ├── 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 │ │ │ ├── tuning_parameters.h │ │ │ └── typedef.h │ │ ├── silk_headers.mk │ │ ├── silk_sources.mk │ │ ├── src │ │ │ ├── opus.c │ │ │ ├── opus.vcxproj │ │ │ ├── opus.vcxproj.filters │ │ │ ├── opus_compare.c │ │ │ ├── opus_decoder.c │ │ │ ├── opus_demo.c │ │ │ ├── opus_demo.vcxproj │ │ │ ├── opus_demo.vcxproj.filters │ │ │ ├── opus_encoder.c │ │ │ ├── opus_multistream.c │ │ │ ├── opus_private.h │ │ │ ├── repacketizer.c │ │ │ └── repacketizer_demo.c │ │ ├── tests │ │ │ ├── run_vectors.sh │ │ │ ├── test_opus_api.c │ │ │ ├── test_opus_api.vcxproj │ │ │ ├── test_opus_api.vcxproj.filters │ │ │ ├── test_opus_common.h │ │ │ ├── test_opus_decode.c │ │ │ ├── test_opus_decode.vcxproj │ │ │ ├── test_opus_decode.vcxproj.filters │ │ │ ├── test_opus_encode.c │ │ │ ├── test_opus_encode.vcxproj │ │ │ └── test_opus_encode.vcxproj.filters │ │ ├── version.mk │ │ └── win32 │ │ │ └── genversion.bat │ └── opusfile-0.10 │ │ ├── 000-opusfile.git-67273ef.patch │ │ ├── 001-opusfile.git-567165a.patch │ │ ├── 003-opusfile.git-e8e3046.patch │ │ ├── 050-opusfile-misc-port0.patch │ │ ├── 051-opusfile-misc-port1.patch │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── Makefile.am │ │ ├── README.md │ │ ├── compile │ │ ├── config.guess │ │ ├── config.h.in │ │ ├── config.sub │ │ ├── configure.ac │ │ ├── depcomp │ │ ├── doc │ │ ├── Doxyfile.in │ │ └── 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 │ │ ├── Makefile.darwin │ │ ├── http.c │ │ ├── info.c │ │ ├── internal.c │ │ ├── internal.h │ │ ├── opusfile.c │ │ ├── stream.c │ │ ├── wincerts.c │ │ └── winerrno.h │ │ └── win32 │ │ └── VS2015 │ │ ├── opusfile.sln │ │ ├── opusfile.vcxproj │ │ ├── opusfile.vcxproj.filters │ │ ├── opusfile_example.vcxproj │ │ ├── opusfile_example.vcxproj.filters │ │ ├── seeking_example.vcxproj │ │ └── seeking_example.vcxproj.filters ├── gcc-fat.sh ├── load_aiff.c ├── load_aiff.h ├── load_voc.c ├── load_voc.h ├── mixer.c ├── mixer.h ├── music.c ├── music.h ├── music_cmd.c ├── music_cmd.h ├── music_flac.c ├── music_flac.h ├── music_fluidsynth.c ├── music_fluidsynth.h ├── music_mad.c ├── music_mad.h ├── music_mikmod.c ├── music_mikmod.h ├── music_modplug.c ├── music_modplug.h ├── music_mpg123.c ├── music_mpg123.h ├── music_nativemidi.c ├── music_nativemidi.h ├── music_ogg.c ├── music_ogg.h ├── music_opus.c ├── music_opus.h ├── music_timidity.c ├── music_timidity.h ├── music_wav.c ├── music_wav.h ├── native_midi │ ├── native_midi.h │ ├── native_midi_common.c │ ├── native_midi_common.h │ ├── native_midi_haiku.cpp │ ├── native_midi_mac.c │ ├── native_midi_macosx.c │ └── native_midi_win32.c ├── playmus.c ├── playwave.c ├── timidity │ ├── Android.mk │ ├── CHANGES │ ├── COPYING │ ├── FAQ │ ├── README │ ├── TODO │ ├── common.c │ ├── common.h │ ├── instrum.c │ ├── instrum.h │ ├── mix.c │ ├── mix.h │ ├── options.h │ ├── output.c │ ├── output.h │ ├── playmidi.c │ ├── playmidi.h │ ├── readmidi.c │ ├── readmidi.h │ ├── resample.c │ ├── resample.h │ ├── tables.c │ ├── tables.h │ ├── timidity.c │ └── timidity.h └── version.rc ├── src ├── .gitignore ├── Makefile.am ├── SDL_win32_main.c ├── d_dedicated.c ├── d_event.c ├── d_event.h ├── d_iwad.c ├── d_iwad.h ├── d_loop.c ├── d_loop.h ├── d_mode.c ├── d_mode.h ├── d_ticcmd.h ├── deh_defs.h ├── deh_io.c ├── deh_io.h ├── deh_main.c ├── deh_main.h ├── deh_mapping.c ├── deh_mapping.h ├── deh_str.c ├── deh_str.h ├── deh_text.c ├── doom-screensaver.desktop.in ├── doom.desktop.in ├── doomfeatures.h ├── doomkeys.h ├── doomtype.h ├── gusconf.c ├── gusconf.h ├── heretic.desktop.in ├── hexen.desktop.in ├── i_cdmus.c ├── i_cdmus.h ├── i_cpumode.c ├── i_cpumode.h ├── i_endoom.c ├── i_endoom.h ├── i_ffmpeg.c ├── i_ffmpeg.h ├── i_galaxyservices.c ├── i_galaxyservices.h ├── i_glscale.c ├── i_glscale.h ├── i_joystick.c ├── i_joystick.h ├── i_main.c ├── i_noappservices.c ├── i_noappservices.h ├── i_oplmusic.c ├── i_pcsound.c ├── i_platsystem.c ├── i_platsystem.h ├── i_scale.c ├── i_scale.h ├── i_sdlmusic.c ├── i_sdlsound.c ├── i_social.c ├── i_social.h ├── i_softkey.c ├── i_softkey.h ├── i_sound.c ├── i_sound.h ├── i_steamservices.c ├── i_steamservices.h ├── i_swap.h ├── i_switchservices.c ├── i_switchservices.h ├── i_system.c ├── i_system.h ├── i_theoraplay.c ├── i_theoraplay.h ├── i_timer.c ├── i_timer.h ├── i_video.c ├── i_video.h ├── i_videohr.c ├── i_videohr.h ├── i_ymfm.cpp ├── i_ymfm.h ├── i_ymfminter.c ├── icon.c ├── kerning.c ├── kerning.h ├── m_argv.c ├── m_argv.h ├── m_bbox.c ├── m_bbox.h ├── m_cheat.c ├── m_cheat.h ├── m_config.c ├── m_config.h ├── m_controls.c ├── m_controls.h ├── m_dllist.h ├── m_fixed.c ├── m_fixed.h ├── m_misc.c ├── m_misc.h ├── m_parser.c ├── m_parser.h ├── m_qstring.c ├── m_qstring.h ├── manifest.xml ├── memio.c ├── memio.h ├── midifile.c ├── midifile.h ├── mus2mid.c ├── mus2mid.h ├── net_client.c ├── net_client.h ├── net_common.c ├── net_common.h ├── net_dedicated.c ├── net_dedicated.h ├── net_defs.h ├── net_gui.c ├── net_gui.h ├── net_io.c ├── net_io.h ├── net_loop.c ├── net_loop.h ├── net_packet.c ├── net_packet.h ├── net_query.c ├── net_query.h ├── net_sdl.c ├── net_sdl.h ├── net_server.c ├── net_server.h ├── net_steamworks.c ├── net_steamworks.h ├── net_structrw.c ├── net_structrw.h ├── opengl │ ├── dgl.h │ ├── rb_automap.c │ ├── rb_automap.h │ ├── rb_bsp.c │ ├── rb_bsp.h │ ├── rb_clipper.c │ ├── rb_clipper.h │ ├── rb_common.h │ ├── rb_config.c │ ├── rb_config.h │ ├── rb_data.c │ ├── rb_data.h │ ├── rb_decal.c │ ├── rb_decal.h │ ├── rb_draw.c │ ├── rb_draw.h │ ├── rb_drawlist.c │ ├── rb_drawlist.h │ ├── rb_dynlights.c │ ├── rb_dynlights.h │ ├── rb_fbo.c │ ├── rb_fbo.h │ ├── rb_geom.c │ ├── rb_geom.h │ ├── rb_gl.c │ ├── rb_gl.h │ ├── rb_hudtext.c │ ├── rb_hudtext.h │ ├── rb_level.h │ ├── rb_lightgrid.c │ ├── rb_lightgrid.h │ ├── rb_local.h │ ├── rb_main.c │ ├── rb_main.h │ ├── rb_matrix.c │ ├── rb_matrix.h │ ├── rb_patch.c │ ├── rb_patch.h │ ├── rb_shader.c │ ├── rb_shader.h │ ├── rb_sky.c │ ├── rb_sky.h │ ├── rb_texture.c │ ├── rb_texture.h │ ├── rb_things.c │ ├── rb_things.h │ ├── rb_view.c │ ├── rb_view.h │ ├── rb_wallshade.c │ ├── rb_wallshade.h │ ├── rb_wipe.c │ └── rb_wipe.h ├── resource.rc.in ├── setup-res.rc.in ├── setup │ ├── .gitignore │ ├── Makefile.am │ ├── compatibility.c │ ├── compatibility.h │ ├── display.c │ ├── display.h │ ├── execute.c │ ├── execute.h │ ├── joystick.c │ ├── joystick.h │ ├── keyboard.c │ ├── keyboard.h │ ├── mainmenu.c │ ├── mode.c │ ├── mode.h │ ├── mouse.c │ ├── mouse.h │ ├── multiplayer.c │ ├── multiplayer.h │ ├── setup-manifest.xml.in │ ├── setup.desktop.in │ ├── setup_icon.c │ ├── sound.c │ ├── sound.h │ ├── txt_joyaxis.c │ ├── txt_joyaxis.h │ ├── txt_joybinput.c │ ├── txt_joybinput.h │ ├── txt_keyinput.c │ ├── txt_keyinput.h │ ├── txt_mouseinput.c │ └── txt_mouseinput.h ├── sha1.c ├── sha1.h ├── strife.desktop.in ├── strife │ ├── .gitignore │ ├── Makefile.am │ ├── am_map.c │ ├── am_map.h │ ├── d_englsh.h │ ├── d_items.c │ ├── d_items.h │ ├── d_main.c │ ├── d_main.h │ ├── d_net.c │ ├── d_player.h │ ├── d_textur.h │ ├── d_think.h │ ├── deh_ammo.c │ ├── deh_cheat.c │ ├── deh_frame.c │ ├── deh_misc.c │ ├── deh_misc.h │ ├── deh_ptr.c │ ├── deh_sound.c │ ├── deh_strife.c │ ├── deh_thing.c │ ├── deh_weapon.c │ ├── doomdata.h │ ├── doomdef.c │ ├── doomdef.h │ ├── doomstat.c │ ├── doomstat.h │ ├── dstrings.c │ ├── dstrings.h │ ├── f_finale.c │ ├── f_finale.h │ ├── f_wipe.c │ ├── f_wipe.h │ ├── fe_characters.c │ ├── fe_characters.h │ ├── fe_commands.c │ ├── fe_commands.h │ ├── fe_frontend.c │ ├── fe_frontend.h │ ├── fe_gamepad.c │ ├── fe_gamepad.h │ ├── fe_graphics.c │ ├── fe_graphics.h │ ├── fe_menuengine.c │ ├── fe_menuengine.h │ ├── fe_menus.c │ ├── fe_menus.h │ ├── fe_mouse.c │ ├── fe_mouse.h │ ├── fe_multiplayer.c │ ├── fe_multiplayer.h │ ├── g_game.c │ ├── g_game.h │ ├── hu_lib.c │ ├── hu_lib.h │ ├── hu_stuff.c │ ├── hu_stuff.h │ ├── info.c │ ├── info.h │ ├── m_help.c │ ├── m_help.h │ ├── m_menu.c │ ├── m_menu.h │ ├── m_random.c │ ├── m_random.h │ ├── m_saves.c │ ├── m_saves.h │ ├── p_ceilng.c │ ├── p_dialog.c │ ├── p_dialog.h │ ├── p_doors.c │ ├── p_enemy.c │ ├── p_floor.c │ ├── p_inter.c │ ├── p_inter.h │ ├── p_lights.c │ ├── p_local.h │ ├── p_locations.c │ ├── p_locations.h │ ├── p_map.c │ ├── p_maputl.c │ ├── p_mobj.c │ ├── p_mobj.h │ ├── p_plats.c │ ├── p_pspr.c │ ├── p_pspr.h │ ├── p_saveg.c │ ├── p_saveg.h │ ├── p_setup.c │ ├── p_setup.h │ ├── p_sight.c │ ├── p_spec.c │ ├── p_spec.h │ ├── p_switch.c │ ├── p_telept.c │ ├── p_tick.c │ ├── p_tick.h │ ├── p_user.c │ ├── r_bsp.c │ ├── r_bsp.h │ ├── r_data.c │ ├── r_data.h │ ├── r_defs.h │ ├── r_draw.c │ ├── r_draw.h │ ├── r_local.h │ ├── r_main.c │ ├── r_main.h │ ├── r_plane.c │ ├── r_plane.h │ ├── r_segs.c │ ├── r_segs.h │ ├── r_sky.c │ ├── r_sky.h │ ├── r_state.h │ ├── r_things.c │ ├── r_things.h │ ├── s_sound.c │ ├── s_sound.h │ ├── sounds.c │ ├── sounds.h │ ├── st_lib.c │ ├── st_lib.h │ ├── st_stuff.c │ ├── st_stuff.h │ ├── wi_stuff.c │ └── wi_stuff.h ├── tables.c ├── tables.h ├── v_patch.h ├── v_video.c ├── v_video.h ├── w_checksum.c ├── w_checksum.h ├── w_file.c ├── w_file.h ├── w_file_posix.c ├── w_file_stdc.c ├── w_file_win32.c ├── w_main.c ├── w_main.h ├── w_merge.c ├── w_merge.h ├── w_wad.c ├── w_wad.h ├── z_native.c ├── z_zone.c └── z_zone.h ├── steamprepare_osx.sh ├── strife-ve.sh ├── textscreen ├── .gitignore ├── Doxyfile ├── Makefile.am ├── examples │ ├── .gitignore │ ├── Makefile.am │ ├── calculator.c │ └── guitest.c ├── textscreen.h ├── txt_button.c ├── txt_button.h ├── txt_checkbox.c ├── txt_checkbox.h ├── txt_desktop.c ├── txt_desktop.h ├── txt_dropdown.c ├── txt_dropdown.h ├── txt_fileselect.c ├── txt_fileselect.h ├── txt_font.h ├── txt_gui.c ├── txt_gui.h ├── txt_inputbox.c ├── txt_inputbox.h ├── txt_io.c ├── txt_io.h ├── txt_label.c ├── txt_label.h ├── txt_largefont.h ├── txt_main.h ├── txt_radiobutton.c ├── txt_radiobutton.h ├── txt_scrollpane.c ├── txt_scrollpane.h ├── txt_sdl.c ├── txt_sdl.h ├── txt_separator.c ├── txt_separator.h ├── txt_smallfont.h ├── txt_spinctrl.c ├── txt_spinctrl.h ├── txt_strut.c ├── txt_strut.h ├── txt_table.c ├── txt_table.h ├── txt_utf8.c ├── txt_utf8.h ├── txt_widget.c ├── txt_widget.h ├── txt_window.c ├── txt_window.h ├── txt_window_action.c └── txt_window_action.h ├── vc2012 ├── .gitignore ├── doom.vcproj ├── heretic.vcproj ├── hexen.vcproj ├── inttypes.h ├── libopl.vcproj ├── libopl.vcxproj ├── libopl.vcxproj.filters ├── libpcsound.vcproj ├── libpcsound.vcxproj ├── libpcsound.vcxproj.filters ├── libtextscreen.vcproj ├── libtextscreen.vcxproj ├── libtextscreen.vcxproj.filters ├── server.vcproj ├── server.vcxproj ├── server.vcxproj.filters ├── setup.vcproj ├── setup.vcxproj ├── setup.vcxproj.filters ├── stdint.h ├── strife.vcproj ├── strife.vcxproj ├── strife.vcxproj.filters ├── win32.rc ├── win_debug.c ├── win_opendir.c └── win_opendir.h ├── xcode ├── Chocolate │ ├── Chocolate │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── strife_128-1.png │ │ │ │ ├── strife_128.png │ │ │ │ ├── strife_16.png │ │ │ │ ├── strife_256-1.png │ │ │ │ ├── strife_256.png │ │ │ │ ├── strife_32-1.png │ │ │ │ ├── strife_32.png │ │ │ │ ├── strife_512-1.png │ │ │ │ ├── strife_512-2.png │ │ │ │ └── strife_512.png │ │ ├── Strife-VE-Info.plist │ │ ├── Strife-VE-Prefix.pch │ │ └── en.lproj │ │ │ ├── Credits.rtf │ │ │ └── InfoPlist.strings │ ├── Frameworks │ │ ├── GOGService.framework │ │ │ ├── GOGService │ │ │ ├── Resources │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── GOGService │ │ │ │ ├── Resources │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── en.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── libGalaxy.dylib │ │ │ │ └── libGalaxyPeer.dylib │ │ │ │ └── Current │ │ ├── SDL.framework │ │ │ ├── Headers │ │ │ ├── Resources │ │ │ ├── SDL │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ ├── SDL.h │ │ │ │ │ ├── SDL_active.h │ │ │ │ │ ├── SDL_audio.h │ │ │ │ │ ├── SDL_byteorder.h │ │ │ │ │ ├── SDL_cdrom.h │ │ │ │ │ ├── SDL_config.h │ │ │ │ │ ├── SDL_config_dreamcast.h │ │ │ │ │ ├── SDL_config_macos.h │ │ │ │ │ ├── SDL_config_macosx.h │ │ │ │ │ ├── SDL_config_os2.h │ │ │ │ │ ├── SDL_config_win32.h │ │ │ │ │ ├── SDL_copying.h │ │ │ │ │ ├── SDL_cpuinfo.h │ │ │ │ │ ├── SDL_endian.h │ │ │ │ │ ├── SDL_error.h │ │ │ │ │ ├── SDL_events.h │ │ │ │ │ ├── SDL_getenv.h │ │ │ │ │ ├── SDL_joystick.h │ │ │ │ │ ├── SDL_keyboard.h │ │ │ │ │ ├── SDL_keysym.h │ │ │ │ │ ├── SDL_loadso.h │ │ │ │ │ ├── SDL_main.h │ │ │ │ │ ├── SDL_mouse.h │ │ │ │ │ ├── SDL_mutex.h │ │ │ │ │ ├── SDL_name.h │ │ │ │ │ ├── SDL_opengl.h │ │ │ │ │ ├── SDL_platform.h │ │ │ │ │ ├── SDL_quit.h │ │ │ │ │ ├── SDL_rwops.h │ │ │ │ │ ├── SDL_stdinc.h │ │ │ │ │ ├── SDL_syswm.h │ │ │ │ │ ├── SDL_thread.h │ │ │ │ │ ├── SDL_timer.h │ │ │ │ │ ├── SDL_types.h │ │ │ │ │ ├── SDL_version.h │ │ │ │ │ ├── SDL_video.h │ │ │ │ │ ├── begin_code.h │ │ │ │ │ └── close_code.h │ │ │ │ ├── Resources │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── SDLMain.nib │ │ │ │ │ │ └── objects.nib │ │ │ │ └── SDL │ │ │ │ └── Current │ │ ├── SDL_mixer.framework │ │ │ ├── Frameworks │ │ │ ├── Headers │ │ │ ├── Resources │ │ │ ├── SDL_mixer │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Frameworks │ │ │ │ │ ├── FLAC.framework │ │ │ │ │ │ ├── FLAC │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── LICENSE.FLAC.txt │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ ├── FLAC │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ └── FLAC │ │ │ │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ │ │ │ ├── assert.h │ │ │ │ │ │ │ │ │ ├── callback.h │ │ │ │ │ │ │ │ │ ├── export.h │ │ │ │ │ │ │ │ │ ├── format.h │ │ │ │ │ │ │ │ │ ├── metadata.h │ │ │ │ │ │ │ │ │ ├── ordinals.h │ │ │ │ │ │ │ │ │ ├── stream_decoder.h │ │ │ │ │ │ │ │ │ └── stream_encoder.h │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── Ogg.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── LICENSE.ogg-vorbis.txt │ │ │ │ │ │ ├── Ogg │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ ├── ogg.h │ │ │ │ │ │ │ │ └── os_types.h │ │ │ │ │ │ │ ├── Ogg │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ │ └── Current │ │ │ │ │ ├── Vorbis.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── LICENSE.ogg-vorbis.txt │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ │ ├── codec.h │ │ │ │ │ │ │ │ │ ├── vorbisenc.h │ │ │ │ │ │ │ │ │ └── vorbisfile.h │ │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ │ │ └── Vorbis │ │ │ │ │ │ │ └── Current │ │ │ │ │ │ └── Vorbis │ │ │ │ │ ├── mikmod.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── LICENSE.mikmod.txt │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── Versions │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ │ └── mikmod.h │ │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ │ │ └── mikmod │ │ │ │ │ │ │ └── Current │ │ │ │ │ │ └── mikmod │ │ │ │ │ └── smpeg.framework │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── LICENSE.smpeg.txt │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── Versions │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ ├── Headers │ │ │ │ │ │ │ │ ├── MPEG.h │ │ │ │ │ │ │ │ ├── MPEGaction.h │ │ │ │ │ │ │ │ ├── MPEGaudio.h │ │ │ │ │ │ │ │ ├── MPEGerror.h │ │ │ │ │ │ │ │ ├── MPEGfilter.h │ │ │ │ │ │ │ │ ├── MPEGlist.h │ │ │ │ │ │ │ │ ├── MPEGring.h │ │ │ │ │ │ │ │ ├── MPEGstream.h │ │ │ │ │ │ │ │ ├── MPEGsystem.h │ │ │ │ │ │ │ │ ├── MPEGvideo.h │ │ │ │ │ │ │ │ └── smpeg.h │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ │ └── Info.plist │ │ │ │ │ │ │ └── smpeg │ │ │ │ │ │ └── Current │ │ │ │ │ │ └── smpeg │ │ │ │ ├── Headers │ │ │ │ │ └── SDL_mixer.h │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ └── SDL_mixer │ │ │ │ └── Current │ │ ├── SDL_net.framework │ │ │ ├── Headers │ │ │ ├── Resources │ │ │ ├── SDL_net │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ └── SDL_net.h │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ └── SDL_net │ │ │ │ └── Current │ │ └── SteamService.framework │ │ │ ├── Headers │ │ │ ├── Resources │ │ │ ├── SteamService │ │ │ └── Versions │ │ │ ├── A │ │ │ ├── Headers │ │ │ │ └── steamService.h │ │ │ ├── Resources │ │ │ │ ├── Info.plist │ │ │ │ └── en.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ ├── SteamService │ │ │ └── libsteam_api.dylib │ │ │ └── Current │ ├── SDLMain.h │ ├── SDLMain.m │ └── Strife-VE.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── Strife-VE.xccheckout │ │ └── xcuserdata │ │ │ └── svillarreal.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ └── svillarreal.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ ├── Strife-VE.xcscheme │ │ └── xcschememanagement.plist ├── libopl │ └── libopl.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── svillarreal.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ └── xcuserdata │ │ └── svillarreal.xcuserdatad │ │ └── xcschemes │ │ ├── libopl.xcscheme │ │ └── xcschememanagement.plist ├── libpng │ ├── LICENSE.md │ ├── README.md │ └── xcode │ │ ├── English.lproj │ │ └── InfoPlist.strings │ │ ├── Info.plist │ │ └── libpng.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── libpng.xccheckout │ │ └── xcuserdata │ │ │ └── svillarreal.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ └── xcuserdata │ │ └── svillarreal.xcuserdatad │ │ └── xcschemes │ │ ├── ios-static-libpng.xcscheme │ │ ├── mac-libpng.xcscheme │ │ ├── mac-static-libpng.xcscheme │ │ └── xcschememanagement.plist ├── pcsound │ └── pcsound.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── svillarreal.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ └── xcuserdata │ │ └── svillarreal.xcuserdatad │ │ └── xcschemes │ │ ├── pcsound.xcscheme │ │ └── xcschememanagement.plist └── textscreen │ └── textscreen.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── svillarreal.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ └── svillarreal.xcuserdatad │ └── xcschemes │ ├── textscreen.xcscheme │ └── xcschememanagement.plist ├── ymfmidi ├── .gitignore ├── .gitmodules ├── COPYING.txt ├── GENMIDI.wopl ├── README.md ├── src │ ├── console.cpp │ ├── console.h │ ├── main.cpp │ ├── patches.cpp │ ├── patches.h │ ├── patchnames.cpp │ ├── player.cpp │ ├── player.h │ ├── sequence.cpp │ ├── sequence.h │ ├── sequence_hmi.cpp │ ├── sequence_hmi.h │ ├── sequence_hmp.cpp │ ├── sequence_hmp.h │ ├── sequence_mid.cpp │ ├── sequence_mid.h │ ├── sequence_mus.cpp │ ├── sequence_mus.h │ ├── sequence_xmi.cpp │ └── sequence_xmi.h └── ymfm │ ├── .editorconfig │ ├── .gitignore │ ├── GeneralInfo.md │ ├── LICENSE │ ├── README.md │ ├── examples │ └── vgmrender │ │ ├── .gitignore │ │ ├── em_inflate.cpp │ │ ├── em_inflate.h │ │ └── vgmrender.cpp │ └── src │ ├── ymfm.h │ ├── ymfm_adpcm.cpp │ ├── ymfm_adpcm.h │ ├── ymfm_fm.h │ ├── ymfm_fm.ipp │ ├── ymfm_opl.cpp │ ├── ymfm_opl.h │ ├── ymfm_opm.cpp │ ├── ymfm_opm.h │ ├── ymfm_opn.cpp │ ├── ymfm_opn.h │ ├── ymfm_opq.cpp │ ├── ymfm_opq.h │ ├── ymfm_opz.cpp │ ├── ymfm_opz.h │ ├── ymfm_pcm.cpp │ ├── ymfm_pcm.h │ ├── ymfm_ssg.cpp │ └── ymfm_ssg.h └── zlib ├── CMakeLists.txt ├── ChangeLog ├── FAQ ├── INDEX ├── README ├── adler32.c ├── amiga ├── Makefile.pup └── Makefile.sas ├── as400 ├── bndsrc ├── compile.clp ├── readme.txt └── zlib.inc ├── compress.c ├── 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 ├── amd64 │ └── amd64-match.S ├── asm686 │ ├── README.686 │ └── match.S ├── blast │ ├── 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 ├── inflate86 │ ├── inffas86.c │ └── inffast.S ├── iostream │ ├── test.cpp │ ├── zfstream.cpp │ └── zfstream.h ├── iostream2 │ ├── zstream.h │ └── zstream_test.cpp ├── iostream3 │ ├── README │ ├── TODO │ ├── test.cc │ ├── zfstream.cc │ └── zfstream.h ├── masmx64 │ ├── bld_ml64.bat │ ├── gvmat64.asm │ ├── inffas8664.c │ ├── inffasx64.asm │ └── readme.txt ├── masmx86 │ ├── bld_ml32.bat │ ├── inffas32.asm │ ├── match686.asm │ └── readme.txt ├── minizip │ ├── 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 │ ├── 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 │ ├── README │ ├── puff.c │ ├── puff.h │ ├── pufftest.c │ └── zeros.raw ├── testzlib │ ├── testzlib.c │ └── testzlib.txt ├── untgz │ ├── Makefile.msc │ └── untgz.c └── vstudio │ ├── readme.txt │ ├── vc10 │ ├── miniunz.vcxproj │ ├── miniunz.vcxproj.filters │ ├── miniunz.vcxproj.user │ ├── minizip.vcxproj │ ├── minizip.vcxproj.filters │ ├── minizip.vcxproj.user │ ├── testzlib.vcxproj │ ├── testzlib.vcxproj.filters │ ├── testzlib.vcxproj.user │ ├── testzlibdll.vcxproj │ ├── testzlibdll.vcxproj.filters │ ├── testzlibdll.vcxproj.user │ ├── zlib.rc │ ├── zlibstat.vcxproj │ ├── zlibstat.vcxproj.filters │ ├── zlibstat.vcxproj.user │ ├── zlibvc.def │ ├── zlibvc.sln │ ├── zlibvc.vcxproj │ ├── zlibvc.vcxproj.filters │ └── zlibvc.vcxproj.user │ └── 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 ├── 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 ├── zlib_how.html ├── zpipe.c └── zran.c ├── 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 └── README ├── old ├── Makefile.emx ├── Makefile.riscos ├── README ├── descrip.mms ├── os2 │ ├── Makefile.os2 │ └── zlib.def └── visual-basic.txt ├── qnx └── package.qpg ├── test ├── example.c ├── infcover.c └── minigzip.c ├── treebuild.xml ├── trees.c ├── trees.h ├── uncompr.c ├── watcom ├── watcom_f.mak └── watcom_l.mak ├── win32 ├── DLL_FAQ.txt ├── Makefile.bor ├── Makefile.gcc ├── Makefile.msc ├── README-WIN32.txt ├── VisualC.txt ├── zlib.def └── zlib1.rc ├── zconf.h ├── zconf.h.cmakein ├── zconf.h.in ├── zlib.3 ├── zlib.3.pdf ├── zlib.h ├── zlib.map ├── zlib.pc.cmakein ├── zlib.pc.in ├── zlib2ansi ├── zutil.c └── zutil.h /COPYING-LGPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/COPYING-LGPL.txt -------------------------------------------------------------------------------- /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/COPYING.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/README.md -------------------------------------------------------------------------------- /SRCLICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/SRCLICENSE.txt -------------------------------------------------------------------------------- /strife-ve-src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/.gitignore -------------------------------------------------------------------------------- /strife-ve-src/.lvimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/.lvimrc -------------------------------------------------------------------------------- /strife-ve-src/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/AUTHORS -------------------------------------------------------------------------------- /strife-ve-src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/CMakeLists.txt -------------------------------------------------------------------------------- /strife-ve-src/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/COPYING -------------------------------------------------------------------------------- /strife-ve-src/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/ChangeLog -------------------------------------------------------------------------------- /strife-ve-src/HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/HACKING -------------------------------------------------------------------------------- /strife-ve-src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/Makefile.am -------------------------------------------------------------------------------- /strife-ve-src/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/NEWS -------------------------------------------------------------------------------- /strife-ve-src/NOT-BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/NOT-BUGS -------------------------------------------------------------------------------- /strife-ve-src/PHILOSOPHY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/PHILOSOPHY -------------------------------------------------------------------------------- /strife-ve-src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/README -------------------------------------------------------------------------------- /strife-ve-src/README.Music: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/README.Music -------------------------------------------------------------------------------- /strife-ve-src/README.Strife: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/README.Strife -------------------------------------------------------------------------------- /strife-ve-src/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/TODO -------------------------------------------------------------------------------- /strife-ve-src/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/acinclude.m4 -------------------------------------------------------------------------------- /strife-ve-src/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/autogen.sh -------------------------------------------------------------------------------- /strife-ve-src/build_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/build_linux.sh -------------------------------------------------------------------------------- /strife-ve-src/build_linux_deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/build_linux_deps.sh -------------------------------------------------------------------------------- /strife-ve-src/build_linux_steam.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/build_linux_steam.sh -------------------------------------------------------------------------------- /strife-ve-src/cmake/FindFFMPEG.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/cmake/FindFFMPEG.cmake -------------------------------------------------------------------------------- /strife-ve-src/cmake/FindOGG.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/cmake/FindOGG.cmake -------------------------------------------------------------------------------- /strife-ve-src/cmake/FindSDL2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/cmake/FindSDL2.cmake -------------------------------------------------------------------------------- /strife-ve-src/cmake/FindTHEORA.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/cmake/FindTHEORA.cmake -------------------------------------------------------------------------------- /strife-ve-src/cmake/FindVORBIS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/cmake/FindVORBIS.cmake -------------------------------------------------------------------------------- /strife-ve-src/cmake/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/cmake/config.h.in -------------------------------------------------------------------------------- /strife-ve-src/codeblocks/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/codeblocks/README -------------------------------------------------------------------------------- /strife-ve-src/codeblocks/game-res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/codeblocks/game-res.rc -------------------------------------------------------------------------------- /strife-ve-src/codeblocks/libopl.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/codeblocks/libopl.cbp -------------------------------------------------------------------------------- /strife-ve-src/codeblocks/server.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/codeblocks/server.cbp -------------------------------------------------------------------------------- /strife-ve-src/codeblocks/setup-res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/codeblocks/setup-res.rc -------------------------------------------------------------------------------- /strife-ve-src/codeblocks/setup.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/codeblocks/setup.cbp -------------------------------------------------------------------------------- /strife-ve-src/codeblocks/strife.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/codeblocks/strife.cbp -------------------------------------------------------------------------------- /strife-ve-src/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/configure.ac -------------------------------------------------------------------------------- /strife-ve-src/data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/data/.gitignore -------------------------------------------------------------------------------- /strife-ve-src/data/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/data/Makefile.am -------------------------------------------------------------------------------- /strife-ve-src/data/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/data/README -------------------------------------------------------------------------------- /strife-ve-src/data/convert-icon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/data/convert-icon -------------------------------------------------------------------------------- /strife-ve-src/data/doom.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/data/doom.ico -------------------------------------------------------------------------------- /strife-ve-src/data/doom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/data/doom.png -------------------------------------------------------------------------------- /strife-ve-src/data/doom8.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/data/doom8.ico -------------------------------------------------------------------------------- /strife-ve-src/data/setup.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/data/setup.ico -------------------------------------------------------------------------------- /strife-ve-src/data/setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/data/setup.png -------------------------------------------------------------------------------- /strife-ve-src/data/setup8.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/data/setup8.ico -------------------------------------------------------------------------------- /strife-ve-src/libogg/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libogg/AUTHORS -------------------------------------------------------------------------------- /strife-ve-src/libogg/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libogg/CHANGES -------------------------------------------------------------------------------- /strife-ve-src/libogg/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libogg/COPYING -------------------------------------------------------------------------------- /strife-ve-src/libogg/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libogg/Makefile.am -------------------------------------------------------------------------------- /strife-ve-src/libogg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libogg/README.md -------------------------------------------------------------------------------- /strife-ve-src/libogg/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libogg/compile -------------------------------------------------------------------------------- /strife-ve-src/libogg/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libogg/config.guess -------------------------------------------------------------------------------- /strife-ve-src/libogg/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libogg/config.h.in -------------------------------------------------------------------------------- /strife-ve-src/libogg/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libogg/config.sub -------------------------------------------------------------------------------- /strife-ve-src/libogg/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libogg/configure.ac -------------------------------------------------------------------------------- /strife-ve-src/libogg/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libogg/depcomp -------------------------------------------------------------------------------- /strife-ve-src/libogg/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libogg/doc/Makefile.am -------------------------------------------------------------------------------- /strife-ve-src/libogg/doc/framing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libogg/doc/framing.html -------------------------------------------------------------------------------- /strife-ve-src/libogg/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libogg/doc/index.html -------------------------------------------------------------------------------- /strife-ve-src/libogg/doc/packets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libogg/doc/packets.png -------------------------------------------------------------------------------- /strife-ve-src/libogg/doc/pages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libogg/doc/pages.png -------------------------------------------------------------------------------- /strife-ve-src/libogg/doc/rfc3533.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libogg/doc/rfc3533.txt -------------------------------------------------------------------------------- /strife-ve-src/libogg/doc/rfc5334.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libogg/doc/rfc5334.txt -------------------------------------------------------------------------------- /strife-ve-src/libogg/doc/stream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libogg/doc/stream.png -------------------------------------------------------------------------------- /strife-ve-src/libogg/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libogg/install-sh -------------------------------------------------------------------------------- /strife-ve-src/libogg/libogg.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libogg/libogg.spec -------------------------------------------------------------------------------- /strife-ve-src/libogg/libogg.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libogg/libogg.spec.in -------------------------------------------------------------------------------- /strife-ve-src/libogg/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libogg/ltmain.sh -------------------------------------------------------------------------------- /strife-ve-src/libogg/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libogg/missing -------------------------------------------------------------------------------- /strife-ve-src/libogg/ogg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libogg/ogg.m4 -------------------------------------------------------------------------------- /strife-ve-src/libogg/ogg.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libogg/ogg.pc.in -------------------------------------------------------------------------------- /strife-ve-src/libogg/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libogg/src/Makefile.am -------------------------------------------------------------------------------- /strife-ve-src/libogg/src/bitwise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libogg/src/bitwise.c -------------------------------------------------------------------------------- /strife-ve-src/libogg/src/framing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libogg/src/framing.c -------------------------------------------------------------------------------- /strife-ve-src/libogg/win32/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libogg/win32/.gitignore -------------------------------------------------------------------------------- /strife-ve-src/libogg/win32/ogg.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libogg/win32/ogg.def -------------------------------------------------------------------------------- /strife-ve-src/libtheora/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libtheora/AUTHORS -------------------------------------------------------------------------------- /strife-ve-src/libtheora/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libtheora/CHANGES -------------------------------------------------------------------------------- /strife-ve-src/libtheora/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libtheora/COPYING -------------------------------------------------------------------------------- /strife-ve-src/libtheora/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libtheora/LICENSE -------------------------------------------------------------------------------- /strife-ve-src/libtheora/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libtheora/Makefile.am -------------------------------------------------------------------------------- /strife-ve-src/libtheora/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libtheora/README -------------------------------------------------------------------------------- /strife-ve-src/libtheora/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libtheora/SConstruct -------------------------------------------------------------------------------- /strife-ve-src/libtheora/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libtheora/autogen.sh -------------------------------------------------------------------------------- /strife-ve-src/libtheora/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libtheora/compile -------------------------------------------------------------------------------- /strife-ve-src/libtheora/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libtheora/config.guess -------------------------------------------------------------------------------- /strife-ve-src/libtheora/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libtheora/config.h.in -------------------------------------------------------------------------------- /strife-ve-src/libtheora/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libtheora/config.sub -------------------------------------------------------------------------------- /strife-ve-src/libtheora/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libtheora/configure.ac -------------------------------------------------------------------------------- /strife-ve-src/libtheora/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libtheora/depcomp -------------------------------------------------------------------------------- /strife-ve-src/libtheora/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libtheora/install-sh -------------------------------------------------------------------------------- /strife-ve-src/libtheora/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libtheora/ltmain.sh -------------------------------------------------------------------------------- /strife-ve-src/libtheora/m4/ogg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libtheora/m4/ogg.m4 -------------------------------------------------------------------------------- /strife-ve-src/libtheora/m4/pkg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libtheora/m4/pkg.m4 -------------------------------------------------------------------------------- /strife-ve-src/libtheora/m4/sdl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libtheora/m4/sdl.m4 -------------------------------------------------------------------------------- /strife-ve-src/libtheora/m4/vorbis.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libtheora/m4/vorbis.m4 -------------------------------------------------------------------------------- /strife-ve-src/libtheora/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libtheora/missing -------------------------------------------------------------------------------- /strife-ve-src/libtheora/mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libtheora/mkinstalldirs -------------------------------------------------------------------------------- /strife-ve-src/libtheora/tests/noop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libtheora/tests/noop.c -------------------------------------------------------------------------------- /strife-ve-src/libtheora/tests/tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libtheora/tests/tests.h -------------------------------------------------------------------------------- /strife-ve-src/libtheora/theora.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libtheora/theora.pc.in -------------------------------------------------------------------------------- /strife-ve-src/libtheora/win32/experimental/wincompat/README.txt: -------------------------------------------------------------------------------- 1 | GetOpt routines ported from BSD-licensed sources, see comments. -------------------------------------------------------------------------------- /strife-ve-src/libtheora/win32/experimental/wincompat/unistd.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/AUTHORS -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/CHANGES -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/COPYING -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/Makefile.am -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/autogen.sh -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/compile -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/config.guess -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/config.h.in -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/config.sub -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/configure.ac -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/depcomp -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/install-sh -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/ltmain.sh -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/m4/libtool.m4 -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/m4/ltsugar.m4 -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/m4/ogg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/m4/ogg.m4 -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/m4/pkg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/m4/pkg.m4 -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/missing -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/test/test.c -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/test/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/test/util.c -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/test/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/test/util.h -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/vorbis.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/vorbis.m4 -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/vorbis.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/vorbis.pc.in -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/vq/16.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/vq/16.vqs -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/vq/16u.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/vq/16u.vqs -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/vq/44c-1.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/vq/44c-1.vqs -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/vq/44c0.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/vq/44c0.vqs -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/vq/44c1.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/vq/44c1.vqs -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/vq/44c2.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/vq/44c2.vqs -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/vq/44c3.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/vq/44c3.vqs -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/vq/44c4.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/vq/44c4.vqs -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/vq/44c5.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/vq/44c5.vqs -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/vq/44c6.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/vq/44c6.vqs -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/vq/44c7.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/vq/44c7.vqs -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/vq/44c8.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/vq/44c8.vqs -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/vq/44c9.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/vq/44c9.vqs -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/vq/44p-1.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/vq/44p-1.vqs -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/vq/44p0.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/vq/44p0.vqs -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/vq/44p1.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/vq/44p1.vqs -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/vq/44p2.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/vq/44p2.vqs -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/vq/44p3.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/vq/44p3.vqs -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/vq/44p4.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/vq/44p4.vqs -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/vq/44p5.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/vq/44p5.vqs -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/vq/44p6.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/vq/44p6.vqs -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/vq/44p7.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/vq/44p7.vqs -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/vq/44p8.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/vq/44p8.vqs -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/vq/44p9.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/vq/44p9.vqs -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/vq/44u0.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/vq/44u0.vqs -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/vq/44u1.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/vq/44u1.vqs -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/vq/44u2.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/vq/44u2.vqs -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/vq/44u3.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/vq/44u3.vqs -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/vq/44u4.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/vq/44u4.vqs -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/vq/44u5.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/vq/44u5.vqs -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/vq/44u6.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/vq/44u6.vqs -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/vq/44u7.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/vq/44u7.vqs -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/vq/44u8.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/vq/44u8.vqs -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/vq/44u9.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/vq/44u9.vqs -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/vq/8.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/vq/8.vqs -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/vq/8u.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/vq/8u.vqs -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/vq/bookutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/vq/bookutil.c -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/vq/bookutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/vq/bookutil.h -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/vq/metrics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/vq/metrics.c -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/vq/vqgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/vq/vqgen.c -------------------------------------------------------------------------------- /strife-ve-src/libvorbis/vq/vqgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/libvorbis/vq/vqgen.h -------------------------------------------------------------------------------- /strife-ve-src/lpng1612/ANNOUNCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/lpng1612/ANNOUNCE -------------------------------------------------------------------------------- /strife-ve-src/lpng1612/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/lpng1612/CHANGES -------------------------------------------------------------------------------- /strife-ve-src/lpng1612/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/lpng1612/CMakeLists.txt -------------------------------------------------------------------------------- /strife-ve-src/lpng1612/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/lpng1612/LICENSE -------------------------------------------------------------------------------- /strife-ve-src/lpng1612/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/lpng1612/README -------------------------------------------------------------------------------- /strife-ve-src/lpng1612/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/lpng1612/TODO -------------------------------------------------------------------------------- /strife-ve-src/lpng1612/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/lpng1612/example.c -------------------------------------------------------------------------------- /strife-ve-src/lpng1612/libpng.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/lpng1612/libpng.3 -------------------------------------------------------------------------------- /strife-ve-src/lpng1612/libpng.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/lpng1612/libpng.pc.in -------------------------------------------------------------------------------- /strife-ve-src/lpng1612/libpngpf.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/lpng1612/libpngpf.3 -------------------------------------------------------------------------------- /strife-ve-src/lpng1612/png.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/lpng1612/png.5 -------------------------------------------------------------------------------- /strife-ve-src/lpng1612/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/lpng1612/png.c -------------------------------------------------------------------------------- /strife-ve-src/lpng1612/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/lpng1612/png.h -------------------------------------------------------------------------------- /strife-ve-src/lpng1612/pngbar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/lpng1612/pngbar.jpg -------------------------------------------------------------------------------- /strife-ve-src/lpng1612/pngbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/lpng1612/pngbar.png -------------------------------------------------------------------------------- /strife-ve-src/lpng1612/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/lpng1612/pngconf.h -------------------------------------------------------------------------------- /strife-ve-src/lpng1612/pngdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/lpng1612/pngdebug.h -------------------------------------------------------------------------------- /strife-ve-src/lpng1612/pngerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/lpng1612/pngerror.c -------------------------------------------------------------------------------- /strife-ve-src/lpng1612/pngget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/lpng1612/pngget.c -------------------------------------------------------------------------------- /strife-ve-src/lpng1612/pnginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/lpng1612/pnginfo.h -------------------------------------------------------------------------------- /strife-ve-src/lpng1612/pnglibconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/lpng1612/pnglibconf.h -------------------------------------------------------------------------------- /strife-ve-src/lpng1612/pngmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/lpng1612/pngmem.c -------------------------------------------------------------------------------- /strife-ve-src/lpng1612/pngnow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/lpng1612/pngnow.png -------------------------------------------------------------------------------- /strife-ve-src/lpng1612/pngpread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/lpng1612/pngpread.c -------------------------------------------------------------------------------- /strife-ve-src/lpng1612/pngpriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/lpng1612/pngpriv.h -------------------------------------------------------------------------------- /strife-ve-src/lpng1612/pngread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/lpng1612/pngread.c -------------------------------------------------------------------------------- /strife-ve-src/lpng1612/pngrio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/lpng1612/pngrio.c -------------------------------------------------------------------------------- /strife-ve-src/lpng1612/pngrtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/lpng1612/pngrtran.c -------------------------------------------------------------------------------- /strife-ve-src/lpng1612/pngrutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/lpng1612/pngrutil.c -------------------------------------------------------------------------------- /strife-ve-src/lpng1612/pngset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/lpng1612/pngset.c -------------------------------------------------------------------------------- /strife-ve-src/lpng1612/pngstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/lpng1612/pngstruct.h -------------------------------------------------------------------------------- /strife-ve-src/lpng1612/pngtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/lpng1612/pngtest.c -------------------------------------------------------------------------------- /strife-ve-src/lpng1612/pngtest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/lpng1612/pngtest.png -------------------------------------------------------------------------------- /strife-ve-src/lpng1612/pngtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/lpng1612/pngtrans.c -------------------------------------------------------------------------------- /strife-ve-src/lpng1612/pngwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/lpng1612/pngwio.c -------------------------------------------------------------------------------- /strife-ve-src/lpng1612/pngwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/lpng1612/pngwrite.c -------------------------------------------------------------------------------- /strife-ve-src/lpng1612/pngwtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/lpng1612/pngwtran.c -------------------------------------------------------------------------------- /strife-ve-src/lpng1612/pngwutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/lpng1612/pngwutil.c -------------------------------------------------------------------------------- /strife-ve-src/man/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/man/.gitignore -------------------------------------------------------------------------------- /strife-ve-src/man/CMDLINE.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/man/CMDLINE.template -------------------------------------------------------------------------------- /strife-ve-src/man/INSTALL.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/man/INSTALL.template -------------------------------------------------------------------------------- /strife-ve-src/man/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/man/Makefile.am -------------------------------------------------------------------------------- /strife-ve-src/man/docgen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/man/docgen -------------------------------------------------------------------------------- /strife-ve-src/man/doom.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/man/doom.template -------------------------------------------------------------------------------- /strife-ve-src/man/environ.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/man/environ.man -------------------------------------------------------------------------------- /strife-ve-src/man/extra.cfg.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/man/extra.cfg.template -------------------------------------------------------------------------------- /strife-ve-src/man/heretic.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/man/heretic.template -------------------------------------------------------------------------------- /strife-ve-src/man/hexen.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/man/hexen.template -------------------------------------------------------------------------------- /strife-ve-src/man/simplecpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/man/simplecpp -------------------------------------------------------------------------------- /strife-ve-src/man/strife.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/man/strife.template -------------------------------------------------------------------------------- /strife-ve-src/man/wikipages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/man/wikipages -------------------------------------------------------------------------------- /strife-ve-src/msvc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/msvc/.gitignore -------------------------------------------------------------------------------- /strife-ve-src/msvc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/msvc/README -------------------------------------------------------------------------------- /strife-ve-src/msvc/chocolate.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/msvc/chocolate.sln -------------------------------------------------------------------------------- /strife-ve-src/msvc/doom.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/msvc/doom.vcproj -------------------------------------------------------------------------------- /strife-ve-src/msvc/dpiaware.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/msvc/dpiaware.manifest -------------------------------------------------------------------------------- /strife-ve-src/msvc/heretic.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/msvc/heretic.vcproj -------------------------------------------------------------------------------- /strife-ve-src/msvc/hexen.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/msvc/hexen.vcproj -------------------------------------------------------------------------------- /strife-ve-src/msvc/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/msvc/inttypes.h -------------------------------------------------------------------------------- /strife-ve-src/msvc/libopl.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/msvc/libopl.vcproj -------------------------------------------------------------------------------- /strife-ve-src/msvc/libpcsound.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/msvc/libpcsound.vcproj -------------------------------------------------------------------------------- /strife-ve-src/msvc/server.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/msvc/server.vcproj -------------------------------------------------------------------------------- /strife-ve-src/msvc/setup.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/msvc/setup.vcproj -------------------------------------------------------------------------------- /strife-ve-src/msvc/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/msvc/stdint.h -------------------------------------------------------------------------------- /strife-ve-src/msvc/strife.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/msvc/strife.vcproj -------------------------------------------------------------------------------- /strife-ve-src/msvc/win32.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/msvc/win32.rc -------------------------------------------------------------------------------- /strife-ve-src/msvc/win_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/msvc/win_debug.c -------------------------------------------------------------------------------- /strife-ve-src/msvc/win_opendir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/msvc/win_opendir.c -------------------------------------------------------------------------------- /strife-ve-src/msvc/win_opendir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/msvc/win_opendir.h -------------------------------------------------------------------------------- /strife-ve-src/msvc2015/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/msvc2015/.gitignore -------------------------------------------------------------------------------- /strife-ve-src/msvc2015/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/msvc2015/README -------------------------------------------------------------------------------- /strife-ve-src/msvc2015/UpgradeLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/msvc2015/UpgradeLog.htm -------------------------------------------------------------------------------- /strife-ve-src/msvc2015/chocolate.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/msvc2015/chocolate.sln -------------------------------------------------------------------------------- /strife-ve-src/msvc2015/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/msvc2015/config.h -------------------------------------------------------------------------------- /strife-ve-src/msvc2015/doom.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/msvc2015/doom.vcproj -------------------------------------------------------------------------------- /strife-ve-src/msvc2015/heretic.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/msvc2015/heretic.vcproj -------------------------------------------------------------------------------- /strife-ve-src/msvc2015/hexen.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/msvc2015/hexen.vcproj -------------------------------------------------------------------------------- /strife-ve-src/msvc2015/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/msvc2015/inttypes.h -------------------------------------------------------------------------------- /strife-ve-src/msvc2015/libopl.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/msvc2015/libopl.vcproj -------------------------------------------------------------------------------- /strife-ve-src/msvc2015/libopl.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/msvc2015/libopl.vcxproj -------------------------------------------------------------------------------- /strife-ve-src/msvc2015/server.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/msvc2015/server.vcproj -------------------------------------------------------------------------------- /strife-ve-src/msvc2015/server.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/msvc2015/server.vcxproj -------------------------------------------------------------------------------- /strife-ve-src/msvc2015/setup.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/msvc2015/setup.vcproj -------------------------------------------------------------------------------- /strife-ve-src/msvc2015/setup.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/msvc2015/setup.vcxproj -------------------------------------------------------------------------------- /strife-ve-src/msvc2015/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/msvc2015/stdint.h -------------------------------------------------------------------------------- /strife-ve-src/msvc2015/strife.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/msvc2015/strife.vcproj -------------------------------------------------------------------------------- /strife-ve-src/msvc2015/strife.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/msvc2015/strife.vcxproj -------------------------------------------------------------------------------- /strife-ve-src/msvc2015/win32.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/msvc2015/win32.rc -------------------------------------------------------------------------------- /strife-ve-src/msvc2015/win_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/msvc2015/win_debug.c -------------------------------------------------------------------------------- /strife-ve-src/msvc2015/win_opendir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/msvc2015/win_opendir.c -------------------------------------------------------------------------------- /strife-ve-src/msvc2015/win_opendir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/msvc2015/win_opendir.h -------------------------------------------------------------------------------- /strife-ve-src/nx-nonnda/SDL_glfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/nx-nonnda/SDL_glfuncs.h -------------------------------------------------------------------------------- /strife-ve-src/opl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/opl/.gitignore -------------------------------------------------------------------------------- /strife-ve-src/opl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/opl/Makefile.am -------------------------------------------------------------------------------- /strife-ve-src/opl/dbopl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/opl/dbopl.c -------------------------------------------------------------------------------- /strife-ve-src/opl/dbopl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/opl/dbopl.h -------------------------------------------------------------------------------- /strife-ve-src/opl/examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/opl/examples/.gitignore -------------------------------------------------------------------------------- /strife-ve-src/opl/examples/droplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/opl/examples/droplay.c -------------------------------------------------------------------------------- /strife-ve-src/opl/ioperm_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/opl/ioperm_sys.c -------------------------------------------------------------------------------- /strife-ve-src/opl/ioperm_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/opl/ioperm_sys.h -------------------------------------------------------------------------------- /strife-ve-src/opl/opl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/opl/opl.c -------------------------------------------------------------------------------- /strife-ve-src/opl/opl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/opl/opl.h -------------------------------------------------------------------------------- /strife-ve-src/opl/opl_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/opl/opl_internal.h -------------------------------------------------------------------------------- /strife-ve-src/opl/opl_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/opl/opl_linux.c -------------------------------------------------------------------------------- /strife-ve-src/opl/opl_obsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/opl/opl_obsd.c -------------------------------------------------------------------------------- /strife-ve-src/opl/opl_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/opl/opl_queue.c -------------------------------------------------------------------------------- /strife-ve-src/opl/opl_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/opl/opl_queue.h -------------------------------------------------------------------------------- /strife-ve-src/opl/opl_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/opl/opl_sdl.c -------------------------------------------------------------------------------- /strife-ve-src/opl/opl_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/opl/opl_timer.c -------------------------------------------------------------------------------- /strife-ve-src/opl/opl_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/opl/opl_timer.h -------------------------------------------------------------------------------- /strife-ve-src/opl/opl_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/opl/opl_win32.c -------------------------------------------------------------------------------- /strife-ve-src/patchelf/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/patchelf/COPYING -------------------------------------------------------------------------------- /strife-ve-src/patchelf/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/patchelf/Makefile.am -------------------------------------------------------------------------------- /strife-ve-src/patchelf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/patchelf/README -------------------------------------------------------------------------------- /strife-ve-src/patchelf/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/patchelf/configure.ac -------------------------------------------------------------------------------- /strife-ve-src/patchelf/patchelf.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/patchelf/patchelf.1 -------------------------------------------------------------------------------- /strife-ve-src/patchelf/patchelf.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/patchelf/patchelf.spec -------------------------------------------------------------------------------- /strife-ve-src/patchelf/src/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/patchelf/src/elf.h -------------------------------------------------------------------------------- /strife-ve-src/patchelf/tests/bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/patchelf/tests/bar.c -------------------------------------------------------------------------------- /strife-ve-src/patchelf/tests/foo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/patchelf/tests/foo.c -------------------------------------------------------------------------------- /strife-ve-src/patchelf/tests/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/patchelf/tests/main.c -------------------------------------------------------------------------------- /strife-ve-src/patchelf/tests/no-rpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/patchelf/tests/no-rpath -------------------------------------------------------------------------------- /strife-ve-src/patchelf/tests/plain-fail.sh: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | if ./main; then 3 | exit 1 4 | fi 5 | -------------------------------------------------------------------------------- /strife-ve-src/patchelf/tests/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/patchelf/tests/simple.c -------------------------------------------------------------------------------- /strife-ve-src/patchelf/version: -------------------------------------------------------------------------------- 1 | 0.8 2 | -------------------------------------------------------------------------------- /strife-ve-src/pcsound/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/pcsound/.gitignore -------------------------------------------------------------------------------- /strife-ve-src/pcsound/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/pcsound/Makefile.am -------------------------------------------------------------------------------- /strife-ve-src/pcsound/pcsound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/pcsound/pcsound.c -------------------------------------------------------------------------------- /strife-ve-src/pcsound/pcsound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/pcsound/pcsound.h -------------------------------------------------------------------------------- /strife-ve-src/pcsound/pcsound_bsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/pcsound/pcsound_bsd.c -------------------------------------------------------------------------------- /strife-ve-src/pcsound/pcsound_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/pcsound/pcsound_linux.c -------------------------------------------------------------------------------- /strife-ve-src/pcsound/pcsound_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/pcsound/pcsound_sdl.c -------------------------------------------------------------------------------- /strife-ve-src/pcsound/pcsound_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/pcsound/pcsound_win32.c -------------------------------------------------------------------------------- /strife-ve-src/pkg/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/pkg/.gitignore -------------------------------------------------------------------------------- /strife-ve-src/pkg/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/pkg/Makefile.am -------------------------------------------------------------------------------- /strife-ve-src/pkg/config.make.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/pkg/config.make.in -------------------------------------------------------------------------------- /strife-ve-src/pkg/osx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/pkg/osx/.gitignore -------------------------------------------------------------------------------- /strife-ve-src/pkg/osx/AppController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/pkg/osx/AppController.h -------------------------------------------------------------------------------- /strife-ve-src/pkg/osx/AppController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/pkg/osx/AppController.m -------------------------------------------------------------------------------- /strife-ve-src/pkg/osx/Execute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/pkg/osx/Execute.h -------------------------------------------------------------------------------- /strife-ve-src/pkg/osx/Execute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/pkg/osx/Execute.m -------------------------------------------------------------------------------- /strife-ve-src/pkg/osx/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/pkg/osx/GNUmakefile -------------------------------------------------------------------------------- /strife-ve-src/pkg/osx/IWADLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/pkg/osx/IWADLocation.h -------------------------------------------------------------------------------- /strife-ve-src/pkg/osx/IWADLocation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/pkg/osx/IWADLocation.m -------------------------------------------------------------------------------- /strife-ve-src/pkg/osx/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/pkg/osx/Info.plist.in -------------------------------------------------------------------------------- /strife-ve-src/pkg/osx/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? 2 | -------------------------------------------------------------------------------- /strife-ve-src/pkg/osx/cp-with-libs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/pkg/osx/cp-with-libs -------------------------------------------------------------------------------- /strife-ve-src/pkg/osx/dmgfix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/pkg/osx/dmgfix -------------------------------------------------------------------------------- /strife-ve-src/pkg/osx/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/pkg/osx/main.m -------------------------------------------------------------------------------- /strife-ve-src/pkg/win32/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/pkg/win32/GNUmakefile -------------------------------------------------------------------------------- /strife-ve-src/pkg/win32/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/pkg/win32/README -------------------------------------------------------------------------------- /strife-ve-src/rpm.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/rpm.spec.in -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/sdl2_mixer/Android.mk -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/sdl2_mixer/CHANGES.txt -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/sdl2_mixer/COPYING.txt -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/sdl2_mixer/README.txt -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/SDL_mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/sdl2_mixer/SDL_mixer.h -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/sdl2_mixer/autogen.sh -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/sdl2_mixer/configure.in -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/debian/docs: -------------------------------------------------------------------------------- 1 | README.txt 2 | -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/sdl2_mixer/debian/rules -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/sdl2_mixer/debian/watch -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/external/flac-1.3.2/config.rpath: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/external/flac-1.3.2/doc/FLAC.tag: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/external/flac-1.3.2/test/cuesheets/bad.134.TRACK_missing_number.cue: -------------------------------------------------------------------------------- 1 | FILE "z.wav" WAVE 2 | TRACK 3 | -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/external/flac-1.3.2/test/cuesheets/bad.139.TRACK_missing_type.cue: -------------------------------------------------------------------------------- 1 | FILE "z.wav" WAVE 2 | TRACK 01 3 | -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/external/flac-1.3.2/test/cuesheets/bad.140.no_TRACKs.cue: -------------------------------------------------------------------------------- 1 | FILE "z.wav" WAVE 2 | -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/external/flac-1.3.2/test/cuesheets/bad.200.FLAC_leadin_missing_offset.cue: -------------------------------------------------------------------------------- 1 | REM FLAC__lead-in 2 | -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/external/flac-1.3.2/test/cuesheets/bad.201.FLAC_leadin_illegal_offset.cue: -------------------------------------------------------------------------------- 1 | REM FLAC__lead-in thhpt! 2 | -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/external/flac-1.3.2/test/cuesheets/bad.231.FLAC_leadout_missing_track.cue: -------------------------------------------------------------------------------- 1 | REM FLAC__lead-out 2 | -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/external/flac-1.3.2/test/cuesheets/bad.232.FLAC_leadout_illegal_track.cue: -------------------------------------------------------------------------------- 1 | REM FLAC__lead-out thhpt! 2 | -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/external/flac-1.3.2/test/cuesheets/bad.233.FLAC_leadout_missing_offset.cue: -------------------------------------------------------------------------------- 1 | REM FLAC__lead-out 170 2 | -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/external/libmodplug-0.8.9.0/COPYING: -------------------------------------------------------------------------------- 1 | ModPlug-XMMS and libmodplug are now in the public domain. -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/external/mpg123-1.25.6/doc/doxyfoot.xhtml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/external/mpg123-1.25.6/ports/MSVC++/CMP3Stream/libMPG123/PLACE_LIBMPG123_SOURCES_HERE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/external/mpg123-1.25.6/ports/Sony_PSP/readers.c.patch: -------------------------------------------------------------------------------- 1 | 14a15 2 | > #include 3 | -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/external/opus-1.0.3/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/external/opus-1.0.3/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/external/opus-1.0.3/package_version: -------------------------------------------------------------------------------- 1 | PACKAGE_VERSION="1.0.3" 2 | -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/external/opusfile-0.10/package_version: -------------------------------------------------------------------------------- 1 | PACKAGE_VERSION="0.10" 2 | -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/gcc-fat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/sdl2_mixer/gcc-fat.sh -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/load_aiff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/sdl2_mixer/load_aiff.c -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/load_aiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/sdl2_mixer/load_aiff.h -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/load_voc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/sdl2_mixer/load_voc.c -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/load_voc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/sdl2_mixer/load_voc.h -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/mixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/sdl2_mixer/mixer.c -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/sdl2_mixer/mixer.h -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/music.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/sdl2_mixer/music.c -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/sdl2_mixer/music.h -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/music_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/sdl2_mixer/music_cmd.c -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/music_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/sdl2_mixer/music_cmd.h -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/music_flac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/sdl2_mixer/music_flac.c -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/music_flac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/sdl2_mixer/music_flac.h -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/music_mad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/sdl2_mixer/music_mad.c -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/music_mad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/sdl2_mixer/music_mad.h -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/music_ogg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/sdl2_mixer/music_ogg.c -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/music_ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/sdl2_mixer/music_ogg.h -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/music_opus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/sdl2_mixer/music_opus.c -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/music_opus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/sdl2_mixer/music_opus.h -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/music_wav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/sdl2_mixer/music_wav.c -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/music_wav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/sdl2_mixer/music_wav.h -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/playmus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/sdl2_mixer/playmus.c -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/playwave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/sdl2_mixer/playwave.c -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/timidity/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/sdl2_mixer/timidity/FAQ -------------------------------------------------------------------------------- /strife-ve-src/sdl2_mixer/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/sdl2_mixer/version.rc -------------------------------------------------------------------------------- /strife-ve-src/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/.gitignore -------------------------------------------------------------------------------- /strife-ve-src/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/Makefile.am -------------------------------------------------------------------------------- /strife-ve-src/src/SDL_win32_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/SDL_win32_main.c -------------------------------------------------------------------------------- /strife-ve-src/src/d_dedicated.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/d_dedicated.c -------------------------------------------------------------------------------- /strife-ve-src/src/d_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/d_event.c -------------------------------------------------------------------------------- /strife-ve-src/src/d_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/d_event.h -------------------------------------------------------------------------------- /strife-ve-src/src/d_iwad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/d_iwad.c -------------------------------------------------------------------------------- /strife-ve-src/src/d_iwad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/d_iwad.h -------------------------------------------------------------------------------- /strife-ve-src/src/d_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/d_loop.c -------------------------------------------------------------------------------- /strife-ve-src/src/d_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/d_loop.h -------------------------------------------------------------------------------- /strife-ve-src/src/d_mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/d_mode.c -------------------------------------------------------------------------------- /strife-ve-src/src/d_mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/d_mode.h -------------------------------------------------------------------------------- /strife-ve-src/src/d_ticcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/d_ticcmd.h -------------------------------------------------------------------------------- /strife-ve-src/src/deh_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/deh_defs.h -------------------------------------------------------------------------------- /strife-ve-src/src/deh_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/deh_io.c -------------------------------------------------------------------------------- /strife-ve-src/src/deh_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/deh_io.h -------------------------------------------------------------------------------- /strife-ve-src/src/deh_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/deh_main.c -------------------------------------------------------------------------------- /strife-ve-src/src/deh_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/deh_main.h -------------------------------------------------------------------------------- /strife-ve-src/src/deh_mapping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/deh_mapping.c -------------------------------------------------------------------------------- /strife-ve-src/src/deh_mapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/deh_mapping.h -------------------------------------------------------------------------------- /strife-ve-src/src/deh_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/deh_str.c -------------------------------------------------------------------------------- /strife-ve-src/src/deh_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/deh_str.h -------------------------------------------------------------------------------- /strife-ve-src/src/deh_text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/deh_text.c -------------------------------------------------------------------------------- /strife-ve-src/src/doom.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/doom.desktop.in -------------------------------------------------------------------------------- /strife-ve-src/src/doomfeatures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/doomfeatures.h -------------------------------------------------------------------------------- /strife-ve-src/src/doomkeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/doomkeys.h -------------------------------------------------------------------------------- /strife-ve-src/src/doomtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/doomtype.h -------------------------------------------------------------------------------- /strife-ve-src/src/gusconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/gusconf.c -------------------------------------------------------------------------------- /strife-ve-src/src/gusconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/gusconf.h -------------------------------------------------------------------------------- /strife-ve-src/src/heretic.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/heretic.desktop.in -------------------------------------------------------------------------------- /strife-ve-src/src/hexen.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/hexen.desktop.in -------------------------------------------------------------------------------- /strife-ve-src/src/i_cdmus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_cdmus.c -------------------------------------------------------------------------------- /strife-ve-src/src/i_cdmus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_cdmus.h -------------------------------------------------------------------------------- /strife-ve-src/src/i_cpumode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_cpumode.c -------------------------------------------------------------------------------- /strife-ve-src/src/i_cpumode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_cpumode.h -------------------------------------------------------------------------------- /strife-ve-src/src/i_endoom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_endoom.c -------------------------------------------------------------------------------- /strife-ve-src/src/i_endoom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_endoom.h -------------------------------------------------------------------------------- /strife-ve-src/src/i_ffmpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_ffmpeg.c -------------------------------------------------------------------------------- /strife-ve-src/src/i_ffmpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_ffmpeg.h -------------------------------------------------------------------------------- /strife-ve-src/src/i_galaxyservices.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_galaxyservices.c -------------------------------------------------------------------------------- /strife-ve-src/src/i_galaxyservices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_galaxyservices.h -------------------------------------------------------------------------------- /strife-ve-src/src/i_glscale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_glscale.c -------------------------------------------------------------------------------- /strife-ve-src/src/i_glscale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_glscale.h -------------------------------------------------------------------------------- /strife-ve-src/src/i_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_joystick.c -------------------------------------------------------------------------------- /strife-ve-src/src/i_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_joystick.h -------------------------------------------------------------------------------- /strife-ve-src/src/i_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_main.c -------------------------------------------------------------------------------- /strife-ve-src/src/i_noappservices.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_noappservices.c -------------------------------------------------------------------------------- /strife-ve-src/src/i_noappservices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_noappservices.h -------------------------------------------------------------------------------- /strife-ve-src/src/i_oplmusic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_oplmusic.c -------------------------------------------------------------------------------- /strife-ve-src/src/i_pcsound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_pcsound.c -------------------------------------------------------------------------------- /strife-ve-src/src/i_platsystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_platsystem.c -------------------------------------------------------------------------------- /strife-ve-src/src/i_platsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_platsystem.h -------------------------------------------------------------------------------- /strife-ve-src/src/i_scale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_scale.c -------------------------------------------------------------------------------- /strife-ve-src/src/i_scale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_scale.h -------------------------------------------------------------------------------- /strife-ve-src/src/i_sdlmusic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_sdlmusic.c -------------------------------------------------------------------------------- /strife-ve-src/src/i_sdlsound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_sdlsound.c -------------------------------------------------------------------------------- /strife-ve-src/src/i_social.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_social.c -------------------------------------------------------------------------------- /strife-ve-src/src/i_social.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_social.h -------------------------------------------------------------------------------- /strife-ve-src/src/i_softkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_softkey.c -------------------------------------------------------------------------------- /strife-ve-src/src/i_softkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_softkey.h -------------------------------------------------------------------------------- /strife-ve-src/src/i_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_sound.c -------------------------------------------------------------------------------- /strife-ve-src/src/i_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_sound.h -------------------------------------------------------------------------------- /strife-ve-src/src/i_steamservices.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_steamservices.c -------------------------------------------------------------------------------- /strife-ve-src/src/i_steamservices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_steamservices.h -------------------------------------------------------------------------------- /strife-ve-src/src/i_swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_swap.h -------------------------------------------------------------------------------- /strife-ve-src/src/i_switchservices.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_switchservices.c -------------------------------------------------------------------------------- /strife-ve-src/src/i_switchservices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_switchservices.h -------------------------------------------------------------------------------- /strife-ve-src/src/i_system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_system.c -------------------------------------------------------------------------------- /strife-ve-src/src/i_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_system.h -------------------------------------------------------------------------------- /strife-ve-src/src/i_theoraplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_theoraplay.c -------------------------------------------------------------------------------- /strife-ve-src/src/i_theoraplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_theoraplay.h -------------------------------------------------------------------------------- /strife-ve-src/src/i_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_timer.c -------------------------------------------------------------------------------- /strife-ve-src/src/i_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_timer.h -------------------------------------------------------------------------------- /strife-ve-src/src/i_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_video.c -------------------------------------------------------------------------------- /strife-ve-src/src/i_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_video.h -------------------------------------------------------------------------------- /strife-ve-src/src/i_videohr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_videohr.c -------------------------------------------------------------------------------- /strife-ve-src/src/i_videohr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_videohr.h -------------------------------------------------------------------------------- /strife-ve-src/src/i_ymfm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_ymfm.cpp -------------------------------------------------------------------------------- /strife-ve-src/src/i_ymfm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_ymfm.h -------------------------------------------------------------------------------- /strife-ve-src/src/i_ymfminter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/i_ymfminter.c -------------------------------------------------------------------------------- /strife-ve-src/src/icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/icon.c -------------------------------------------------------------------------------- /strife-ve-src/src/kerning.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/kerning.c -------------------------------------------------------------------------------- /strife-ve-src/src/kerning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/kerning.h -------------------------------------------------------------------------------- /strife-ve-src/src/m_argv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/m_argv.c -------------------------------------------------------------------------------- /strife-ve-src/src/m_argv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/m_argv.h -------------------------------------------------------------------------------- /strife-ve-src/src/m_bbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/m_bbox.c -------------------------------------------------------------------------------- /strife-ve-src/src/m_bbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/m_bbox.h -------------------------------------------------------------------------------- /strife-ve-src/src/m_cheat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/m_cheat.c -------------------------------------------------------------------------------- /strife-ve-src/src/m_cheat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/m_cheat.h -------------------------------------------------------------------------------- /strife-ve-src/src/m_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/m_config.c -------------------------------------------------------------------------------- /strife-ve-src/src/m_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/m_config.h -------------------------------------------------------------------------------- /strife-ve-src/src/m_controls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/m_controls.c -------------------------------------------------------------------------------- /strife-ve-src/src/m_controls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/m_controls.h -------------------------------------------------------------------------------- /strife-ve-src/src/m_dllist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/m_dllist.h -------------------------------------------------------------------------------- /strife-ve-src/src/m_fixed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/m_fixed.c -------------------------------------------------------------------------------- /strife-ve-src/src/m_fixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/m_fixed.h -------------------------------------------------------------------------------- /strife-ve-src/src/m_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/m_misc.c -------------------------------------------------------------------------------- /strife-ve-src/src/m_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/m_misc.h -------------------------------------------------------------------------------- /strife-ve-src/src/m_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/m_parser.c -------------------------------------------------------------------------------- /strife-ve-src/src/m_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/m_parser.h -------------------------------------------------------------------------------- /strife-ve-src/src/m_qstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/m_qstring.c -------------------------------------------------------------------------------- /strife-ve-src/src/m_qstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/m_qstring.h -------------------------------------------------------------------------------- /strife-ve-src/src/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/manifest.xml -------------------------------------------------------------------------------- /strife-ve-src/src/memio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/memio.c -------------------------------------------------------------------------------- /strife-ve-src/src/memio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/memio.h -------------------------------------------------------------------------------- /strife-ve-src/src/midifile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/midifile.c -------------------------------------------------------------------------------- /strife-ve-src/src/midifile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/midifile.h -------------------------------------------------------------------------------- /strife-ve-src/src/mus2mid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/mus2mid.c -------------------------------------------------------------------------------- /strife-ve-src/src/mus2mid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/mus2mid.h -------------------------------------------------------------------------------- /strife-ve-src/src/net_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/net_client.c -------------------------------------------------------------------------------- /strife-ve-src/src/net_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/net_client.h -------------------------------------------------------------------------------- /strife-ve-src/src/net_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/net_common.c -------------------------------------------------------------------------------- /strife-ve-src/src/net_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/net_common.h -------------------------------------------------------------------------------- /strife-ve-src/src/net_dedicated.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/net_dedicated.c -------------------------------------------------------------------------------- /strife-ve-src/src/net_dedicated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/net_dedicated.h -------------------------------------------------------------------------------- /strife-ve-src/src/net_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/net_defs.h -------------------------------------------------------------------------------- /strife-ve-src/src/net_gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/net_gui.c -------------------------------------------------------------------------------- /strife-ve-src/src/net_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/net_gui.h -------------------------------------------------------------------------------- /strife-ve-src/src/net_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/net_io.c -------------------------------------------------------------------------------- /strife-ve-src/src/net_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/net_io.h -------------------------------------------------------------------------------- /strife-ve-src/src/net_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/net_loop.c -------------------------------------------------------------------------------- /strife-ve-src/src/net_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/net_loop.h -------------------------------------------------------------------------------- /strife-ve-src/src/net_packet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/net_packet.c -------------------------------------------------------------------------------- /strife-ve-src/src/net_packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/net_packet.h -------------------------------------------------------------------------------- /strife-ve-src/src/net_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/net_query.c -------------------------------------------------------------------------------- /strife-ve-src/src/net_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/net_query.h -------------------------------------------------------------------------------- /strife-ve-src/src/net_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/net_sdl.c -------------------------------------------------------------------------------- /strife-ve-src/src/net_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/net_sdl.h -------------------------------------------------------------------------------- /strife-ve-src/src/net_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/net_server.c -------------------------------------------------------------------------------- /strife-ve-src/src/net_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/net_server.h -------------------------------------------------------------------------------- /strife-ve-src/src/net_steamworks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/net_steamworks.c -------------------------------------------------------------------------------- /strife-ve-src/src/net_steamworks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/net_steamworks.h -------------------------------------------------------------------------------- /strife-ve-src/src/net_structrw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/net_structrw.c -------------------------------------------------------------------------------- /strife-ve-src/src/net_structrw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/net_structrw.h -------------------------------------------------------------------------------- /strife-ve-src/src/opengl/dgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/opengl/dgl.h -------------------------------------------------------------------------------- /strife-ve-src/src/opengl/rb_automap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/opengl/rb_automap.c -------------------------------------------------------------------------------- /strife-ve-src/src/opengl/rb_automap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/opengl/rb_automap.h -------------------------------------------------------------------------------- /strife-ve-src/src/opengl/rb_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/opengl/rb_bsp.c -------------------------------------------------------------------------------- /strife-ve-src/src/opengl/rb_bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/opengl/rb_bsp.h -------------------------------------------------------------------------------- /strife-ve-src/src/opengl/rb_clipper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/opengl/rb_clipper.c -------------------------------------------------------------------------------- /strife-ve-src/src/opengl/rb_clipper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/opengl/rb_clipper.h -------------------------------------------------------------------------------- /strife-ve-src/src/opengl/rb_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/opengl/rb_common.h -------------------------------------------------------------------------------- /strife-ve-src/src/opengl/rb_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/opengl/rb_config.c -------------------------------------------------------------------------------- /strife-ve-src/src/opengl/rb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/opengl/rb_config.h -------------------------------------------------------------------------------- /strife-ve-src/src/opengl/rb_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/opengl/rb_data.c -------------------------------------------------------------------------------- /strife-ve-src/src/opengl/rb_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/opengl/rb_data.h -------------------------------------------------------------------------------- /strife-ve-src/src/opengl/rb_decal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/opengl/rb_decal.c -------------------------------------------------------------------------------- /strife-ve-src/src/opengl/rb_decal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/opengl/rb_decal.h -------------------------------------------------------------------------------- /strife-ve-src/src/opengl/rb_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/opengl/rb_draw.c -------------------------------------------------------------------------------- /strife-ve-src/src/opengl/rb_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/opengl/rb_draw.h -------------------------------------------------------------------------------- /strife-ve-src/src/opengl/rb_fbo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/opengl/rb_fbo.c -------------------------------------------------------------------------------- /strife-ve-src/src/opengl/rb_fbo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/opengl/rb_fbo.h -------------------------------------------------------------------------------- /strife-ve-src/src/opengl/rb_geom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/opengl/rb_geom.c -------------------------------------------------------------------------------- /strife-ve-src/src/opengl/rb_geom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/opengl/rb_geom.h -------------------------------------------------------------------------------- /strife-ve-src/src/opengl/rb_gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/opengl/rb_gl.c -------------------------------------------------------------------------------- /strife-ve-src/src/opengl/rb_gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/opengl/rb_gl.h -------------------------------------------------------------------------------- /strife-ve-src/src/opengl/rb_hudtext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/opengl/rb_hudtext.c -------------------------------------------------------------------------------- /strife-ve-src/src/opengl/rb_hudtext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/opengl/rb_hudtext.h -------------------------------------------------------------------------------- /strife-ve-src/src/opengl/rb_level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/opengl/rb_level.h -------------------------------------------------------------------------------- /strife-ve-src/src/opengl/rb_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/opengl/rb_local.h -------------------------------------------------------------------------------- /strife-ve-src/src/opengl/rb_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/opengl/rb_main.c -------------------------------------------------------------------------------- /strife-ve-src/src/opengl/rb_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/opengl/rb_main.h -------------------------------------------------------------------------------- /strife-ve-src/src/opengl/rb_matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/opengl/rb_matrix.c -------------------------------------------------------------------------------- /strife-ve-src/src/opengl/rb_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/opengl/rb_matrix.h -------------------------------------------------------------------------------- /strife-ve-src/src/opengl/rb_patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/opengl/rb_patch.c -------------------------------------------------------------------------------- /strife-ve-src/src/opengl/rb_patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/opengl/rb_patch.h -------------------------------------------------------------------------------- /strife-ve-src/src/opengl/rb_shader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/opengl/rb_shader.c -------------------------------------------------------------------------------- /strife-ve-src/src/opengl/rb_shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/opengl/rb_shader.h -------------------------------------------------------------------------------- /strife-ve-src/src/opengl/rb_sky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/opengl/rb_sky.c -------------------------------------------------------------------------------- /strife-ve-src/src/opengl/rb_sky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/opengl/rb_sky.h -------------------------------------------------------------------------------- /strife-ve-src/src/opengl/rb_texture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/opengl/rb_texture.c -------------------------------------------------------------------------------- /strife-ve-src/src/opengl/rb_texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/opengl/rb_texture.h -------------------------------------------------------------------------------- /strife-ve-src/src/opengl/rb_things.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/opengl/rb_things.c -------------------------------------------------------------------------------- /strife-ve-src/src/opengl/rb_things.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/opengl/rb_things.h -------------------------------------------------------------------------------- /strife-ve-src/src/opengl/rb_view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/opengl/rb_view.c -------------------------------------------------------------------------------- /strife-ve-src/src/opengl/rb_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/opengl/rb_view.h -------------------------------------------------------------------------------- /strife-ve-src/src/opengl/rb_wipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/opengl/rb_wipe.c -------------------------------------------------------------------------------- /strife-ve-src/src/opengl/rb_wipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/opengl/rb_wipe.h -------------------------------------------------------------------------------- /strife-ve-src/src/resource.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/resource.rc.in -------------------------------------------------------------------------------- /strife-ve-src/src/setup-res.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/setup-res.rc.in -------------------------------------------------------------------------------- /strife-ve-src/src/setup/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/setup/.gitignore -------------------------------------------------------------------------------- /strife-ve-src/src/setup/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/setup/Makefile.am -------------------------------------------------------------------------------- /strife-ve-src/src/setup/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/setup/display.c -------------------------------------------------------------------------------- /strife-ve-src/src/setup/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/setup/display.h -------------------------------------------------------------------------------- /strife-ve-src/src/setup/execute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/setup/execute.c -------------------------------------------------------------------------------- /strife-ve-src/src/setup/execute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/setup/execute.h -------------------------------------------------------------------------------- /strife-ve-src/src/setup/joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/setup/joystick.c -------------------------------------------------------------------------------- /strife-ve-src/src/setup/joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/setup/joystick.h -------------------------------------------------------------------------------- /strife-ve-src/src/setup/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/setup/keyboard.c -------------------------------------------------------------------------------- /strife-ve-src/src/setup/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/setup/keyboard.h -------------------------------------------------------------------------------- /strife-ve-src/src/setup/mainmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/setup/mainmenu.c -------------------------------------------------------------------------------- /strife-ve-src/src/setup/mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/setup/mode.c -------------------------------------------------------------------------------- /strife-ve-src/src/setup/mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/setup/mode.h -------------------------------------------------------------------------------- /strife-ve-src/src/setup/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/setup/mouse.c -------------------------------------------------------------------------------- /strife-ve-src/src/setup/mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/setup/mouse.h -------------------------------------------------------------------------------- /strife-ve-src/src/setup/multiplayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/setup/multiplayer.c -------------------------------------------------------------------------------- /strife-ve-src/src/setup/multiplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/setup/multiplayer.h -------------------------------------------------------------------------------- /strife-ve-src/src/setup/setup_icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/setup/setup_icon.c -------------------------------------------------------------------------------- /strife-ve-src/src/setup/sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/setup/sound.c -------------------------------------------------------------------------------- /strife-ve-src/src/setup/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/setup/sound.h -------------------------------------------------------------------------------- /strife-ve-src/src/setup/txt_joyaxis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/setup/txt_joyaxis.c -------------------------------------------------------------------------------- /strife-ve-src/src/setup/txt_joyaxis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/setup/txt_joyaxis.h -------------------------------------------------------------------------------- /strife-ve-src/src/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/sha1.c -------------------------------------------------------------------------------- /strife-ve-src/src/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/sha1.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife.desktop.in -------------------------------------------------------------------------------- /strife-ve-src/src/strife/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/.gitignore -------------------------------------------------------------------------------- /strife-ve-src/src/strife/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/Makefile.am -------------------------------------------------------------------------------- /strife-ve-src/src/strife/am_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/am_map.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/am_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/am_map.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/d_englsh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/d_englsh.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/d_items.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/d_items.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/d_items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/d_items.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/d_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/d_main.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/d_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/d_main.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/d_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/d_net.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/d_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/d_player.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/d_textur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/d_textur.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/d_think.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/d_think.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/deh_ammo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/deh_ammo.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/deh_cheat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/deh_cheat.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/deh_frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/deh_frame.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/deh_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/deh_misc.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/deh_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/deh_misc.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/deh_ptr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/deh_ptr.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/deh_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/deh_sound.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/deh_strife.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/deh_strife.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/deh_thing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/deh_thing.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/deh_weapon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/deh_weapon.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/doomdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/doomdata.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/doomdef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/doomdef.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/doomdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/doomdef.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/doomstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/doomstat.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/doomstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/doomstat.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/dstrings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/dstrings.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/dstrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/dstrings.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/f_finale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/f_finale.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/f_finale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/f_finale.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/f_wipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/f_wipe.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/f_wipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/f_wipe.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/fe_gamepad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/fe_gamepad.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/fe_gamepad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/fe_gamepad.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/fe_menus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/fe_menus.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/fe_menus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/fe_menus.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/fe_mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/fe_mouse.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/fe_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/fe_mouse.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/g_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/g_game.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/g_game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/g_game.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/hu_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/hu_lib.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/hu_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/hu_lib.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/hu_stuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/hu_stuff.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/hu_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/hu_stuff.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/info.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/info.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/m_help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/m_help.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/m_help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/m_help.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/m_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/m_menu.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/m_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/m_menu.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/m_random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/m_random.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/m_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/m_random.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/m_saves.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/m_saves.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/m_saves.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/m_saves.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/p_ceilng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/p_ceilng.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/p_dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/p_dialog.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/p_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/p_dialog.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/p_doors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/p_doors.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/p_enemy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/p_enemy.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/p_floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/p_floor.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/p_inter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/p_inter.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/p_inter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/p_inter.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/p_lights.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/p_lights.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/p_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/p_local.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/p_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/p_map.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/p_maputl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/p_maputl.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/p_mobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/p_mobj.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/p_mobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/p_mobj.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/p_plats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/p_plats.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/p_pspr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/p_pspr.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/p_pspr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/p_pspr.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/p_saveg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/p_saveg.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/p_saveg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/p_saveg.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/p_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/p_setup.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/p_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/p_setup.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/p_sight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/p_sight.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/p_spec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/p_spec.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/p_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/p_spec.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/p_switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/p_switch.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/p_telept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/p_telept.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/p_tick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/p_tick.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/p_tick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/p_tick.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/p_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/p_user.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/r_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/r_bsp.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/r_bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/r_bsp.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/r_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/r_data.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/r_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/r_data.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/r_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/r_defs.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/r_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/r_draw.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/r_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/r_draw.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/r_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/r_local.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/r_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/r_main.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/r_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/r_main.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/r_plane.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/r_plane.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/r_plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/r_plane.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/r_segs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/r_segs.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/r_segs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/r_segs.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/r_sky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/r_sky.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/r_sky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/r_sky.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/r_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/r_state.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/r_things.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/r_things.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/r_things.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/r_things.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/s_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/s_sound.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/s_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/s_sound.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/sounds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/sounds.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/sounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/sounds.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/st_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/st_lib.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/st_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/st_lib.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/st_stuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/st_stuff.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/st_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/st_stuff.h -------------------------------------------------------------------------------- /strife-ve-src/src/strife/wi_stuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/wi_stuff.c -------------------------------------------------------------------------------- /strife-ve-src/src/strife/wi_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/strife/wi_stuff.h -------------------------------------------------------------------------------- /strife-ve-src/src/tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/tables.c -------------------------------------------------------------------------------- /strife-ve-src/src/tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/tables.h -------------------------------------------------------------------------------- /strife-ve-src/src/v_patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/v_patch.h -------------------------------------------------------------------------------- /strife-ve-src/src/v_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/v_video.c -------------------------------------------------------------------------------- /strife-ve-src/src/v_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/v_video.h -------------------------------------------------------------------------------- /strife-ve-src/src/w_checksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/w_checksum.c -------------------------------------------------------------------------------- /strife-ve-src/src/w_checksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/w_checksum.h -------------------------------------------------------------------------------- /strife-ve-src/src/w_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/w_file.c -------------------------------------------------------------------------------- /strife-ve-src/src/w_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/w_file.h -------------------------------------------------------------------------------- /strife-ve-src/src/w_file_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/w_file_posix.c -------------------------------------------------------------------------------- /strife-ve-src/src/w_file_stdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/w_file_stdc.c -------------------------------------------------------------------------------- /strife-ve-src/src/w_file_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/w_file_win32.c -------------------------------------------------------------------------------- /strife-ve-src/src/w_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/w_main.c -------------------------------------------------------------------------------- /strife-ve-src/src/w_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/w_main.h -------------------------------------------------------------------------------- /strife-ve-src/src/w_merge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/w_merge.c -------------------------------------------------------------------------------- /strife-ve-src/src/w_merge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/w_merge.h -------------------------------------------------------------------------------- /strife-ve-src/src/w_wad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/w_wad.c -------------------------------------------------------------------------------- /strife-ve-src/src/w_wad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/w_wad.h -------------------------------------------------------------------------------- /strife-ve-src/src/z_native.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/z_native.c -------------------------------------------------------------------------------- /strife-ve-src/src/z_zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/z_zone.c -------------------------------------------------------------------------------- /strife-ve-src/src/z_zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/src/z_zone.h -------------------------------------------------------------------------------- /strife-ve-src/steamprepare_osx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/steamprepare_osx.sh -------------------------------------------------------------------------------- /strife-ve-src/strife-ve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/strife-ve.sh -------------------------------------------------------------------------------- /strife-ve-src/textscreen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/textscreen/.gitignore -------------------------------------------------------------------------------- /strife-ve-src/textscreen/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/textscreen/Doxyfile -------------------------------------------------------------------------------- /strife-ve-src/textscreen/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/textscreen/Makefile.am -------------------------------------------------------------------------------- /strife-ve-src/textscreen/textscreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/textscreen/textscreen.h -------------------------------------------------------------------------------- /strife-ve-src/textscreen/txt_button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/textscreen/txt_button.c -------------------------------------------------------------------------------- /strife-ve-src/textscreen/txt_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/textscreen/txt_button.h -------------------------------------------------------------------------------- /strife-ve-src/textscreen/txt_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/textscreen/txt_font.h -------------------------------------------------------------------------------- /strife-ve-src/textscreen/txt_gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/textscreen/txt_gui.c -------------------------------------------------------------------------------- /strife-ve-src/textscreen/txt_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/textscreen/txt_gui.h -------------------------------------------------------------------------------- /strife-ve-src/textscreen/txt_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/textscreen/txt_io.c -------------------------------------------------------------------------------- /strife-ve-src/textscreen/txt_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/textscreen/txt_io.h -------------------------------------------------------------------------------- /strife-ve-src/textscreen/txt_label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/textscreen/txt_label.c -------------------------------------------------------------------------------- /strife-ve-src/textscreen/txt_label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/textscreen/txt_label.h -------------------------------------------------------------------------------- /strife-ve-src/textscreen/txt_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/textscreen/txt_main.h -------------------------------------------------------------------------------- /strife-ve-src/textscreen/txt_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/textscreen/txt_sdl.c -------------------------------------------------------------------------------- /strife-ve-src/textscreen/txt_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/textscreen/txt_sdl.h -------------------------------------------------------------------------------- /strife-ve-src/textscreen/txt_strut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/textscreen/txt_strut.c -------------------------------------------------------------------------------- /strife-ve-src/textscreen/txt_strut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/textscreen/txt_strut.h -------------------------------------------------------------------------------- /strife-ve-src/textscreen/txt_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/textscreen/txt_table.c -------------------------------------------------------------------------------- /strife-ve-src/textscreen/txt_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/textscreen/txt_table.h -------------------------------------------------------------------------------- /strife-ve-src/textscreen/txt_utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/textscreen/txt_utf8.c -------------------------------------------------------------------------------- /strife-ve-src/textscreen/txt_utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/textscreen/txt_utf8.h -------------------------------------------------------------------------------- /strife-ve-src/textscreen/txt_widget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/textscreen/txt_widget.c -------------------------------------------------------------------------------- /strife-ve-src/textscreen/txt_widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/textscreen/txt_widget.h -------------------------------------------------------------------------------- /strife-ve-src/textscreen/txt_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/textscreen/txt_window.c -------------------------------------------------------------------------------- /strife-ve-src/textscreen/txt_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/textscreen/txt_window.h -------------------------------------------------------------------------------- /strife-ve-src/vc2012/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/vc2012/.gitignore -------------------------------------------------------------------------------- /strife-ve-src/vc2012/doom.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/vc2012/doom.vcproj -------------------------------------------------------------------------------- /strife-ve-src/vc2012/heretic.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/vc2012/heretic.vcproj -------------------------------------------------------------------------------- /strife-ve-src/vc2012/hexen.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/vc2012/hexen.vcproj -------------------------------------------------------------------------------- /strife-ve-src/vc2012/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/vc2012/inttypes.h -------------------------------------------------------------------------------- /strife-ve-src/vc2012/libopl.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/vc2012/libopl.vcproj -------------------------------------------------------------------------------- /strife-ve-src/vc2012/libopl.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/vc2012/libopl.vcxproj -------------------------------------------------------------------------------- /strife-ve-src/vc2012/server.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/vc2012/server.vcproj -------------------------------------------------------------------------------- /strife-ve-src/vc2012/server.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/vc2012/server.vcxproj -------------------------------------------------------------------------------- /strife-ve-src/vc2012/setup.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/vc2012/setup.vcproj -------------------------------------------------------------------------------- /strife-ve-src/vc2012/setup.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/vc2012/setup.vcxproj -------------------------------------------------------------------------------- /strife-ve-src/vc2012/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/vc2012/stdint.h -------------------------------------------------------------------------------- /strife-ve-src/vc2012/strife.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/vc2012/strife.vcproj -------------------------------------------------------------------------------- /strife-ve-src/vc2012/strife.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/vc2012/strife.vcxproj -------------------------------------------------------------------------------- /strife-ve-src/vc2012/win32.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/vc2012/win32.rc -------------------------------------------------------------------------------- /strife-ve-src/vc2012/win_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/vc2012/win_debug.c -------------------------------------------------------------------------------- /strife-ve-src/vc2012/win_opendir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/vc2012/win_opendir.c -------------------------------------------------------------------------------- /strife-ve-src/vc2012/win_opendir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/vc2012/win_opendir.h -------------------------------------------------------------------------------- /strife-ve-src/xcode/Chocolate/Chocolate/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /strife-ve-src/xcode/Chocolate/Frameworks/GOGService.framework/GOGService: -------------------------------------------------------------------------------- 1 | Versions/Current/GOGService -------------------------------------------------------------------------------- /strife-ve-src/xcode/Chocolate/Frameworks/GOGService.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /strife-ve-src/xcode/Chocolate/Frameworks/GOGService.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /strife-ve-src/xcode/Chocolate/Frameworks/SDL.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /strife-ve-src/xcode/Chocolate/Frameworks/SDL.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /strife-ve-src/xcode/Chocolate/Frameworks/SDL.framework/SDL: -------------------------------------------------------------------------------- 1 | Versions/Current/SDL -------------------------------------------------------------------------------- /strife-ve-src/xcode/Chocolate/Frameworks/SDL.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /strife-ve-src/xcode/Chocolate/Frameworks/SDL_mixer.framework/Frameworks: -------------------------------------------------------------------------------- 1 | Versions/Current/Frameworks -------------------------------------------------------------------------------- /strife-ve-src/xcode/Chocolate/Frameworks/SDL_mixer.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /strife-ve-src/xcode/Chocolate/Frameworks/SDL_mixer.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /strife-ve-src/xcode/Chocolate/Frameworks/SDL_mixer.framework/SDL_mixer: -------------------------------------------------------------------------------- 1 | Versions/Current/SDL_mixer -------------------------------------------------------------------------------- /strife-ve-src/xcode/Chocolate/Frameworks/SDL_mixer.framework/Versions/A/Frameworks/FLAC.framework/FLAC: -------------------------------------------------------------------------------- 1 | Versions/Current/FLAC -------------------------------------------------------------------------------- /strife-ve-src/xcode/Chocolate/Frameworks/SDL_mixer.framework/Versions/A/Frameworks/FLAC.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /strife-ve-src/xcode/Chocolate/Frameworks/SDL_mixer.framework/Versions/A/Frameworks/Ogg.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /strife-ve-src/xcode/Chocolate/Frameworks/SDL_mixer.framework/Versions/A/Frameworks/Ogg.framework/Ogg: -------------------------------------------------------------------------------- 1 | Versions/Current/Ogg -------------------------------------------------------------------------------- /strife-ve-src/xcode/Chocolate/Frameworks/SDL_mixer.framework/Versions/A/Frameworks/Ogg.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /strife-ve-src/xcode/Chocolate/Frameworks/SDL_mixer.framework/Versions/A/Frameworks/Vorbis.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /strife-ve-src/xcode/Chocolate/Frameworks/SDL_mixer.framework/Versions/A/Frameworks/mikmod.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /strife-ve-src/xcode/Chocolate/Frameworks/SDL_mixer.framework/Versions/A/Frameworks/smpeg.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /strife-ve-src/xcode/Chocolate/Frameworks/SDL_mixer.framework/Versions/A/Frameworks/smpeg.framework/smpeg: -------------------------------------------------------------------------------- 1 | Versions/Current/smpeg -------------------------------------------------------------------------------- /strife-ve-src/xcode/Chocolate/Frameworks/SDL_mixer.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /strife-ve-src/xcode/Chocolate/Frameworks/SDL_net.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /strife-ve-src/xcode/Chocolate/Frameworks/SDL_net.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /strife-ve-src/xcode/Chocolate/Frameworks/SDL_net.framework/SDL_net: -------------------------------------------------------------------------------- 1 | Versions/Current/SDL_net -------------------------------------------------------------------------------- /strife-ve-src/xcode/Chocolate/Frameworks/SDL_net.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /strife-ve-src/xcode/Chocolate/Frameworks/SteamService.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /strife-ve-src/xcode/Chocolate/Frameworks/SteamService.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /strife-ve-src/xcode/Chocolate/Frameworks/SteamService.framework/SteamService: -------------------------------------------------------------------------------- 1 | Versions/Current/SteamService -------------------------------------------------------------------------------- /strife-ve-src/xcode/Chocolate/Frameworks/SteamService.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /strife-ve-src/xcode/libpng/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/xcode/libpng/LICENSE.md -------------------------------------------------------------------------------- /strife-ve-src/xcode/libpng/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/xcode/libpng/README.md -------------------------------------------------------------------------------- /strife-ve-src/ymfmidi/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/ymfmidi/.gitignore -------------------------------------------------------------------------------- /strife-ve-src/ymfmidi/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/ymfmidi/.gitmodules -------------------------------------------------------------------------------- /strife-ve-src/ymfmidi/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/ymfmidi/COPYING.txt -------------------------------------------------------------------------------- /strife-ve-src/ymfmidi/GENMIDI.wopl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/ymfmidi/GENMIDI.wopl -------------------------------------------------------------------------------- /strife-ve-src/ymfmidi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/ymfmidi/README.md -------------------------------------------------------------------------------- /strife-ve-src/ymfmidi/src/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/ymfmidi/src/console.cpp -------------------------------------------------------------------------------- /strife-ve-src/ymfmidi/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/ymfmidi/src/main.cpp -------------------------------------------------------------------------------- /strife-ve-src/ymfmidi/src/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/ymfmidi/src/player.h -------------------------------------------------------------------------------- /strife-ve-src/ymfmidi/ymfm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/ymfmidi/ymfm/LICENSE -------------------------------------------------------------------------------- /strife-ve-src/ymfmidi/ymfm/examples/vgmrender/.gitignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /strife-ve-src/zlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/CMakeLists.txt -------------------------------------------------------------------------------- /strife-ve-src/zlib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/ChangeLog -------------------------------------------------------------------------------- /strife-ve-src/zlib/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/FAQ -------------------------------------------------------------------------------- /strife-ve-src/zlib/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/INDEX -------------------------------------------------------------------------------- /strife-ve-src/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/README -------------------------------------------------------------------------------- /strife-ve-src/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/adler32.c -------------------------------------------------------------------------------- /strife-ve-src/zlib/as400/bndsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/as400/bndsrc -------------------------------------------------------------------------------- /strife-ve-src/zlib/as400/zlib.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/as400/zlib.inc -------------------------------------------------------------------------------- /strife-ve-src/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/compress.c -------------------------------------------------------------------------------- /strife-ve-src/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/crc32.c -------------------------------------------------------------------------------- /strife-ve-src/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/crc32.h -------------------------------------------------------------------------------- /strife-ve-src/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/deflate.c -------------------------------------------------------------------------------- /strife-ve-src/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/deflate.h -------------------------------------------------------------------------------- /strife-ve-src/zlib/doc/rfc1950.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/doc/rfc1950.txt -------------------------------------------------------------------------------- /strife-ve-src/zlib/doc/rfc1951.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/doc/rfc1951.txt -------------------------------------------------------------------------------- /strife-ve-src/zlib/doc/rfc1952.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/doc/rfc1952.txt -------------------------------------------------------------------------------- /strife-ve-src/zlib/examples/gun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/examples/gun.c -------------------------------------------------------------------------------- /strife-ve-src/zlib/examples/zran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/examples/zran.c -------------------------------------------------------------------------------- /strife-ve-src/zlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/gzclose.c -------------------------------------------------------------------------------- /strife-ve-src/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/gzguts.h -------------------------------------------------------------------------------- /strife-ve-src/zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/gzlib.c -------------------------------------------------------------------------------- /strife-ve-src/zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/gzread.c -------------------------------------------------------------------------------- /strife-ve-src/zlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/gzwrite.c -------------------------------------------------------------------------------- /strife-ve-src/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/infback.c -------------------------------------------------------------------------------- /strife-ve-src/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/inffast.c -------------------------------------------------------------------------------- /strife-ve-src/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/inffast.h -------------------------------------------------------------------------------- /strife-ve-src/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/inffixed.h -------------------------------------------------------------------------------- /strife-ve-src/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/inflate.c -------------------------------------------------------------------------------- /strife-ve-src/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/inflate.h -------------------------------------------------------------------------------- /strife-ve-src/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/inftrees.c -------------------------------------------------------------------------------- /strife-ve-src/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/inftrees.h -------------------------------------------------------------------------------- /strife-ve-src/zlib/make_vms.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/make_vms.com -------------------------------------------------------------------------------- /strife-ve-src/zlib/old/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/old/README -------------------------------------------------------------------------------- /strife-ve-src/zlib/old/descrip.mms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/old/descrip.mms -------------------------------------------------------------------------------- /strife-ve-src/zlib/qnx/package.qpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/qnx/package.qpg -------------------------------------------------------------------------------- /strife-ve-src/zlib/test/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/test/example.c -------------------------------------------------------------------------------- /strife-ve-src/zlib/test/infcover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/test/infcover.c -------------------------------------------------------------------------------- /strife-ve-src/zlib/test/minigzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/test/minigzip.c -------------------------------------------------------------------------------- /strife-ve-src/zlib/treebuild.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/treebuild.xml -------------------------------------------------------------------------------- /strife-ve-src/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/trees.c -------------------------------------------------------------------------------- /strife-ve-src/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/trees.h -------------------------------------------------------------------------------- /strife-ve-src/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/uncompr.c -------------------------------------------------------------------------------- /strife-ve-src/zlib/win32/zlib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/win32/zlib.def -------------------------------------------------------------------------------- /strife-ve-src/zlib/win32/zlib1.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/win32/zlib1.rc -------------------------------------------------------------------------------- /strife-ve-src/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/zconf.h -------------------------------------------------------------------------------- /strife-ve-src/zlib/zconf.h.cmakein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/zconf.h.cmakein -------------------------------------------------------------------------------- /strife-ve-src/zlib/zconf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/zconf.h.in -------------------------------------------------------------------------------- /strife-ve-src/zlib/zlib.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/zlib.3 -------------------------------------------------------------------------------- /strife-ve-src/zlib/zlib.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/zlib.3.pdf -------------------------------------------------------------------------------- /strife-ve-src/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/zlib.h -------------------------------------------------------------------------------- /strife-ve-src/zlib/zlib.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/zlib.map -------------------------------------------------------------------------------- /strife-ve-src/zlib/zlib.pc.cmakein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/zlib.pc.cmakein -------------------------------------------------------------------------------- /strife-ve-src/zlib/zlib.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/zlib.pc.in -------------------------------------------------------------------------------- /strife-ve-src/zlib/zlib2ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/zlib2ansi -------------------------------------------------------------------------------- /strife-ve-src/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/zutil.c -------------------------------------------------------------------------------- /strife-ve-src/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svkaiser/strife-ve/HEAD/strife-ve-src/zlib/zutil.h --------------------------------------------------------------------------------