Commit 0b93f52b authored by Max Kellermann's avatar Max Kellermann

Merge tag 'v0.20.10'

release v0.20.10
parents aa9c6062 57a71c15
...@@ -9,13 +9,14 @@ ver 0.21 (not yet released) ...@@ -9,13 +9,14 @@ ver 0.21 (not yet released)
* output * output
- alsa: non-blocking mode - alsa: non-blocking mode
ver 0.20.10 (not yet released) ver 0.20.10 (2017/08/24)
* decoder * decoder
- ffmpeg: support MusicBrainz ID3v2 tags - ffmpeg: support MusicBrainz ID3v2 tags
* tags * tags
- aiff: fix FORM chunk size endianess (is big-endian) - aiff: fix FORM chunk size endianess (is big-endian)
* mixer * mixer
- osx: add a mixer for OSX. - osx: add a mixer for OSX.
* fix crash when resuming playback before decoder is ready
* fix crash on Windows * fix crash on Windows
ver 0.20.9 (2017/06/04) ver 0.20.9 (2017/06/04)
......
...@@ -19,8 +19,8 @@ libvorbis = AutotoolsProject( ...@@ -19,8 +19,8 @@ libvorbis = AutotoolsProject(
) )
opus = AutotoolsProject( opus = AutotoolsProject(
'http://downloads.xiph.org/releases/opus/opus-1.1.4.tar.gz', 'https://archive.mozilla.org/pub/opus/opus-1.2.1.tar.gz',
'9122b6b380081dd2665189f97bfd777f04f92dc3ab6698eea1dbb27ad59d8692', 'cfafd339ccd9c5ef8d6ab15d7e1a412c054bf4cb4ecbbbcc78c12ef2def70732',
'lib/libopus.a', 'lib/libopus.a',
['--disable-shared', '--enable-static'], ['--disable-shared', '--enable-static'],
) )
...@@ -69,8 +69,8 @@ liblame = AutotoolsProject( ...@@ -69,8 +69,8 @@ liblame = AutotoolsProject(
) )
ffmpeg = FfmpegProject( ffmpeg = FfmpegProject(
'http://ffmpeg.org/releases/ffmpeg-3.3.2.tar.xz', 'http://ffmpeg.org/releases/ffmpeg-3.3.3.tar.xz',
'1998de1ab32616cbf2ff86efc3f1f26e76805ec5dc51e24c041c79edd8262785', 'd2a9002cdc6b533b59728827186c044ad02ba64841f1b7cd6c21779875453a1e',
'lib/libavcodec.a', 'lib/libavcodec.a',
[ [
'--disable-shared', '--enable-static', '--disable-shared', '--enable-static',
...@@ -93,8 +93,8 @@ ffmpeg = FfmpegProject( ...@@ -93,8 +93,8 @@ ffmpeg = FfmpegProject(
) )
curl = AutotoolsProject( curl = AutotoolsProject(
'http://curl.haxx.se/download/curl-7.54.1.tar.lzma', 'http://curl.haxx.se/download/curl-7.55.1.tar.xz',
'2b7af34d4900887e0b4e0a9f545b9511ff774d07151ae4976485060d3e1bdb6e', '3eafca6e84ecb4af5f35795dee84e643d5428287e88c041122bb8dac18676bb7',
'lib/libcurl.a', 'lib/libcurl.a',
[ [
'--disable-shared', '--enable-static', '--disable-shared', '--enable-static',
...@@ -114,7 +114,7 @@ curl = AutotoolsProject( ...@@ -114,7 +114,7 @@ curl = AutotoolsProject(
) )
boost = BoostProject( boost = BoostProject(
'http://downloads.sourceforge.net/project/boost/boost/1.64.0/boost_1_64_0.tar.bz2', 'http://downloads.sourceforge.net/project/boost/boost/1.65.0/boost_1_65_0.tar.bz2',
'7bcc5caace97baa948931d712ea5f37038dbb1c5d89b43ad4def4ed7cb683332', 'ea26712742e2fb079c2a566a31f3266973b76e38222b9f88b387e3c8b2f9902c',
'include/boost/version.hpp', 'include/boost/version.hpp',
) )
...@@ -135,7 +135,7 @@ class Player { ...@@ -135,7 +135,7 @@ class Player {
/** /**
* The current audio format for the audio outputs. * The current audio format for the audio outputs.
*/ */
AudioFormat play_audio_format; AudioFormat play_audio_format = AudioFormat::Undefined();
/** /**
* The time stamp of the chunk most recently sent to the * The time stamp of the chunk most recently sent to the
......
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