├── .gitattributes ├── .github └── workflows │ ├── build.yml │ └── release.yml ├── .gitignore ├── CHANGELOG ├── CMakeLists.txt ├── Dockerfile ├── LICENSE ├── LICENSE-CRCpp ├── README.md ├── config ├── PKGBUILD ├── cmake_uninstall.cmake.in ├── config.h.in ├── presets │ ├── default.ini │ ├── ebur128.ini │ ├── loudgain.ini │ └── no_album.ini ├── rsgain.manifest.in ├── vcpkg.cmake ├── vcpkg_triplets │ └── custom-triplet.cmake └── versioninfo.rc.in ├── docs ├── BUILDING.md └── rsgain.1 ├── src ├── CMakeLists.txt ├── easymode.cpp ├── easymode.hpp ├── external │ └── CRC.h ├── output.cpp ├── output.hpp ├── rsgain.cpp ├── rsgain.hpp ├── scan.cpp ├── scan.hpp ├── tag.cpp └── tag.hpp └── vcpkg.json /.gitattributes: -------------------------------------------------------------------------------- 1 | src/external/** linguist-vendored 2 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/complexlogic/rsgain/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/complexlogic/rsgain/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/complexlogic/rsgain/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/complexlogic/rsgain/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/complexlogic/rsgain/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/complexlogic/rsgain/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-CRCpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/complexlogic/rsgain/HEAD/LICENSE-CRCpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/complexlogic/rsgain/HEAD/README.md -------------------------------------------------------------------------------- /config/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/complexlogic/rsgain/HEAD/config/PKGBUILD -------------------------------------------------------------------------------- /config/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/complexlogic/rsgain/HEAD/config/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /config/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/complexlogic/rsgain/HEAD/config/config.h.in -------------------------------------------------------------------------------- /config/presets/default.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/complexlogic/rsgain/HEAD/config/presets/default.ini -------------------------------------------------------------------------------- /config/presets/ebur128.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/complexlogic/rsgain/HEAD/config/presets/ebur128.ini -------------------------------------------------------------------------------- /config/presets/loudgain.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/complexlogic/rsgain/HEAD/config/presets/loudgain.ini -------------------------------------------------------------------------------- /config/presets/no_album.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/complexlogic/rsgain/HEAD/config/presets/no_album.ini -------------------------------------------------------------------------------- /config/rsgain.manifest.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/complexlogic/rsgain/HEAD/config/rsgain.manifest.in -------------------------------------------------------------------------------- /config/vcpkg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/complexlogic/rsgain/HEAD/config/vcpkg.cmake -------------------------------------------------------------------------------- /config/vcpkg_triplets/custom-triplet.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/complexlogic/rsgain/HEAD/config/vcpkg_triplets/custom-triplet.cmake -------------------------------------------------------------------------------- /config/versioninfo.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/complexlogic/rsgain/HEAD/config/versioninfo.rc.in -------------------------------------------------------------------------------- /docs/BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/complexlogic/rsgain/HEAD/docs/BUILDING.md -------------------------------------------------------------------------------- /docs/rsgain.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/complexlogic/rsgain/HEAD/docs/rsgain.1 -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/complexlogic/rsgain/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/easymode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/complexlogic/rsgain/HEAD/src/easymode.cpp -------------------------------------------------------------------------------- /src/easymode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/complexlogic/rsgain/HEAD/src/easymode.hpp -------------------------------------------------------------------------------- /src/external/CRC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/complexlogic/rsgain/HEAD/src/external/CRC.h -------------------------------------------------------------------------------- /src/output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/complexlogic/rsgain/HEAD/src/output.cpp -------------------------------------------------------------------------------- /src/output.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/complexlogic/rsgain/HEAD/src/output.hpp -------------------------------------------------------------------------------- /src/rsgain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/complexlogic/rsgain/HEAD/src/rsgain.cpp -------------------------------------------------------------------------------- /src/rsgain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/complexlogic/rsgain/HEAD/src/rsgain.hpp -------------------------------------------------------------------------------- /src/scan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/complexlogic/rsgain/HEAD/src/scan.cpp -------------------------------------------------------------------------------- /src/scan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/complexlogic/rsgain/HEAD/src/scan.hpp -------------------------------------------------------------------------------- /src/tag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/complexlogic/rsgain/HEAD/src/tag.cpp -------------------------------------------------------------------------------- /src/tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/complexlogic/rsgain/HEAD/src/tag.hpp -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/complexlogic/rsgain/HEAD/vcpkg.json --------------------------------------------------------------------------------