Commit ad27d069 authored by Max Kellermann's avatar Max Kellermann

PlayerThread: enable buffering when starting playback

For some reason, this got lost in commit 975deca8. Re-enabling this fixes stuttering at the beginning of radio streams.
parent c4b1251d
......@@ -6,6 +6,7 @@ ver 0.18.2 (2013/??/??)
* decoder:
- audiofile: require libaudiofile 0.3 due to API breakage
- dsf: enable DSD128
* enable buffering when starting playback (regression fix)
* fix build failures due to missing includes
* fix big-endian support
......
......@@ -131,7 +131,7 @@ public:
Player(PlayerControl &_pc, DecoderControl &_dc,
MusicBuffer &_buffer)
:pc(_pc), dc(_dc), buffer(_buffer),
buffering(false),
buffering(true),
decoder_starting(false),
paused(false),
queued(true),
......
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