Commit 07e0a31d authored by Max Kellermann's avatar Max Kellermann

Merge tag 'v0.21.20'

release v0.21.20
parents 36a67827 f24bcc7f
...@@ -148,7 +148,7 @@ install: ...@@ -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
......
...@@ -35,11 +35,12 @@ ver 0.22 (not yet released) ...@@ -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 ...@@ -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' ...@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment