-
-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
Submodule AudioCodecs
updated
24 files
+2 −0 | CMakeLists.txt | |
+1 −0 | FluidLite/CMakeLists.txt | |
+26 −0 | audio_codec_common.cmake | |
+16 −0 | download_sdl2_hg.cmake | |
+2 −0 | libADLMIDI/examples/golang-mid2wav/.gitignore | |
+15 −0 | libADLMIDI/examples/golang-mid2wav/README.txt | |
+129 −0 | libADLMIDI/examples/golang-mid2wav/mid2wav.go | |
+1 −0 | libFLAC/CMakeLists.txt | |
+2 −0 | libOPNMIDI/examples/golang-mid2wav/.gitignore | |
+16 −0 | libOPNMIDI/examples/golang-mid2wav/README.txt | |
+137 −0 | libOPNMIDI/examples/golang-mid2wav/mid2wav.go | |
+1 −0 | libgme/CMakeLists.txt | |
+8 −8 | libgme/src/Hes_Cpu.cpp | |
+3 −0 | libgme/src/Nes_Fds_Apu.h | |
+5 −11 | libgme/src/Spc_Emu.cpp | |
+0 −10 | libgme/src/blargg_common.h | |
+5 −3 | libgme/src/ext/emu2413.c | |
+4 −0 | libgme/src/gme.cpp | |
+1 −0 | libmodplug/CMakeLists.txt | |
+1 −0 | libopus/CMakeLists.txt | |
+1 −0 | libtimidity-sdl/CMakeLists.txt | |
+1 −0 | libvorbis/CMakeLists.txt | |
+4 −0 | libxmp/docs/Changelog | |
+20 −1 | libxmp/src/scan.c |
Submodule SDL_Mixer_X
updated
19 files
+3 −3 | .appveyor.yml | |
+41 −122 | CMakeLists.txt | |
+1 −0 | cmake/DownloadAudioCodecs.cmake | |
+44 −0 | cmake/mixerx_libapi.cmake | |
+51 −0 | cmake/mixerx_macros.cmake | |
+68 −0 | cmake/mixerx_setup.cmake | |
+20 −21 | include/SDL_mixer.h | |
+45 −20 | src/codecs/dr_libs/dr_flac.h | |
+31 −11 | src/codecs/dr_libs/dr_mp3.h | |
+5 −0 | src/codecs/music_drmp3.cmake | |
+50 −7 | src/codecs/music_flac.c | |
+1 −1 | src/codecs/music_fluidsynth.c | |
+7 −2 | src/codecs/music_ogg.c | |
+26 −7 | src/codecs/music_wavpack.c | |
+4 −0 | src/codecs/music_wavpack.cmake | |
+14 −0 | src/codecs/music_xmp.c | |
+14 −0 | src/codecs/music_xmp.cmake | |
+198 −188 | src/effect_position.c | |
+3 −0 | src/music.c |