mirror of
https://github.com/vgmstream/vgmstream.git
synced 2024-11-12 09:40:51 +01:00
254 lines
12 KiB
Markdown
254 lines
12 KiB
Markdown
# vgmstream build help
|
|
|
|
## Compilation requirements
|
|
|
|
**GCC / Make**: In Windows this means one of these two somewhere in PATH:
|
|
- MinGW-w64 (32bit version): https://sourceforge.net/projects/mingw-w64/
|
|
- Use this for easier standalone executables
|
|
- Latest online installer with any config should work (for example: gcc-7.2.0, i686, win32, sjlj).
|
|
- MSYS2 with the MinGW-w64_shell (32bit) package: https://msys2.github.io/
|
|
|
|
**MSVC / Visual Studio**: Microsoft's Visual C++ and MSBuild, bundled in either:
|
|
- Visual Studio (2015/2017/latest): https://www.visualstudio.com/downloads/
|
|
- Visual Studio Community should work (free, but must register after trial period)
|
|
- Visual C++ Build Tools (no IDE): http://landinghub.visualstudio.com/visual-cpp-build-tools
|
|
|
|
**Git**: optional, to generate version numbers:
|
|
- Git for Windows: https://git-scm.com/download/win
|
|
|
|
**autotools**: optional, indirectly used by some libs.
|
|
- For Windows you must include GCC and Linux's sh tool in some form in PATH.
|
|
- The simplest would be installing MinGW-w64 for GCC.exe and Git for sh.exe, and making PATH point their bin dir.
|
|
- ex. `C:/i686-7.1.0-win32-sjlj-rt_v5-rev2/mingw32/bin` and `C:/Git/bin`
|
|
- Both must be installed/copied in a dir without spaces
|
|
|
|
|
|
## Compiling modules
|
|
|
|
### CLI (test.exe/vgmstream-cli) / Winamp plugin (in_vgmstream) / XMPlay plugin (xmp-vgmstream)
|
|
|
|
**With GCC**: use the *./Makefile* in the root folder, see inside for options. For compilation flags check the *Makefile* in each folder.
|
|
You may need to manually rebuild if you change a *.h* file (use *make clean*).
|
|
|
|
In Linux, Makefiles can be used to cross-compile with the MingW headers, but may not be updated to generate native code at the moment. It should be fixable with some effort. Autotools should build it as vgmstream-cli instead (see the Audacious section). Some Linux distributions like Arch Linux include pre-patched vgmstream with most libraries, you may want that instead (see: https://aur.archlinux.org/packages/vgmstream-kode54-git/).
|
|
|
|
Windows CMD example:
|
|
```
|
|
prompt $P$G$_$S
|
|
set PATH=C:\Program Files (x86)\Git\usr\bin;%PATH%
|
|
set PATH=C:\Program Files (x86)\mingw-w64\i686-5.4.0-win32-sjlj-rt_v5-rev0\mingw32\bin;%PATH%
|
|
|
|
cd vgmstream
|
|
|
|
mingw32-make.exe vgmstream_cli -f Makefile ^
|
|
VGM_ENABLE_FFMPEG=1 ^
|
|
SHELL=sh.exe CC=gcc.exe AR=ar.exe STRIP=strip.exe DLLTOOL=dlltool.exe WINDRES=windres.exe
|
|
```
|
|
|
|
**With MSVC**: To build in Visual Studio, run *./init-build.bat*, open *./vgmstream_full.sln* and compile. To build from the command line, run *./build.bat*.
|
|
|
|
The build script will automatically handle obtaining dependencies and making the project changes listed in the foobar2000 section (you may need to get some PowerShell .NET packages).
|
|
|
|
You can also call MSBuild directly in the command line (see the foobar2000 section for dependencies and examples)
|
|
|
|
### foobar2000 plugin (foo\_input\_vgmstream)
|
|
Requires MSVC (foobar/SDK only links to MSVC C++ DLLs) and these dependencies:
|
|
- foobar2000 SDK (2018), in *(vgmstream)/dependencies/foobar/*: http://www.foobar2000.org/SDK
|
|
- FDK-AAC, in *(vgmstream)/dependencies/fdk-aac/*: https://github.com/kode54/fdk-aac
|
|
- QAAC, in *(vgmstream)/dependencies/qaac/*: https://github.com/kode54/qaac
|
|
- WTL (if needed), in *(vgmstream)/dependencies/WTL/*: http://wtl.sourceforge.net/
|
|
|
|
The following project modifications are required:
|
|
- For *foobar2000_ATL_helpers* add *../../../WTL/Include* to the compilers's *additional includes*
|
|
|
|
FDK-AAC/QAAC can be safely disabled by removing *VGM_USE_MP4V2* and *VGM_USE_FDKAAC* in the compiler/linker options and the project dependencies, as FFmpeg is used instead to support their codecs.
|
|
|
|
You can also manually use the command line to compile with MSBuild, if you don't want to touch the .vcxproj files, register VS after trial, get PowerShell dependencies for the build script, or only have VC++/MSBuild tools.
|
|
|
|
Windows CMD example for foobar2000:
|
|
```
|
|
prompt $P$G$_$S
|
|
set PATH=C:\Program Files (x86)\Git\usr\bin;%PATH%
|
|
set PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;%PATH%
|
|
|
|
cd vgmstream
|
|
|
|
set CL=/I"C:\projects\WTL\Include"
|
|
set LINK="C:\projects\foobar\foobar2000\shared\shared.lib"
|
|
|
|
msbuild fb2k/foo_input_vgmstream.vcxproj ^
|
|
/t:Clean
|
|
|
|
msbuild fb2k/foo_input_vgmstream.vcxproj ^
|
|
/t:Build ^
|
|
/p:Platform=Win32 ^
|
|
/p:PlatformToolset=v140 ^
|
|
/p:Configuration=Release ^
|
|
/p:DependenciesDir=../..
|
|
```
|
|
|
|
### Audacious plugin
|
|
Requires the dev version of Audacious (and dependencies), automake/autoconf, and gcc/make (C++11). It must be compiled and installed into Audacious, where it should appear in the plugin list as "vgmstream".
|
|
|
|
The plugin needs Audacious 3.5 or higher. New Audacious releases can break plugin compatibility so it may not work with the latest version unless adapted first.
|
|
|
|
libvorbis and libmpg123 will be used if found, while FFmpeg and other external libraries aren't enabled at the moment, thus some formats won't work (build scripts need to be fixed).
|
|
|
|
Windows builds aren't supported at the moment (should be possible but there are complex dependency chains).
|
|
|
|
|
|
Terminal example, assuming a Ubuntu-based Linux distribution:
|
|
```
|
|
# build requirements
|
|
sudo apt-get update
|
|
sudo apt-get install gcc g++ make
|
|
sudo apt-get install autoconf automake libtool
|
|
sudo apt-get install git
|
|
# vgmstream dependencies
|
|
sudo apt-get install libmpg123-dev libvorbis-dev
|
|
# Audacious player and dependencies
|
|
sudo apt-get install audacious
|
|
sudo apt-get install audacious-dev libglib2.0-dev libgtk2.0-dev libpango1.0-dev
|
|
|
|
# check Audacious version >= 3.5
|
|
pkg-config --modversion audacious
|
|
|
|
# build
|
|
git clone https://github.com/kode54/vgmstream
|
|
cd vgmstream
|
|
|
|
./bootstrap
|
|
./configure
|
|
make -f Makefile.autotools
|
|
|
|
# copy to audacious plugins and update global libvgmstream.so.0 refs
|
|
sudo make -f Makefile.autotools install
|
|
sudo ldconfig
|
|
|
|
# start audacious in verbose mode to check if it was installed correctly
|
|
audacious -V
|
|
|
|
# uninstall if needed
|
|
sudo make -f Makefile.autotools uninstall
|
|
|
|
# optional post-cleanup
|
|
make -f Makefile.autotools clean
|
|
find . -name ".deps" -type d -exec rm -r "{}" \;
|
|
./unbootstrap
|
|
## WARNING, removes *all* untracked files not in .gitignore
|
|
git clean -fd
|
|
```
|
|
|
|
### vgmstream123 player
|
|
Should be buildable with Autotools, much like the Audacious plugin, though requires libao (libao-dev).
|
|
|
|
Windows builds are possible with libao.dll and includes, but some features are disabled.
|
|
|
|
|
|
## External libraries
|
|
Support for some codecs is done with external libs, instead of copying their code in vgmstream. There are various reasons for this:
|
|
- each lib may have complex or conflicting ways to compile that aren't simple to duplicate
|
|
- their sources can be quite big and undesirable to include in full
|
|
- libs usually only compile with either GCC or MSVC, while vgmstream supports both compilers, so linking to the generated binary is much easier
|
|
- not all licenses used by libs may allow to copy their code
|
|
- simplifies maintenance and updating
|
|
|
|
They are compiled in their own sources, and the resulting binary is linked by vgmstream using a few of their symbols.
|
|
|
|
Currently only Windows builds can use external libraries, as vgmstream only includes generated 32-bit DLLs, but it should be fixable for others systems with some effort (libs are enabled on compile time). Ideally vgmstream could use libs compiled as static code (thus eliminating the need of DLLs), but involves a bunch of changes.
|
|
|
|
Below is a quick explanation of each library and how to compile binaries from them. Unless mentioned, their latest version should be ok to use, though included DLLs may be a bit older.
|
|
|
|
|
|
### libvorbis
|
|
Adds support for Vorbis (inside Ogg and custom containers).
|
|
- Source: http://downloads.xiph.org/releases/vorbis/libvorbis-1.3.6.zip
|
|
- DLL: `libvorbis.dll`
|
|
|
|
Should be buildable with MSVC (in /win32 dir are .sln files) or autotools (use `autogen.sh`).
|
|
|
|
|
|
### mpg123
|
|
Adds support for MPEG (MP1/MP2/MP3).
|
|
- Source: https://sourceforge.net/projects/mpg123/files/mpg123/1.25.10/
|
|
- Builds: http://www.mpg123.de/download/win32/1.25.10/
|
|
- DLL: `libmpg123-0.dll`
|
|
|
|
Must use autotools (sh configure, make, make install), though some scripts simplify the process: `makedll.sh`, `windows-builds.sh`.
|
|
|
|
|
|
### libg7221_decode
|
|
Adds support for ITU-T G.722.1 annex C (standardization of Polycom Siren 14).
|
|
- Source: https://github.com/bnnm/vgmstream-g7221
|
|
- Alt lib (has volume problems): https://github.com/kode54/libg7221_decode
|
|
- DLL: `libg7221_decode.dll`
|
|
|
|
Use make `libg7221_decode.dll`.
|
|
|
|
### libg719_decode
|
|
Adds support for ITU-T G.719 (standardization of Polycom Siren 22).
|
|
- Source: https://github.com/kode54/libg719_decode
|
|
- DLL: `libg719_decode.dll`
|
|
|
|
Requires MSVC (use `g719.sln`).
|
|
|
|
|
|
### FFmpeg
|
|
Adds support for multiple codecs: ATRAC3, ATRAC3plus, XMA1/2, WMA v1, WMA v2, WMAPro, AAC, Bink, AC3/SPDIF, Opus, Musepack, FLAC, etc (also Vorbis and MPEG for certain cases).
|
|
- Source: https://github.com/FFmpeg/FFmpeg/
|
|
- DLLs: `avcodec-vgmstream-58.dll`, `avformat-vgmstream-58.dll`, `avutil-vgmstream-56.dll`, `swresample-vgmstream-3.dll`
|
|
|
|
vgmstream's FFmpeg builds remove many unnecessary parts of FFmpeg to trim down its gigantic size, and are also built with the "vgmstream-" preffix (to avoid clashing with other plugins). Current options can be seen in `ffmpeg_options.txt`.
|
|
|
|
For GCC simply use autotools (configure, make, make install), passing to `configure` the above options.
|
|
|
|
For MSCV it can be done through a helper: https://github.com/jb-alvarado/media-autobuild_suite
|
|
|
|
Both may need yasm somewhere in PATH to properly compile: https://yasm.tortall.net
|
|
|
|
|
|
### LibAtrac9
|
|
Adds support for ATRAC9.
|
|
- Source: https://github.com/Thealexbarney/LibAtrac9
|
|
- DLL: `libatrac9.dll`
|
|
|
|
Use MSCV and `libatrac9.sln`, or GCC and the Makefile included.
|
|
|
|
|
|
### libcelt
|
|
Adds support for FSB CELT versions 0.6.1 and 0.11.0.
|
|
- Source (0.6.1): http://downloads.us.xiph.org/releases/celt/celt-0.6.1.tar.gz
|
|
- Source (0.11.0): http://downloads.xiph.org/releases/celt/celt-0.11.0.tar.gz
|
|
- DLL: `libcelt-0061.dll`, `libcelt-0110.dll`
|
|
|
|
FSB uses two incompatible, older libcelt versions. Both libraries export the same symbols so normally can't coexist together. To get them working we need to make sure symbols are renamed first. This may be solved in various ways:
|
|
- using dynamic loading (LoadLibrary) but for portability it isn't an option
|
|
- It may be possible to link+rename using .def files
|
|
- Linux/Mingw's objcopy to (supposedly) rename DLL symbols
|
|
- Use GCC's preprocessor to rename functions on compile
|
|
- Rename functions in the source code directly.
|
|
|
|
To compile we'll use autotools with GCC preprocessor renaming:
|
|
- in the celt-0.6.1 dir:
|
|
```
|
|
# creates Makefiles with Automake
|
|
sh.exe ./configure
|
|
|
|
# LDFLAGS are needed to create the .dll (Automake whinning)
|
|
# CFLAGS rename a few CELT functions (we don't import the rest so they won't clash)
|
|
mingw32-make.exe clean
|
|
mingw32-make.exe LDFLAGS="-no-undefined" AM_CFLAGS="-Dcelt_decode=celt_0061_decode -Dcelt_decoder_create=celt_0061_decoder_create -Dcelt_decoder_destroy=celt_0061_decoder_destroy -Dcelt_mode_create=celt_0061_mode_create -Dcelt_mode_destroy=celt_0061_mode_destroy -Dcelt_mode_info=celt_0061_mode_info"
|
|
```
|
|
- in the celt-0.11.0 dir:
|
|
```
|
|
# creates Makefiles with Automake
|
|
sh.exe ./configure
|
|
|
|
# LDFLAGS are needed to create the .dll (Automake whinning)
|
|
# CFLAGS rename a few CELT functions (notice one is different vs 0.6.1), CUSTOM_MODES is also a must.
|
|
mingw32-make.exe clean
|
|
mingw32-make.exe LDFLAGS="-no-undefined" AM_CFLAGS="-DCUSTOM_MODES=1 -Dcelt_decode=celt_0110_decode -Dcelt_decoder_create_custom=celt_0110_decoder_create_custom -Dcelt_decoder_destroy=celt_0110_decoder_destroy -Dcelt_mode_create=celt_0110_mode_create -Dcelt_mode_destroy=celt_0110_mode_destroy -Dcelt_mode_info=celt_0110_mode_info"
|
|
```
|
|
- take the .dlls from celt-x.x.x/libcelt/.libs, and rename libcelt.dll to libcelt-0061.dll and libcelt-0110.dll respectively.
|
|
- Finally the includes. libcelt gives "celt.h" "celt_types.h" "celt_header.h", but since we renamed a few functions we have a simpler custom .h with minimal renamed symbols.
|