release v0.19.16
-----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQIcBAABCAAGBQJXXuZbAAoJECNuiljG20USSegP/1gYoDyp4vDDCcRBNZkr3hlE VbFyEz06/chfUTCRWFxtM6ghVMzSpqv7I8wDA8zv22NTkForVWD3gjimtJqJ/R4w aT7QMZJmJUIH0Uf+dRp98YRG7m5S1Y5JkKEYu4oxQOECxbNMPd+ilbb6wwr2pYZ/ k2ks+oyYtPgqtWlriIbJMwXOyQEfqNCJgzxUzC2U6idVALYpj+5aK+VTY4Nk1YXw nLAu8TT40jNYFfss0bDYBzQbm/82m8Q9JIkmoOpX/3WaRaCjaVza7IvRKgDPZutJ mmrtu5SJ+QgLQLaXvav84KwtXhDbJu4zEbC7tUL0LGSmzbpiiz2DSUJP2jQ0C6nS wgcACFkHGBLOjKNbjDB1eUhS7ouzxTGgPlsMC89254R7XQP/5EV9H3Quxb48Bxq7 PuW6nNHytppfAIZP18X62oL8hpSgwK1zLe34jzayJlkGIg5O1he4FcJQykvlzrjm fBvL+hX3TM9exfASQujNXVgxFGPmgb37bE2aQyxZunE1DltJWfHyOhdme9vCuEcB acz8gR/jcp8OKe4RCEdD1g86CSW2wlMfKfnzuwPPhcw0L3kz6OYcjRr2oMae7uG0 /NFw+PcdHcVKXjiRoJsdCvtN+jRtJhCUn314IskgyKad/UNcELbo7WDBUqHC36Wg ncM6Sis4oal4jPXJ2JoE =6ee1 -----END PGP SIGNATURE----- Merge tag 'v0.19.16' release v0.19.16
This commit is contained in:
commit
8b903626c2
@ -2331,8 +2331,9 @@ EXTRA_DIST = $(doc_DATA) autogen.sh \
|
|||||||
test/test_archive_bzip2.sh \
|
test/test_archive_bzip2.sh \
|
||||||
test/test_archive_iso9660.sh \
|
test/test_archive_iso9660.sh \
|
||||||
test/test_archive_zzip.sh \
|
test/test_archive_zzip.sh \
|
||||||
$(wildcard scripts/*.sh) \
|
$(wildcard $(srcdir)/scripts/*.rb) \
|
||||||
$(man_MANS) $(DOCBOOK_FILES) doc/mpdconf.example doc/doxygen.conf \
|
$(man_MANS) $(DOCBOOK_FILES) doc/mpdconf.example doc/doxygen.conf \
|
||||||
|
$(wildcard $(srcdir)/doc/include/*.xml) \
|
||||||
systemd/mpd.socket \
|
systemd/mpd.socket \
|
||||||
android/AndroidManifest.xml \
|
android/AndroidManifest.xml \
|
||||||
android/build.py \
|
android/build.py \
|
||||||
|
5
NEWS
5
NEWS
@ -53,6 +53,11 @@ ver 0.20 (not yet released)
|
|||||||
* update
|
* update
|
||||||
- apply .mpdignore matches to subdirectories
|
- apply .mpdignore matches to subdirectories
|
||||||
|
|
||||||
|
ver 0.19.16 (2016/06/13)
|
||||||
|
* faster seeking
|
||||||
|
* fix system include path order
|
||||||
|
* add missing DocBook file to tarball
|
||||||
|
|
||||||
ver 0.19.15 (2016/04/30)
|
ver 0.19.15 (2016/04/30)
|
||||||
* decoder
|
* decoder
|
||||||
- ffmpeg: support FFmpeg 3.0
|
- ffmpeg: support FFmpeg 3.0
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
#include "config.h"
|
#include "config.h"
|
||||||
#include "FlacIOHandle.hxx"
|
#include "FlacIOHandle.hxx"
|
||||||
#include "util/Error.hxx"
|
#include "util/Error.hxx"
|
||||||
|
#include "Log.hxx"
|
||||||
#include "Compiler.h"
|
#include "Compiler.h"
|
||||||
|
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
@ -87,7 +88,13 @@ FlacIOSeek(FLAC__IOHandle handle, FLAC__int64 _offset, int whence)
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
return is->LockSeek(offset, IgnoreError()) ? 0 : -1;
|
Error error;
|
||||||
|
if (!is->LockSeek(offset, error)) {
|
||||||
|
LogError(error);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static FLAC__int64
|
static FLAC__int64
|
||||||
|
@ -565,6 +565,8 @@ Player::SeekDecoder()
|
|||||||
{
|
{
|
||||||
assert(pc.next_song != nullptr);
|
assert(pc.next_song != nullptr);
|
||||||
|
|
||||||
|
pc.outputs.Cancel();
|
||||||
|
|
||||||
const SongTime start_time = pc.next_song->GetStartTime();
|
const SongTime start_time = pc.next_song->GetStartTime();
|
||||||
|
|
||||||
if (!dc.LockIsCurrentSong(*pc.next_song)) {
|
if (!dc.LockIsCurrentSong(*pc.next_song)) {
|
||||||
@ -628,8 +630,6 @@ Player::SeekDecoder()
|
|||||||
/* re-fill the buffer after seeking */
|
/* re-fill the buffer after seeking */
|
||||||
buffering = true;
|
buffering = true;
|
||||||
|
|
||||||
pc.outputs.Cancel();
|
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user