Skip to content

Releases: libsdl-org/SDL_mixer

2.8.0

21 Jan 17:33
Compare
Choose a tag to compare

In addition to lots of bug fixes, here are the major changes in this release:

  • Added support for loading wavpack sound files (https://www.wavpack.com/)
  • Added support for loading classic console sound files using Game_Music_Emu (https://github.com/libgme/game-music-emu)
  • Use minimp3 instead of dr_mp3 as the default backend for MP3 music
  • Use libxmp instead of modplug as the default backend for MOD music
    To use libmodplug instead, configure using --enable-music-mod-modplug --disable-music-mod-xmp
  • Added support for FLAC audio in Ogg containers
  • Added Mix_PauseAudio() to pause and resume all audio playback
  • Added Mix_GetNumTracks() and Mix_StartTrack() for managing tracks in GME files

2.7.2

15 Jan 18:05
Compare
Choose a tag to compare
2.7.2 Pre-release
Pre-release

This is a release candidate for 2.8.0.

In addition to lots of bug fixes, here are the major changes in this release:

  • Added support for loading wavpack sound files (https://www.wavpack.com/)
  • Added support for loading classic console sound files using Game_Music_Emu (https://github.com/libgme/game-music-emu)
  • Use minimp3 instead of dr_mp3 as the default backend for MP3 music
  • Use libxmp instead of modplug as the default backend for MOD music
    To use libmodplug instead, configure using --enable-music-mod-modplug --disable-music-mod-xmp
  • Added support for FLAC audio in Ogg containers
  • Added Mix_PauseAudio() to pause and resume all audio playback
  • Added Mix_GetNumTracks() and Mix_StartTrack() for managing tracks in GME files

2.6.3

07 Feb 01:04
Compare
Choose a tag to compare

This is a stable bugfix release, with the following changes:

  • Fixed tags memory leak in Opus music

2.6.2

19 Aug 17:36
Compare
Choose a tag to compare

This is a quick update to fix building with homebrew on macOS

2.6.1

12 Jul 20:32
Compare
Choose a tag to compare

This is a minor bug-fix release, fixing a packaging issue on Linux.

Here are the highlights for the 2.6.0 release:

  • API documentation is now available on the wiki: https://wiki.libsdl.org/SDL_mixer
  • Added support for building with CMake
  • Added support for playing Ogg files using stb_vorbis, which is now the default Vorbis backend.
    To use libvorbis instead, configure using --disable-music-ogg-stb --enable-music-ogg-vorbis
  • Added support for playing FLAC files using dr_flac, which is now the default FLAC music backend.
    To use libflac instead, configure using --disable-music-flac-drflac --enable-music-flac-libflac
  • Added support for playing MP3 files using dr_mp3, which is now the default MP3 music backend.
    To use libmpg123 instead, configure using --disable-music-mp3-drmp3 --enable-music-mp3-mpg123
  • Added libxmp support for mod music playback. Modplug is still the default backend for MOD music.
    To use libxmp instead, configure using --disable-music-mod-modplug --enable-music-mod-xmp
  • Removed support for libmad as a MP3 music backend.
  • Removed support for libmikmod as a MOD music backend.
  • Added Mix_MasterVolume() for additional volume control over all channels
  • Update Mix_Init() return value to match documentation, including MIXER_INIT_* flags for already-initialized modules
  • Added Mix_HasMusicDecoder()
  • Memory leak fixes and F32 format support to fluidsynth player
  • Fixed distorted MIDI playback with FluidSynth if sample rate is out of library's limits
  • Added Mix_ModMusicJumpToOrder() for mod music formats
  • Enabled module internal loops in modplug player
  • Respect original mp3 file offset
  • Support setting soundfont via SDL_SOUNDFONTS in OSX native midi
  • Fixed mp3 file detection
  • Fixes to ogg playback on big-endian devices
  • Added functions to get metadata information:
    Mix_GetMusicTitle()
    Mix_GetMusicTitleTag()
    Mix_GetMusicArtistTag()
    Mix_GetMusicAlbumTag()
    Mix_GetMusicCopyrightTag()
  • Add functions to get loop point information:
    Mix_GetMusicLoopStartTime()
    Mix_GetMusicLoopEndTime()
    Mix_GetMusicLoopLengthTime()
  • Added Mix_GetMusicVolume() and Mix_GetMusicPosition()
  • Added Mix_MusicDuration() to return music duration in seconds
  • Fixed music_mpg123 seek bug when sample rate of the file and the stream don't match
  • Timidity improvements, added Mix_SetTimidityCfg()
  • Improved mp3 tag detection/skipping
  • Extended support for WAV files
  • Allow rmid files be opened by native midi
  • Fixed possible crash in win32 native midi
  • Prevent clipping due to volume settings in modplug music
  • Added looping support for Opus files
  • Added looping support for FLAC files
  • Improved OGG looping support
  • Fixed loading Opus audio as audio chunks

2.6.0

08 Jul 13:58
Compare
Choose a tag to compare

In addition to new CMake support by @madebr and many bug fixes, here are the highlights since the last release:

  • API documentation is now available on the wiki: https://wiki.libsdl.org/SDL_mixer
  • Added support for building with CMake
  • Added support for playing Ogg files using stb_vorbis, which is now the default Vorbis backend.
    To use libvorbis instead, configure using --disable-music-ogg-stb --enable-music-ogg-vorbis
  • Added support for playing FLAC files using dr_flac, which is now the default FLAC music backend.
    To use libflac instead, configure using --disable-music-flac-drflac --enable-music-flac-libflac
  • Added support for playing MP3 files using dr_mp3, which is now the default MP3 music backend.
    To use libmpg123 instead, configure using --disable-music-mp3-drmp3 --enable-music-mp3-mpg123
  • Added libxmp support for mod music playback. Modplug is still the default backend for MOD music.
    To use libxmp instead, configure using --disable-music-mod-modplug --enable-music-mod-xmp
  • Removed support for libmad as a MP3 music backend.
  • Removed support for libmikmod as a MOD music backend.
  • Added Mix_MasterVolume() for additional volume control over all channels
  • Update Mix_Init() return value to match documentation, including MIXER_INIT_* flags for already-initialized modules
  • Added Mix_HasMusicDecoder()
  • Memory leak fixes and F32 format support to fluidsynth player
  • Fixed distorted MIDI playback with FluidSynth if sample rate is out of library's limits
  • Added Mix_ModMusicJumpToOrder() for mod music formats
  • Enabled module internal loops in modplug player
  • Respect original mp3 file offset
  • Support setting soundfont via SDL_SOUNDFONTS in OSX native midi
  • Fixed mp3 file detection
  • Fixes to ogg playback on big-endian devices
  • Added functions to get metadata information:
    Mix_GetMusicTitle()
    Mix_GetMusicTitleTag()
    Mix_GetMusicArtistTag()
    Mix_GetMusicAlbumTag()
    Mix_GetMusicCopyrightTag()
  • Add functions to get loop point information:
    Mix_GetMusicLoopStartTime()
    Mix_GetMusicLoopEndTime()
    Mix_GetMusicLoopLengthTime()
  • Added Mix_GetMusicVolume() and Mix_GetMusicPosition()
  • Added Mix_MusicDuration() to return music duration in seconds
  • Fixed music_mpg123 seek bug when sample rate of the file and the stream don't match
  • Timidity improvements, added Mix_SetTimidityCfg()
  • Improved mp3 tag detection/skipping
  • Extended support for WAV files
  • Allow rmid files be opened by native midi
  • Fixed possible crash in win32 native midi
  • Prevent clipping due to volume settings in modplug music
  • Added looping support for Opus files
  • Added looping support for FLAC files
  • Improved OGG looping support
  • Fixed loading Opus audio as audio chunks

2.5.3

07 Jul 14:39
Compare
Choose a tag to compare
2.5.3 Pre-release
Pre-release

This is hopefully the final release candidate for 2.6.0.

The header documentation has been updated and is available at https://wiki.libsdl.org/SDL_mixer

2.5.2

17 Jun 05:07
Compare
Choose a tag to compare
2.5.2 Pre-release
Pre-release

This is a release candidate for 2.6.0.

In addition to new CMake support by @madebr and many bug fixes, here are the highlights since the last release:

  • Added support for playing Ogg files using stb_vorbis, which is now the default Vorbis backend.
    To use libvorbis instead, configure using --disable-music-ogg-stb --enable-music-ogg-vorbis
  • Added support for playing FLAC files using dr_flac, which is now the default FLAC music backend.
    To use libflac instead, configure using --disable-music-flac-drflac --enable-music-flac-libflac
  • Added support for playing MP3 files using dr_mp3, which is now the default MP3 music backend.
    To use libmpg123 instead, configure using --disable-music-mp3-drmp3 --enable-music-mp3-mpg123
  • Added libxmp support for mod music playback. Modplug is still the default backend for MOD music.
    To use libxmp instead, configure using --disable-music-mod-modplug --enable-music-mod-xmp
  • Removed support for libmad as a MP3 music backend.
  • Removed support for libmikmod as a MOD music backend.
  • Added Mix_MasterVolume() for additional volume control over all channels
  • Update Mix_Init() return value to match documentation, including MIXER_INIT_* flags for already-initialized modules
  • Added Mix_HasMusicDecoder()
  • Memory leak fixes and F32 format support to fluidsynth player
  • Fixed distorted MIDI playback with FluidSynth if sample rate is out of library's limits
  • Added Mix_ModMusicJumpToOrder() for mod music formats
  • Enabled module internal loops in modplug player
  • Respect original mp3 file offset
  • Support setting soundfont via SDL_SOUNDFONTS in OSX native midi
  • Fixed mp3 file detection
  • Fixes to ogg playback on big-endian devices
  • Added functions to get metadata information:
    Mix_GetMusicTitle()
    Mix_GetMusicTitleTag()
    Mix_GetMusicArtistTag()
    Mix_GetMusicAlbumTag()
    Mix_GetMusicCopyrightTag()
  • Add functions to get loop point information:
    Mix_GetMusicLoopStartTime()
    Mix_GetMusicLoopEndTime()
    Mix_GetMusicLoopLengthTime()
  • Added Mix_GetMusicVolume() and Mix_GetMusicPosition()
  • Added Mix_MusicDuration() to return music duration in seconds
  • Fixed music_mpg123 seek bug when sample rate of the file and the stream don't match
  • Timidity improvements, added Mix_SetTimidityCfg()
  • Improved mp3 tag detection/skipping
  • Extended support for WAV files
  • Allow rmid files be opened by native midi
  • Fixed possible crash in win32 native midi
  • Prevent clipping due to volume settings in modplug music
  • Added looping support for Opus files
  • Added looping support for FLAC files
  • Improved OGG looping support
  • Fixed loading Opus audio as audio chunks

2.5.1

25 May 22:35
Compare
Choose a tag to compare
2.5.1 Pre-release
Pre-release

Early testing pre-release for 2.6.0, not for general use

2.0.4

11 Jan 20:34
Compare
Choose a tag to compare

Changes in this release:

  • Removed smpeg support for mp3 music, now that it's replaced by libmpg123
  • Fixed mp3 mad decoder to skip tags, which otherwise would lead to crashes
  • Added support for Opus music playback using opusfile library