Merge tag 'v0.21.20'

release v0.21.20
This commit is contained in:
Max Kellermann
2020-02-16 20:46:13 +01:00
4 changed files with 5 additions and 3 deletions

@@ -148,7 +148,7 @@ install:
# belonging to nss. You can unlink it" during gtest install # belonging to nss. You can unlink it" during gtest install
- test "$TRAVIS_OS_NAME" != "osx" || brew unlink nss - test "$TRAVIS_OS_NAME" != "osx" || brew unlink nss
- test "$TRAVIS_OS_NAME" != "osx" || brew install --HEAD https://gist.githubusercontent.com/Kronuz/96ac10fbd8472eb1e7566d740c4034f8/raw/gtest.rb - test "$TRAVIS_OS_NAME" != "osx" || brew install https://gist.githubusercontent.com/Kronuz/96ac10fbd8472eb1e7566d740c4034f8/raw/gtest.rb
before_script: before_script:
- ccache -s - ccache -s

3
NEWS

@@ -35,11 +35,12 @@ ver 0.22 (not yet released)
* switch to C++17 * switch to C++17
- GCC 7 or clang 4 (or newer) recommended - GCC 7 or clang 4 (or newer) recommended
ver 0.21.20 (not yet released) ver 0.21.20 (2020/02/16)
* decoder * decoder
- audiofile, ffmpeg, sndfile: handle MIME type "audio/wav" - audiofile, ffmpeg, sndfile: handle MIME type "audio/wav"
- ffmpeg: fix playback of AIFF and TTA - ffmpeg: fix playback of AIFF and TTA
- vorbis, opus: fix seeking in small files - vorbis, opus: fix seeking in small files
* fix backwards seeking on ARM (and other non-x86 CPUs)
ver 0.21.19 (2020/01/17) ver 0.21.19 (2020/01/17)
* configuration * configuration

@@ -175,5 +175,5 @@ SignedSongTime
ParseCommandArgSignedSongTime(const char *s) ParseCommandArgSignedSongTime(const char *s)
{ {
auto value = ParseCommandArgFloat(s); auto value = ParseCommandArgFloat(s);
return SongTime::FromS(value); return SignedSongTime::FromS(value);
} }

@@ -6,6 +6,7 @@ if compiler.get_id() == 'gcc'
gtest_compile_args += [ gtest_compile_args += [
'-Wno-suggest-attribute=format', '-Wno-suggest-attribute=format',
'-Wno-suggest-attribute=noreturn', '-Wno-suggest-attribute=noreturn',
'-Wno-missing-declarations',
] ]
endif endif