mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Merge branch 'public-sdl2mixer-update' into 'master'
Update SDL Mixer to 2.0.4 See merge request STJr/SRB2!322
This commit is contained in:
commit
a0bec73904
77 changed files with 493 additions and 26 deletions
|
|
@ -1,3 +1,15 @@
|
||||||
|
2.0.4:
|
||||||
|
Ozkan Sezer - Wed, 10 Oct 2018 14:56:10
|
||||||
|
* Removed smpeg support for mp3 music, now that it's replaced by libmpg123
|
||||||
|
Ozkan Sezer - Sun, 07 Oct 2018 08:50:02
|
||||||
|
* Fixed mp3 mad decoder to skip tags, which otherwise would lead to crashes
|
||||||
|
Ozkan Sezer - Fri, 15 Jun 2018 05:32:56
|
||||||
|
* Added support for Opus music playback using opusfile library
|
||||||
|
|
||||||
|
2.0.3:
|
||||||
|
Sam Lantinga - Thu, Mar 1, 2018 9:06:58 AM
|
||||||
|
* Fixed regression where Mix_Init() would return 0 for available music formats
|
||||||
|
|
||||||
2.0.2:
|
2.0.2:
|
||||||
Sam Lantinga - Fri Oct 20 22:04:50 PDT 2017
|
Sam Lantinga - Fri Oct 20 22:04:50 PDT 2017
|
||||||
* Implemented 24-bit and surround sound support for FLAC audio files
|
* Implemented 24-bit and surround sound support for FLAC audio files
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
SDL_mixer: An audio mixer library based on the SDL library
|
SDL_mixer: An audio mixer library based on the SDL library
|
||||||
Copyright (C) 1997-2017 Sam Lantinga <slouken@libsdl.org>
|
Copyright (C) 1997-2018 Sam Lantinga <slouken@libsdl.org>
|
||||||
|
|
||||||
This software is provided 'as-is', without any express or implied
|
This software is provided 'as-is', without any express or implied
|
||||||
warranty. In no event will the authors be held liable for any damages
|
warranty. In no event will the authors be held liable for any damages
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@ for documentation on this mixer library.
|
||||||
The mixer can currently load Microsoft WAVE files and Creative Labs VOC
|
The mixer can currently load Microsoft WAVE files and Creative Labs VOC
|
||||||
files as audio samples, it can load FLAC files with libFLAC, it can load
|
files as audio samples, it can load FLAC files with libFLAC, it can load
|
||||||
Ogg Vorbis files with Ogg Vorbis or Tremor libraries, it can load MP3 files
|
Ogg Vorbis files with Ogg Vorbis or Tremor libraries, it can load MP3 files
|
||||||
using mpg123, SMPEG or libmad, and it can load MIDI files with Timidity,
|
using mpg123 or libmad, and it can load MIDI files with Timidity,
|
||||||
FluidSynth, and natively on Windows, Mac OSX, and Linux, and finally it can
|
FluidSynth, and natively on Windows, Mac OSX, and Linux, and finally it can
|
||||||
load the following file formats via ModPlug or MikMod: .MOD .S3M .IT .XM.
|
load the following file formats via ModPlug or MikMod: .MOD .S3M .IT .XM.
|
||||||
|
|
||||||
|
|
|
||||||
15
libs/SDL2_mixer/SRB2NOTE.txt
Normal file
15
libs/SDL2_mixer/SRB2NOTE.txt
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
# SDL Mixer Development Libaries
|
||||||
|
|
||||||
|
Download both the VC and MinGW packages and extract them here.
|
||||||
|
|
||||||
|
https://www.libsdl.org/projects/SDL_mixer/
|
||||||
|
|
||||||
|
## VC Package
|
||||||
|
|
||||||
|
* include
|
||||||
|
* lib
|
||||||
|
|
||||||
|
## MinGW Package
|
||||||
|
|
||||||
|
* i686-w64-mingw32
|
||||||
|
* x86_64-w64-mingw32
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
The source code to this library used with SDL_mixer can be found here:
|
The source code to this library used with SDL_mixer can be found here:
|
||||||
http://www.libsdl.org/projects/SDL_mixer/libs/
|
https://hg.libsdl.org/SDL_mixer/file/default/external
|
||||||
---
|
---
|
||||||
|
|
||||||
Copyright (C) 2000,2001,2002,2003,2004,2005,2006,2007 Josh Coalson
|
Copyright (C) 2000,2001,2002,2003,2004,2005,2006,2007 Josh Coalson
|
||||||
|
|
|
||||||
|
|
@ -1 +1,5 @@
|
||||||
|
The source code to this library used with SDL_mixer can be found here:
|
||||||
|
https://hg.libsdl.org/SDL_mixer/file/default/external
|
||||||
|
---
|
||||||
|
|
||||||
ModPlug-XMMS and libmodplug are now in the public domain.
|
ModPlug-XMMS and libmodplug are now in the public domain.
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,7 @@
|
||||||
|
The source code to this library used with SDL_mixer can be found here:
|
||||||
|
https://hg.libsdl.org/SDL_mixer/file/default/external
|
||||||
|
---
|
||||||
|
|
||||||
This is the file that contains the terms of use, copying, etc. for the mpg123 distribution package.
|
This is the file that contains the terms of use, copying, etc. for the mpg123 distribution package.
|
||||||
|
|
||||||
Main message, to include in "About ..." boxes, etc:
|
Main message, to include in "About ..." boxes, etc:
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
The source code to this library used with SDL_mixer can be found here:
|
The source code to this library used with SDL_mixer can be found here:
|
||||||
http://www.libsdl.org/projects/SDL_mixer/libs/
|
https://hg.libsdl.org/SDL_image/file/default/external
|
||||||
---
|
---
|
||||||
|
|
||||||
Copyright (c) 2002-2008 Xiph.org Foundation
|
Copyright (c) 2002-2008 Xiph.org Foundation
|
||||||
|
|
|
||||||
48
libs/SDL2_mixer/i686-w64-mingw32/bin/LICENSE.opus.txt
Normal file
48
libs/SDL2_mixer/i686-w64-mingw32/bin/LICENSE.opus.txt
Normal file
|
|
@ -0,0 +1,48 @@
|
||||||
|
The source code to this library used with SDL_mixer can be found here:
|
||||||
|
https://hg.libsdl.org/SDL_mixer/file/default/external
|
||||||
|
---
|
||||||
|
|
||||||
|
Copyright 2001-2011 Xiph.Org, Skype Limited, Octasic,
|
||||||
|
Jean-Marc Valin, Timothy B. Terriberry,
|
||||||
|
CSIRO, Gregory Maxwell, Mark Borgerding,
|
||||||
|
Erik de Castro Lopo
|
||||||
|
|
||||||
|
Redistribution and use in source and binary forms, with or without
|
||||||
|
modification, are permitted provided that the following conditions
|
||||||
|
are met:
|
||||||
|
|
||||||
|
- Redistributions of source code must retain the above copyright
|
||||||
|
notice, this list of conditions and the following disclaimer.
|
||||||
|
|
||||||
|
- Redistributions in binary form must reproduce the above copyright
|
||||||
|
notice, this list of conditions and the following disclaimer in the
|
||||||
|
documentation and/or other materials provided with the distribution.
|
||||||
|
|
||||||
|
- Neither the name of Internet Society, IETF or IETF Trust, nor the
|
||||||
|
names of specific contributors, may be used to endorse or promote
|
||||||
|
products derived from this software without specific prior written
|
||||||
|
permission.
|
||||||
|
|
||||||
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||||
|
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||||
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||||
|
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
|
||||||
|
OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
||||||
|
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||||
|
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
||||||
|
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
||||||
|
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
||||||
|
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||||
|
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
|
Opus is subject to the royalty-free patent licenses which are
|
||||||
|
specified at:
|
||||||
|
|
||||||
|
Xiph.Org Foundation:
|
||||||
|
https://datatracker.ietf.org/ipr/1524/
|
||||||
|
|
||||||
|
Microsoft Corporation:
|
||||||
|
https://datatracker.ietf.org/ipr/1914/
|
||||||
|
|
||||||
|
Broadcom Corporation:
|
||||||
|
https://datatracker.ietf.org/ipr/1526/
|
||||||
32
libs/SDL2_mixer/i686-w64-mingw32/bin/LICENSE.opusfile.txt
Normal file
32
libs/SDL2_mixer/i686-w64-mingw32/bin/LICENSE.opusfile.txt
Normal file
|
|
@ -0,0 +1,32 @@
|
||||||
|
The source code to this library used with SDL_mixer can be found here:
|
||||||
|
https://hg.libsdl.org/SDL_mixer/file/default/external
|
||||||
|
---
|
||||||
|
|
||||||
|
Copyright (c) 1994-2013 Xiph.Org Foundation and contributors
|
||||||
|
|
||||||
|
Redistribution and use in source and binary forms, with or without
|
||||||
|
modification, are permitted provided that the following conditions
|
||||||
|
are met:
|
||||||
|
|
||||||
|
- Redistributions of source code must retain the above copyright
|
||||||
|
notice, this list of conditions and the following disclaimer.
|
||||||
|
|
||||||
|
- Redistributions in binary form must reproduce the above copyright
|
||||||
|
notice, this list of conditions and the following disclaimer in the
|
||||||
|
documentation and/or other materials provided with the distribution.
|
||||||
|
|
||||||
|
- Neither the name of the Xiph.Org Foundation nor the names of its
|
||||||
|
contributors may be used to endorse or promote products derived from
|
||||||
|
this software without specific prior written permission.
|
||||||
|
|
||||||
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||||
|
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||||
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||||
|
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION
|
||||||
|
OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||||
|
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||||
|
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||||
|
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||||
|
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||||
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
libs/SDL2_mixer/i686-w64-mingw32/bin/libopus-0.dll
Normal file
BIN
libs/SDL2_mixer/i686-w64-mingw32/bin/libopus-0.dll
Normal file
Binary file not shown.
BIN
libs/SDL2_mixer/i686-w64-mingw32/bin/libopusfile-0.dll
Normal file
BIN
libs/SDL2_mixer/i686-w64-mingw32/bin/libopusfile-0.dll
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
SDL_mixer: An audio mixer library based on the SDL library
|
SDL_mixer: An audio mixer library based on the SDL library
|
||||||
Copyright (C) 1997-2017 Sam Lantinga <slouken@libsdl.org>
|
Copyright (C) 1997-2018 Sam Lantinga <slouken@libsdl.org>
|
||||||
|
|
||||||
This software is provided 'as-is', without any express or implied
|
This software is provided 'as-is', without any express or implied
|
||||||
warranty. In no event will the authors be held liable for any damages
|
warranty. In no event will the authors be held liable for any damages
|
||||||
|
|
@ -38,7 +38,7 @@ extern "C" {
|
||||||
*/
|
*/
|
||||||
#define SDL_MIXER_MAJOR_VERSION 2
|
#define SDL_MIXER_MAJOR_VERSION 2
|
||||||
#define SDL_MIXER_MINOR_VERSION 0
|
#define SDL_MIXER_MINOR_VERSION 0
|
||||||
#define SDL_MIXER_PATCHLEVEL 2
|
#define SDL_MIXER_PATCHLEVEL 4
|
||||||
|
|
||||||
/* This macro can be used to fill a version structure with the compile-time
|
/* This macro can be used to fill a version structure with the compile-time
|
||||||
* version of the SDL_mixer library.
|
* version of the SDL_mixer library.
|
||||||
|
|
@ -80,7 +80,8 @@ typedef enum
|
||||||
MIX_INIT_MOD = 0x00000002,
|
MIX_INIT_MOD = 0x00000002,
|
||||||
MIX_INIT_MP3 = 0x00000008,
|
MIX_INIT_MP3 = 0x00000008,
|
||||||
MIX_INIT_OGG = 0x00000010,
|
MIX_INIT_OGG = 0x00000010,
|
||||||
MIX_INIT_MID = 0x00000020
|
MIX_INIT_MID = 0x00000020,
|
||||||
|
MIX_INIT_OPUS = 0x00000040
|
||||||
} MIX_InitFlags;
|
} MIX_InitFlags;
|
||||||
|
|
||||||
/* Loads dynamic libraries and prepares them for use. Flags should be
|
/* Loads dynamic libraries and prepares them for use. Flags should be
|
||||||
|
|
@ -134,7 +135,8 @@ typedef enum {
|
||||||
MUS_MP3,
|
MUS_MP3,
|
||||||
MUS_MP3_MAD_UNUSED,
|
MUS_MP3_MAD_UNUSED,
|
||||||
MUS_FLAC,
|
MUS_FLAC,
|
||||||
MUS_MODPLUG_UNUSED
|
MUS_MODPLUG_UNUSED,
|
||||||
|
MUS_OPUS
|
||||||
} Mix_MusicType;
|
} Mix_MusicType;
|
||||||
|
|
||||||
/* The internal format for a music chunk interpreted via mikmod */
|
/* The internal format for a music chunk interpreted via mikmod */
|
||||||
|
|
|
||||||
Binary file not shown.
Binary file not shown.
41
libs/SDL2_mixer/i686-w64-mingw32/lib/libSDL2_mixer.la
Normal file
41
libs/SDL2_mixer/i686-w64-mingw32/lib/libSDL2_mixer.la
Normal file
|
|
@ -0,0 +1,41 @@
|
||||||
|
# libSDL2_mixer.la - a libtool library file
|
||||||
|
# Generated by ltmain.sh (GNU libtool) 2.2.6
|
||||||
|
#
|
||||||
|
# Please DO NOT delete this file!
|
||||||
|
# It is necessary for linking the library.
|
||||||
|
|
||||||
|
# The name that we can dlopen(3).
|
||||||
|
dlname='../bin/SDL2_mixer.dll'
|
||||||
|
|
||||||
|
# Names of this library.
|
||||||
|
library_names='libSDL2_mixer.dll.a'
|
||||||
|
|
||||||
|
# The name of the static archive.
|
||||||
|
old_library='libSDL2_mixer.a'
|
||||||
|
|
||||||
|
# Linker flags that can not go in dependency_libs.
|
||||||
|
inherited_linker_flags=''
|
||||||
|
|
||||||
|
# Libraries that this one depends upon.
|
||||||
|
dependency_libs=' -L/opt/local/i686-w64-mingw32/lib -lmingw32 /opt/local/i686-w64-mingw32/lib/libSDL2.la -ldinput8 -ldxguid -ldxerr8 -luser32 -lgdi32 -limm32 -lole32 -loleaut32 -lshell32 -lsetupapi -lversion -luuid -lwinmm'
|
||||||
|
|
||||||
|
# Names of additional weak libraries provided by this library
|
||||||
|
weak_library_names=''
|
||||||
|
|
||||||
|
# Version information for libSDL2_mixer.
|
||||||
|
current=2
|
||||||
|
age=2
|
||||||
|
revision=2
|
||||||
|
|
||||||
|
# Is this an already installed library?
|
||||||
|
installed=yes
|
||||||
|
|
||||||
|
# Should we warn about portability when linking against -modules?
|
||||||
|
shouldnotlink=no
|
||||||
|
|
||||||
|
# Files to dlopen/dlpreopen
|
||||||
|
dlopen=''
|
||||||
|
dlpreopen=''
|
||||||
|
|
||||||
|
# Directory that this library needs to be installed in:
|
||||||
|
libdir='/Users/valve/release/SDL_mixer/SDL2_mixer-2.0.4/i686-w64-mingw32/lib'
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
prefix=/usr/local/i686-w64-mingw32
|
prefix=/opt/local/i686-w64-mingw32
|
||||||
exec_prefix=${prefix}
|
exec_prefix=${prefix}
|
||||||
libdir=${exec_prefix}/lib
|
libdir=${exec_prefix}/lib
|
||||||
includedir=${prefix}/include
|
includedir=${prefix}/include
|
||||||
|
|
||||||
Name: SDL2_mixer
|
Name: SDL2_mixer
|
||||||
Description: mixer library for Simple DirectMedia Layer
|
Description: mixer library for Simple DirectMedia Layer
|
||||||
Version: 2.0.2
|
Version: 2.0.4
|
||||||
Requires: sdl2 >= 2.0.7
|
Requires: sdl2 >= 2.0.7
|
||||||
Libs: -L${libdir} -lSDL2_mixer
|
Libs: -L${libdir} -lSDL2_mixer
|
||||||
Cflags: -I${includedir}/SDL2
|
Cflags: -I${includedir}/SDL2
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
SDL_mixer: An audio mixer library based on the SDL library
|
SDL_mixer: An audio mixer library based on the SDL library
|
||||||
Copyright (C) 1997-2017 Sam Lantinga <slouken@libsdl.org>
|
Copyright (C) 1997-2018 Sam Lantinga <slouken@libsdl.org>
|
||||||
|
|
||||||
This software is provided 'as-is', without any express or implied
|
This software is provided 'as-is', without any express or implied
|
||||||
warranty. In no event will the authors be held liable for any damages
|
warranty. In no event will the authors be held liable for any damages
|
||||||
|
|
@ -38,7 +38,7 @@ extern "C" {
|
||||||
*/
|
*/
|
||||||
#define SDL_MIXER_MAJOR_VERSION 2
|
#define SDL_MIXER_MAJOR_VERSION 2
|
||||||
#define SDL_MIXER_MINOR_VERSION 0
|
#define SDL_MIXER_MINOR_VERSION 0
|
||||||
#define SDL_MIXER_PATCHLEVEL 2
|
#define SDL_MIXER_PATCHLEVEL 4
|
||||||
|
|
||||||
/* This macro can be used to fill a version structure with the compile-time
|
/* This macro can be used to fill a version structure with the compile-time
|
||||||
* version of the SDL_mixer library.
|
* version of the SDL_mixer library.
|
||||||
|
|
@ -80,7 +80,8 @@ typedef enum
|
||||||
MIX_INIT_MOD = 0x00000002,
|
MIX_INIT_MOD = 0x00000002,
|
||||||
MIX_INIT_MP3 = 0x00000008,
|
MIX_INIT_MP3 = 0x00000008,
|
||||||
MIX_INIT_OGG = 0x00000010,
|
MIX_INIT_OGG = 0x00000010,
|
||||||
MIX_INIT_MID = 0x00000020
|
MIX_INIT_MID = 0x00000020,
|
||||||
|
MIX_INIT_OPUS = 0x00000040
|
||||||
} MIX_InitFlags;
|
} MIX_InitFlags;
|
||||||
|
|
||||||
/* Loads dynamic libraries and prepares them for use. Flags should be
|
/* Loads dynamic libraries and prepares them for use. Flags should be
|
||||||
|
|
@ -134,7 +135,8 @@ typedef enum {
|
||||||
MUS_MP3,
|
MUS_MP3,
|
||||||
MUS_MP3_MAD_UNUSED,
|
MUS_MP3_MAD_UNUSED,
|
||||||
MUS_FLAC,
|
MUS_FLAC,
|
||||||
MUS_MODPLUG_UNUSED
|
MUS_MODPLUG_UNUSED,
|
||||||
|
MUS_OPUS
|
||||||
} Mix_MusicType;
|
} Mix_MusicType;
|
||||||
|
|
||||||
/* The internal format for a music chunk interpreted via mikmod */
|
/* The internal format for a music chunk interpreted via mikmod */
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
The source code to this library used with SDL_mixer can be found here:
|
The source code to this library used with SDL_mixer can be found here:
|
||||||
http://www.libsdl.org/projects/SDL_mixer/libs/
|
https://hg.libsdl.org/SDL_mixer/file/default/external
|
||||||
---
|
---
|
||||||
|
|
||||||
Copyright (C) 2000,2001,2002,2003,2004,2005,2006,2007 Josh Coalson
|
Copyright (C) 2000,2001,2002,2003,2004,2005,2006,2007 Josh Coalson
|
||||||
|
|
|
||||||
|
|
@ -1 +1,5 @@
|
||||||
|
The source code to this library used with SDL_mixer can be found here:
|
||||||
|
https://hg.libsdl.org/SDL_mixer/file/default/external
|
||||||
|
---
|
||||||
|
|
||||||
ModPlug-XMMS and libmodplug are now in the public domain.
|
ModPlug-XMMS and libmodplug are now in the public domain.
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,7 @@
|
||||||
|
The source code to this library used with SDL_mixer can be found here:
|
||||||
|
https://hg.libsdl.org/SDL_mixer/file/default/external
|
||||||
|
---
|
||||||
|
|
||||||
This is the file that contains the terms of use, copying, etc. for the mpg123 distribution package.
|
This is the file that contains the terms of use, copying, etc. for the mpg123 distribution package.
|
||||||
|
|
||||||
Main message, to include in "About ..." boxes, etc:
|
Main message, to include in "About ..." boxes, etc:
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
The source code to this library used with SDL_mixer can be found here:
|
The source code to this library used with SDL_mixer can be found here:
|
||||||
http://www.libsdl.org/projects/SDL_mixer/libs/
|
https://hg.libsdl.org/SDL_image/file/default/external
|
||||||
---
|
---
|
||||||
|
|
||||||
Copyright (c) 2002-2008 Xiph.org Foundation
|
Copyright (c) 2002-2008 Xiph.org Foundation
|
||||||
|
|
|
||||||
48
libs/SDL2_mixer/lib/x64/LICENSE.opus.txt
Normal file
48
libs/SDL2_mixer/lib/x64/LICENSE.opus.txt
Normal file
|
|
@ -0,0 +1,48 @@
|
||||||
|
The source code to this library used with SDL_mixer can be found here:
|
||||||
|
https://hg.libsdl.org/SDL_mixer/file/default/external
|
||||||
|
---
|
||||||
|
|
||||||
|
Copyright 2001-2011 Xiph.Org, Skype Limited, Octasic,
|
||||||
|
Jean-Marc Valin, Timothy B. Terriberry,
|
||||||
|
CSIRO, Gregory Maxwell, Mark Borgerding,
|
||||||
|
Erik de Castro Lopo
|
||||||
|
|
||||||
|
Redistribution and use in source and binary forms, with or without
|
||||||
|
modification, are permitted provided that the following conditions
|
||||||
|
are met:
|
||||||
|
|
||||||
|
- Redistributions of source code must retain the above copyright
|
||||||
|
notice, this list of conditions and the following disclaimer.
|
||||||
|
|
||||||
|
- Redistributions in binary form must reproduce the above copyright
|
||||||
|
notice, this list of conditions and the following disclaimer in the
|
||||||
|
documentation and/or other materials provided with the distribution.
|
||||||
|
|
||||||
|
- Neither the name of Internet Society, IETF or IETF Trust, nor the
|
||||||
|
names of specific contributors, may be used to endorse or promote
|
||||||
|
products derived from this software without specific prior written
|
||||||
|
permission.
|
||||||
|
|
||||||
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||||
|
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||||
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||||
|
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
|
||||||
|
OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
||||||
|
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||||
|
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
||||||
|
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
||||||
|
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
||||||
|
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||||
|
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
|
Opus is subject to the royalty-free patent licenses which are
|
||||||
|
specified at:
|
||||||
|
|
||||||
|
Xiph.Org Foundation:
|
||||||
|
https://datatracker.ietf.org/ipr/1524/
|
||||||
|
|
||||||
|
Microsoft Corporation:
|
||||||
|
https://datatracker.ietf.org/ipr/1914/
|
||||||
|
|
||||||
|
Broadcom Corporation:
|
||||||
|
https://datatracker.ietf.org/ipr/1526/
|
||||||
32
libs/SDL2_mixer/lib/x64/LICENSE.opusfile.txt
Normal file
32
libs/SDL2_mixer/lib/x64/LICENSE.opusfile.txt
Normal file
|
|
@ -0,0 +1,32 @@
|
||||||
|
The source code to this library used with SDL_mixer can be found here:
|
||||||
|
https://hg.libsdl.org/SDL_mixer/file/default/external
|
||||||
|
---
|
||||||
|
|
||||||
|
Copyright (c) 1994-2013 Xiph.Org Foundation and contributors
|
||||||
|
|
||||||
|
Redistribution and use in source and binary forms, with or without
|
||||||
|
modification, are permitted provided that the following conditions
|
||||||
|
are met:
|
||||||
|
|
||||||
|
- Redistributions of source code must retain the above copyright
|
||||||
|
notice, this list of conditions and the following disclaimer.
|
||||||
|
|
||||||
|
- Redistributions in binary form must reproduce the above copyright
|
||||||
|
notice, this list of conditions and the following disclaimer in the
|
||||||
|
documentation and/or other materials provided with the distribution.
|
||||||
|
|
||||||
|
- Neither the name of the Xiph.Org Foundation nor the names of its
|
||||||
|
contributors may be used to endorse or promote products derived from
|
||||||
|
this software without specific prior written permission.
|
||||||
|
|
||||||
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||||
|
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||||
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||||
|
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION
|
||||||
|
OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||||
|
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||||
|
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||||
|
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||||
|
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||||
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
BIN
libs/SDL2_mixer/lib/x64/SDL2_mixer.dll
Executable file → Normal file
BIN
libs/SDL2_mixer/lib/x64/SDL2_mixer.dll
Executable file → Normal file
Binary file not shown.
0
libs/SDL2_mixer/lib/x64/SDL2_mixer.lib
Executable file → Normal file
0
libs/SDL2_mixer/lib/x64/SDL2_mixer.lib
Executable file → Normal file
BIN
libs/SDL2_mixer/lib/x64/libFLAC-8.dll
Executable file → Normal file
BIN
libs/SDL2_mixer/lib/x64/libFLAC-8.dll
Executable file → Normal file
Binary file not shown.
BIN
libs/SDL2_mixer/lib/x64/libmodplug-1.dll
Executable file → Normal file
BIN
libs/SDL2_mixer/lib/x64/libmodplug-1.dll
Executable file → Normal file
Binary file not shown.
BIN
libs/SDL2_mixer/lib/x64/libmpg123-0.dll
Executable file → Normal file
BIN
libs/SDL2_mixer/lib/x64/libmpg123-0.dll
Executable file → Normal file
Binary file not shown.
BIN
libs/SDL2_mixer/lib/x64/libogg-0.dll
Executable file → Normal file
BIN
libs/SDL2_mixer/lib/x64/libogg-0.dll
Executable file → Normal file
Binary file not shown.
BIN
libs/SDL2_mixer/lib/x64/libopus-0.dll
Normal file
BIN
libs/SDL2_mixer/lib/x64/libopus-0.dll
Normal file
Binary file not shown.
BIN
libs/SDL2_mixer/lib/x64/libopusfile-0.dll
Normal file
BIN
libs/SDL2_mixer/lib/x64/libopusfile-0.dll
Normal file
Binary file not shown.
BIN
libs/SDL2_mixer/lib/x64/libvorbis-0.dll
Executable file → Normal file
BIN
libs/SDL2_mixer/lib/x64/libvorbis-0.dll
Executable file → Normal file
Binary file not shown.
BIN
libs/SDL2_mixer/lib/x64/libvorbisfile-3.dll
Executable file → Normal file
BIN
libs/SDL2_mixer/lib/x64/libvorbisfile-3.dll
Executable file → Normal file
Binary file not shown.
|
|
@ -1,5 +1,5 @@
|
||||||
The source code to this library used with SDL_mixer can be found here:
|
The source code to this library used with SDL_mixer can be found here:
|
||||||
http://www.libsdl.org/projects/SDL_mixer/libs/
|
https://hg.libsdl.org/SDL_mixer/file/default/external
|
||||||
---
|
---
|
||||||
|
|
||||||
Copyright (C) 2000,2001,2002,2003,2004,2005,2006,2007 Josh Coalson
|
Copyright (C) 2000,2001,2002,2003,2004,2005,2006,2007 Josh Coalson
|
||||||
|
|
|
||||||
|
|
@ -1 +1,5 @@
|
||||||
|
The source code to this library used with SDL_mixer can be found here:
|
||||||
|
https://hg.libsdl.org/SDL_mixer/file/default/external
|
||||||
|
---
|
||||||
|
|
||||||
ModPlug-XMMS and libmodplug are now in the public domain.
|
ModPlug-XMMS and libmodplug are now in the public domain.
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,7 @@
|
||||||
|
The source code to this library used with SDL_mixer can be found here:
|
||||||
|
https://hg.libsdl.org/SDL_mixer/file/default/external
|
||||||
|
---
|
||||||
|
|
||||||
This is the file that contains the terms of use, copying, etc. for the mpg123 distribution package.
|
This is the file that contains the terms of use, copying, etc. for the mpg123 distribution package.
|
||||||
|
|
||||||
Main message, to include in "About ..." boxes, etc:
|
Main message, to include in "About ..." boxes, etc:
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
The source code to this library used with SDL_mixer can be found here:
|
The source code to this library used with SDL_mixer can be found here:
|
||||||
http://www.libsdl.org/projects/SDL_mixer/libs/
|
https://hg.libsdl.org/SDL_image/file/default/external
|
||||||
---
|
---
|
||||||
|
|
||||||
Copyright (c) 2002-2008 Xiph.org Foundation
|
Copyright (c) 2002-2008 Xiph.org Foundation
|
||||||
|
|
|
||||||
48
libs/SDL2_mixer/lib/x86/LICENSE.opus.txt
Normal file
48
libs/SDL2_mixer/lib/x86/LICENSE.opus.txt
Normal file
|
|
@ -0,0 +1,48 @@
|
||||||
|
The source code to this library used with SDL_mixer can be found here:
|
||||||
|
https://hg.libsdl.org/SDL_mixer/file/default/external
|
||||||
|
---
|
||||||
|
|
||||||
|
Copyright 2001-2011 Xiph.Org, Skype Limited, Octasic,
|
||||||
|
Jean-Marc Valin, Timothy B. Terriberry,
|
||||||
|
CSIRO, Gregory Maxwell, Mark Borgerding,
|
||||||
|
Erik de Castro Lopo
|
||||||
|
|
||||||
|
Redistribution and use in source and binary forms, with or without
|
||||||
|
modification, are permitted provided that the following conditions
|
||||||
|
are met:
|
||||||
|
|
||||||
|
- Redistributions of source code must retain the above copyright
|
||||||
|
notice, this list of conditions and the following disclaimer.
|
||||||
|
|
||||||
|
- Redistributions in binary form must reproduce the above copyright
|
||||||
|
notice, this list of conditions and the following disclaimer in the
|
||||||
|
documentation and/or other materials provided with the distribution.
|
||||||
|
|
||||||
|
- Neither the name of Internet Society, IETF or IETF Trust, nor the
|
||||||
|
names of specific contributors, may be used to endorse or promote
|
||||||
|
products derived from this software without specific prior written
|
||||||
|
permission.
|
||||||
|
|
||||||
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||||
|
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||||
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||||
|
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
|
||||||
|
OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
||||||
|
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||||
|
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
||||||
|
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
||||||
|
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
||||||
|
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||||
|
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
|
Opus is subject to the royalty-free patent licenses which are
|
||||||
|
specified at:
|
||||||
|
|
||||||
|
Xiph.Org Foundation:
|
||||||
|
https://datatracker.ietf.org/ipr/1524/
|
||||||
|
|
||||||
|
Microsoft Corporation:
|
||||||
|
https://datatracker.ietf.org/ipr/1914/
|
||||||
|
|
||||||
|
Broadcom Corporation:
|
||||||
|
https://datatracker.ietf.org/ipr/1526/
|
||||||
32
libs/SDL2_mixer/lib/x86/LICENSE.opusfile.txt
Normal file
32
libs/SDL2_mixer/lib/x86/LICENSE.opusfile.txt
Normal file
|
|
@ -0,0 +1,32 @@
|
||||||
|
The source code to this library used with SDL_mixer can be found here:
|
||||||
|
https://hg.libsdl.org/SDL_mixer/file/default/external
|
||||||
|
---
|
||||||
|
|
||||||
|
Copyright (c) 1994-2013 Xiph.Org Foundation and contributors
|
||||||
|
|
||||||
|
Redistribution and use in source and binary forms, with or without
|
||||||
|
modification, are permitted provided that the following conditions
|
||||||
|
are met:
|
||||||
|
|
||||||
|
- Redistributions of source code must retain the above copyright
|
||||||
|
notice, this list of conditions and the following disclaimer.
|
||||||
|
|
||||||
|
- Redistributions in binary form must reproduce the above copyright
|
||||||
|
notice, this list of conditions and the following disclaimer in the
|
||||||
|
documentation and/or other materials provided with the distribution.
|
||||||
|
|
||||||
|
- Neither the name of the Xiph.Org Foundation nor the names of its
|
||||||
|
contributors may be used to endorse or promote products derived from
|
||||||
|
this software without specific prior written permission.
|
||||||
|
|
||||||
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||||
|
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||||
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||||
|
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION
|
||||||
|
OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||||
|
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||||
|
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||||
|
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||||
|
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||||
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
BIN
libs/SDL2_mixer/lib/x86/SDL2_mixer.dll
Executable file → Normal file
BIN
libs/SDL2_mixer/lib/x86/SDL2_mixer.dll
Executable file → Normal file
Binary file not shown.
0
libs/SDL2_mixer/lib/x86/SDL2_mixer.lib
Executable file → Normal file
0
libs/SDL2_mixer/lib/x86/SDL2_mixer.lib
Executable file → Normal file
BIN
libs/SDL2_mixer/lib/x86/libFLAC-8.dll
Executable file → Normal file
BIN
libs/SDL2_mixer/lib/x86/libFLAC-8.dll
Executable file → Normal file
Binary file not shown.
BIN
libs/SDL2_mixer/lib/x86/libmodplug-1.dll
Executable file → Normal file
BIN
libs/SDL2_mixer/lib/x86/libmodplug-1.dll
Executable file → Normal file
Binary file not shown.
BIN
libs/SDL2_mixer/lib/x86/libmpg123-0.dll
Executable file → Normal file
BIN
libs/SDL2_mixer/lib/x86/libmpg123-0.dll
Executable file → Normal file
Binary file not shown.
BIN
libs/SDL2_mixer/lib/x86/libogg-0.dll
Executable file → Normal file
BIN
libs/SDL2_mixer/lib/x86/libogg-0.dll
Executable file → Normal file
Binary file not shown.
BIN
libs/SDL2_mixer/lib/x86/libopus-0.dll
Normal file
BIN
libs/SDL2_mixer/lib/x86/libopus-0.dll
Normal file
Binary file not shown.
BIN
libs/SDL2_mixer/lib/x86/libopusfile-0.dll
Normal file
BIN
libs/SDL2_mixer/lib/x86/libopusfile-0.dll
Normal file
Binary file not shown.
BIN
libs/SDL2_mixer/lib/x86/libvorbis-0.dll
Executable file → Normal file
BIN
libs/SDL2_mixer/lib/x86/libvorbis-0.dll
Executable file → Normal file
Binary file not shown.
BIN
libs/SDL2_mixer/lib/x86/libvorbisfile-3.dll
Executable file → Normal file
BIN
libs/SDL2_mixer/lib/x86/libvorbisfile-3.dll
Executable file → Normal file
Binary file not shown.
|
|
@ -1,5 +1,5 @@
|
||||||
The source code to this library used with SDL_mixer can be found here:
|
The source code to this library used with SDL_mixer can be found here:
|
||||||
http://www.libsdl.org/projects/SDL_mixer/libs/
|
https://hg.libsdl.org/SDL_mixer/file/default/external
|
||||||
---
|
---
|
||||||
|
|
||||||
Copyright (C) 2000,2001,2002,2003,2004,2005,2006,2007 Josh Coalson
|
Copyright (C) 2000,2001,2002,2003,2004,2005,2006,2007 Josh Coalson
|
||||||
|
|
|
||||||
|
|
@ -1 +1,5 @@
|
||||||
|
The source code to this library used with SDL_mixer can be found here:
|
||||||
|
https://hg.libsdl.org/SDL_mixer/file/default/external
|
||||||
|
---
|
||||||
|
|
||||||
ModPlug-XMMS and libmodplug are now in the public domain.
|
ModPlug-XMMS and libmodplug are now in the public domain.
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,7 @@
|
||||||
|
The source code to this library used with SDL_mixer can be found here:
|
||||||
|
https://hg.libsdl.org/SDL_mixer/file/default/external
|
||||||
|
---
|
||||||
|
|
||||||
This is the file that contains the terms of use, copying, etc. for the mpg123 distribution package.
|
This is the file that contains the terms of use, copying, etc. for the mpg123 distribution package.
|
||||||
|
|
||||||
Main message, to include in "About ..." boxes, etc:
|
Main message, to include in "About ..." boxes, etc:
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
The source code to this library used with SDL_mixer can be found here:
|
The source code to this library used with SDL_mixer can be found here:
|
||||||
http://www.libsdl.org/projects/SDL_mixer/libs/
|
https://hg.libsdl.org/SDL_image/file/default/external
|
||||||
---
|
---
|
||||||
|
|
||||||
Copyright (c) 2002-2008 Xiph.org Foundation
|
Copyright (c) 2002-2008 Xiph.org Foundation
|
||||||
|
|
|
||||||
48
libs/SDL2_mixer/x86_64-w64-mingw32/bin/LICENSE.opus.txt
Normal file
48
libs/SDL2_mixer/x86_64-w64-mingw32/bin/LICENSE.opus.txt
Normal file
|
|
@ -0,0 +1,48 @@
|
||||||
|
The source code to this library used with SDL_mixer can be found here:
|
||||||
|
https://hg.libsdl.org/SDL_mixer/file/default/external
|
||||||
|
---
|
||||||
|
|
||||||
|
Copyright 2001-2011 Xiph.Org, Skype Limited, Octasic,
|
||||||
|
Jean-Marc Valin, Timothy B. Terriberry,
|
||||||
|
CSIRO, Gregory Maxwell, Mark Borgerding,
|
||||||
|
Erik de Castro Lopo
|
||||||
|
|
||||||
|
Redistribution and use in source and binary forms, with or without
|
||||||
|
modification, are permitted provided that the following conditions
|
||||||
|
are met:
|
||||||
|
|
||||||
|
- Redistributions of source code must retain the above copyright
|
||||||
|
notice, this list of conditions and the following disclaimer.
|
||||||
|
|
||||||
|
- Redistributions in binary form must reproduce the above copyright
|
||||||
|
notice, this list of conditions and the following disclaimer in the
|
||||||
|
documentation and/or other materials provided with the distribution.
|
||||||
|
|
||||||
|
- Neither the name of Internet Society, IETF or IETF Trust, nor the
|
||||||
|
names of specific contributors, may be used to endorse or promote
|
||||||
|
products derived from this software without specific prior written
|
||||||
|
permission.
|
||||||
|
|
||||||
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||||
|
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||||
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||||
|
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
|
||||||
|
OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
||||||
|
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||||
|
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
||||||
|
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
||||||
|
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
||||||
|
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||||
|
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
|
Opus is subject to the royalty-free patent licenses which are
|
||||||
|
specified at:
|
||||||
|
|
||||||
|
Xiph.Org Foundation:
|
||||||
|
https://datatracker.ietf.org/ipr/1524/
|
||||||
|
|
||||||
|
Microsoft Corporation:
|
||||||
|
https://datatracker.ietf.org/ipr/1914/
|
||||||
|
|
||||||
|
Broadcom Corporation:
|
||||||
|
https://datatracker.ietf.org/ipr/1526/
|
||||||
32
libs/SDL2_mixer/x86_64-w64-mingw32/bin/LICENSE.opusfile.txt
Normal file
32
libs/SDL2_mixer/x86_64-w64-mingw32/bin/LICENSE.opusfile.txt
Normal file
|
|
@ -0,0 +1,32 @@
|
||||||
|
The source code to this library used with SDL_mixer can be found here:
|
||||||
|
https://hg.libsdl.org/SDL_mixer/file/default/external
|
||||||
|
---
|
||||||
|
|
||||||
|
Copyright (c) 1994-2013 Xiph.Org Foundation and contributors
|
||||||
|
|
||||||
|
Redistribution and use in source and binary forms, with or without
|
||||||
|
modification, are permitted provided that the following conditions
|
||||||
|
are met:
|
||||||
|
|
||||||
|
- Redistributions of source code must retain the above copyright
|
||||||
|
notice, this list of conditions and the following disclaimer.
|
||||||
|
|
||||||
|
- Redistributions in binary form must reproduce the above copyright
|
||||||
|
notice, this list of conditions and the following disclaimer in the
|
||||||
|
documentation and/or other materials provided with the distribution.
|
||||||
|
|
||||||
|
- Neither the name of the Xiph.Org Foundation nor the names of its
|
||||||
|
contributors may be used to endorse or promote products derived from
|
||||||
|
this software without specific prior written permission.
|
||||||
|
|
||||||
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||||
|
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||||
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||||
|
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION
|
||||||
|
OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||||
|
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||||
|
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||||
|
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||||
|
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||||
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
libs/SDL2_mixer/x86_64-w64-mingw32/bin/libopus-0.dll
Normal file
BIN
libs/SDL2_mixer/x86_64-w64-mingw32/bin/libopus-0.dll
Normal file
Binary file not shown.
BIN
libs/SDL2_mixer/x86_64-w64-mingw32/bin/libopusfile-0.dll
Normal file
BIN
libs/SDL2_mixer/x86_64-w64-mingw32/bin/libopusfile-0.dll
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
SDL_mixer: An audio mixer library based on the SDL library
|
SDL_mixer: An audio mixer library based on the SDL library
|
||||||
Copyright (C) 1997-2017 Sam Lantinga <slouken@libsdl.org>
|
Copyright (C) 1997-2018 Sam Lantinga <slouken@libsdl.org>
|
||||||
|
|
||||||
This software is provided 'as-is', without any express or implied
|
This software is provided 'as-is', without any express or implied
|
||||||
warranty. In no event will the authors be held liable for any damages
|
warranty. In no event will the authors be held liable for any damages
|
||||||
|
|
@ -38,7 +38,7 @@ extern "C" {
|
||||||
*/
|
*/
|
||||||
#define SDL_MIXER_MAJOR_VERSION 2
|
#define SDL_MIXER_MAJOR_VERSION 2
|
||||||
#define SDL_MIXER_MINOR_VERSION 0
|
#define SDL_MIXER_MINOR_VERSION 0
|
||||||
#define SDL_MIXER_PATCHLEVEL 2
|
#define SDL_MIXER_PATCHLEVEL 4
|
||||||
|
|
||||||
/* This macro can be used to fill a version structure with the compile-time
|
/* This macro can be used to fill a version structure with the compile-time
|
||||||
* version of the SDL_mixer library.
|
* version of the SDL_mixer library.
|
||||||
|
|
@ -80,7 +80,8 @@ typedef enum
|
||||||
MIX_INIT_MOD = 0x00000002,
|
MIX_INIT_MOD = 0x00000002,
|
||||||
MIX_INIT_MP3 = 0x00000008,
|
MIX_INIT_MP3 = 0x00000008,
|
||||||
MIX_INIT_OGG = 0x00000010,
|
MIX_INIT_OGG = 0x00000010,
|
||||||
MIX_INIT_MID = 0x00000020
|
MIX_INIT_MID = 0x00000020,
|
||||||
|
MIX_INIT_OPUS = 0x00000040
|
||||||
} MIX_InitFlags;
|
} MIX_InitFlags;
|
||||||
|
|
||||||
/* Loads dynamic libraries and prepares them for use. Flags should be
|
/* Loads dynamic libraries and prepares them for use. Flags should be
|
||||||
|
|
@ -134,7 +135,8 @@ typedef enum {
|
||||||
MUS_MP3,
|
MUS_MP3,
|
||||||
MUS_MP3_MAD_UNUSED,
|
MUS_MP3_MAD_UNUSED,
|
||||||
MUS_FLAC,
|
MUS_FLAC,
|
||||||
MUS_MODPLUG_UNUSED
|
MUS_MODPLUG_UNUSED,
|
||||||
|
MUS_OPUS
|
||||||
} Mix_MusicType;
|
} Mix_MusicType;
|
||||||
|
|
||||||
/* The internal format for a music chunk interpreted via mikmod */
|
/* The internal format for a music chunk interpreted via mikmod */
|
||||||
|
|
|
||||||
Binary file not shown.
Binary file not shown.
41
libs/SDL2_mixer/x86_64-w64-mingw32/lib/libSDL2_mixer.la
Normal file
41
libs/SDL2_mixer/x86_64-w64-mingw32/lib/libSDL2_mixer.la
Normal file
|
|
@ -0,0 +1,41 @@
|
||||||
|
# libSDL2_mixer.la - a libtool library file
|
||||||
|
# Generated by ltmain.sh (GNU libtool) 2.2.6
|
||||||
|
#
|
||||||
|
# Please DO NOT delete this file!
|
||||||
|
# It is necessary for linking the library.
|
||||||
|
|
||||||
|
# The name that we can dlopen(3).
|
||||||
|
dlname='../bin/SDL2_mixer.dll'
|
||||||
|
|
||||||
|
# Names of this library.
|
||||||
|
library_names='libSDL2_mixer.dll.a'
|
||||||
|
|
||||||
|
# The name of the static archive.
|
||||||
|
old_library='libSDL2_mixer.a'
|
||||||
|
|
||||||
|
# Linker flags that can not go in dependency_libs.
|
||||||
|
inherited_linker_flags=''
|
||||||
|
|
||||||
|
# Libraries that this one depends upon.
|
||||||
|
dependency_libs=' -L/opt/local/x86_64-w64-mingw32/lib -lmingw32 /opt/local/x86_64-w64-mingw32/lib/libSDL2.la -ldinput8 -ldxguid -ldxerr8 -luser32 -lgdi32 -limm32 -lole32 -loleaut32 -lshell32 -lsetupapi -lversion -luuid -lwinmm'
|
||||||
|
|
||||||
|
# Names of additional weak libraries provided by this library
|
||||||
|
weak_library_names=''
|
||||||
|
|
||||||
|
# Version information for libSDL2_mixer.
|
||||||
|
current=2
|
||||||
|
age=2
|
||||||
|
revision=2
|
||||||
|
|
||||||
|
# Is this an already installed library?
|
||||||
|
installed=yes
|
||||||
|
|
||||||
|
# Should we warn about portability when linking against -modules?
|
||||||
|
shouldnotlink=no
|
||||||
|
|
||||||
|
# Files to dlopen/dlpreopen
|
||||||
|
dlopen=''
|
||||||
|
dlpreopen=''
|
||||||
|
|
||||||
|
# Directory that this library needs to be installed in:
|
||||||
|
libdir='/Users/valve/release/SDL_mixer/SDL2_mixer-2.0.4/x86_64-w64-mingw32/lib'
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
prefix=/usr/local/x86_64-w64-mingw32
|
prefix=/opt/local/x86_64-w64-mingw32
|
||||||
exec_prefix=${prefix}
|
exec_prefix=${prefix}
|
||||||
libdir=${exec_prefix}/lib
|
libdir=${exec_prefix}/lib
|
||||||
includedir=${prefix}/include
|
includedir=${prefix}/include
|
||||||
|
|
||||||
Name: SDL2_mixer
|
Name: SDL2_mixer
|
||||||
Description: mixer library for Simple DirectMedia Layer
|
Description: mixer library for Simple DirectMedia Layer
|
||||||
Version: 2.0.2
|
Version: 2.0.4
|
||||||
Requires: sdl2 >= 2.0.7
|
Requires: sdl2 >= 2.0.7
|
||||||
Libs: -L${libdir} -lSDL2_mixer
|
Libs: -L${libdir} -lSDL2_mixer
|
||||||
Cflags: -I${includedir}/SDL2
|
Cflags: -I${includedir}/SDL2
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue