This commit is contained in:
bnnm 2023-01-29 23:01:14 +01:00
parent 6a1486ece7
commit 031829c517
3 changed files with 9 additions and 6 deletions

View File

@ -553,9 +553,9 @@ Adds support for ATRAC9, used in `.at9` and other formats for the PS4 and Vita.
### libcelt
Adds support for FSB CELT versions 0.6.1 and 0.11.0, used in a handful of older `.fsb`.
- Source (0.6.1): http://downloads.us.xiph.org/releases/celt/celt-0.6.1.tar.gz
- Git mirror: https://gitlab.xiph.org/xiph/celt (commit `8ccf148573277b983692e15d5f0753081f806bea`)
- Git mirror: https://gitlab.xiph.org/xiph/celt (tag `v0.6.1`)
- Source (0.11.0): http://downloads.xiph.org/releases/celt/celt-0.11.0.tar.gz
- Git mirror: https://gitlab.xiph.org/xiph/celt (commit `0b405d1170122c859faab435405666506d52fa2e`)
- Git mirror: https://gitlab.xiph.org/xiph/celt (tag `v0.11`)
- Official Windows binaries: none
- Versions: 0.6.1, 0.11.0
- DLL: `libcelt-0061.dll`, `libcelt-0110.dll`

View File

@ -83,10 +83,6 @@ as explained below, but often will use default values. Accepted codec strings:
# - DTK|NGC_DTK Nintendo ADP/DTK ADPCM
# * For rare GC games
#
# - PCM24LE PCM 24-bit little endian
# * Interleave is multiple of 0x3 (default)
# - PCM24BE PCM 24-bit little endian
# * For few games (usually on PS3)
# - PCM16LE PCM 16-bit little endian
# * For many games (usually on PC)
# * Interleave is multiple of 0x2 (default)
@ -102,6 +98,12 @@ as explained below, but often will use default values. Accepted codec strings:
# - PCM8_SB PCM 8-bit with sign bit
# * Variation with modified encoding
# * For few rare games [Sonic CD (SCD)]
# - PCM24LE PCM 24-bit little endian
# * For few rare games [100% Orange Juice (PC)-sfx]
# * Interleave is multiple of 0x3 (default)
# - PCM24BE PCM 24-bit little endian
# * For few rare games [Deadly Premonition (PS3)]
# * Interleave is multiple of 0x3 (default)
# - PCM_FLOAT_LE PCM 32-bit float little endian
# * For few rare games [Ikinari Maou (Switch)]
# * Interleave is multiple of 0x4 (default)

View File

@ -59,6 +59,7 @@
--disable-nvenc
--disable-nvdec
--disable-vdpau
--disable-vulkan
# this can't be disabled, for av_get_random_seed though shouldn't be needed (maybe indirectly by asf?)
# Windows XP doesn't support bcrypt though, see "ffmpeg-revert-bcrypt-random.patch" if XP support is really needed