Max Kellermann
|
0c300bd4b4
|
test/run_decoder: add command-line option to read mpd.conf
|
2018-02-13 00:00:00 +01:00 |
Max Kellermann
|
53acb7bfcb
|
test/run_decder: RAII-style global initialization
|
2018-02-13 00:00:00 +01:00 |
Max Kellermann
|
005bb59797
|
test/run_input: move code from Scan() to input/ScanTags.cxx
|
2018-01-29 16:57:44 +01:00 |
Max Kellermann
|
3ecf5fd442
|
test/run_input: add frontend for InputPlugin::scan_tags()
|
2018-01-26 20:08:01 +01:00 |
Max Kellermann
|
3461580b34
|
test/run_input: add option "--verbose"
|
2018-01-24 15:29:30 +01:00 |
Max Kellermann
|
fcfdeac1c7
|
test/test_translate_song: use std::to_string()
|
2018-01-24 13:38:44 +01:00 |
Max Kellermann
|
8b42fd0a28
|
Merge branch 'v0.20.x'
|
2018-01-23 16:45:57 +01:00 |
Max Kellermann
|
ea66cdd6a5
|
test/read_mixer: another kludge to work around -Wnull-dereference
|
2018-01-23 16:42:25 +01:00 |
Max Kellermann
|
f762e8034f
|
test/NullMixerListener: new class to fix -Wnull-dereference
|
2018-01-23 16:28:56 +01:00 |
Max Kellermann
|
1e3f0650df
|
SongUpdate: add "noexcept"
|
2018-01-21 11:53:42 +01:00 |
Max Kellermann
|
61eb2aa328
|
storage/Interface: wrap StorageDirectoryReader in std::unique_ptr
|
2018-01-21 11:04:30 +01:00 |
Max Kellermann
|
0095e2d7d8
|
playlist/Plugin: use std::unique_ptr<SongEnumerator>
|
2018-01-20 19:59:42 +01:00 |
Max Kellermann
|
eef5b58211
|
tag/Tag: add "noexcept"
|
2018-01-20 19:39:46 +01:00 |
Max Kellermann
|
c4f7740b80
|
fs/Path: replace method Null() with nullptr_t constructor
|
2018-01-17 12:16:21 +01:00 |
Max Kellermann
|
6c239f7a00
|
test/run_input: add option to load a configuration file
|
2018-01-17 12:09:08 +01:00 |
Max Kellermann
|
7d5b859756
|
test/run_input: add command-line option parser
|
2018-01-17 12:04:01 +01:00 |
Max Kellermann
|
8649ea3d6f
|
thread/Thread: use BoundMethod
|
2018-01-07 17:20:26 +01:00 |
Max Kellermann
|
6d0d8cf9cf
|
filter/Filter: add virtual method Flush()
This will be used by filters which have internal buffers which need to
be flushed at the end, e.g. the "soxr" resampler.
|
2018-01-02 23:15:51 +01:00 |
Max Kellermann
|
bbabb7a14c
|
filter/Plugin: move filter_configured_new() to LoadOne.cxx
|
2018-01-02 23:06:53 +01:00 |
Max Kellermann
|
cd6de3b24e
|
neighbor/{Explorer,Listener}: add "noexcept"
|
2018-01-02 16:58:14 +01:00 |
Max Kellermann
|
3c5e4e2788
|
storage/Plugin: return std::unique_ptr<Storage>
|
2018-01-02 16:11:17 +01:00 |
Max Kellermann
|
10537c5095
|
test/run_filter: use "auto"
|
2018-01-01 19:06:17 +01:00 |
Max Kellermann
|
551ac56a33
|
Filter/Internal: split header
|
2018-01-01 18:48:34 +01:00 |
Max Kellermann
|
a2c2288cd6
|
test/run_filter: throw exception on error
|
2017-12-27 12:03:13 +01:00 |
Max Kellermann
|
e2621d5e44
|
filter/Plugin: return std::unique_ptr<PreparedFilter>
|
2017-12-27 11:39:01 +01:00 |
Max Kellermann
|
2e0949d8e6
|
archive/Plugin: return std::unique_ptr<ArchiveFile>
|
2017-12-27 09:07:21 +01:00 |
Max Kellermann
|
49619fbd77
|
input/Proxy: use InputStreamPtr
|
2017-12-26 20:03:37 +01:00 |
Max Kellermann
|
9aec2f019a
|
archive/File: eliminate Close(), make destructor virtual instead
|
2017-12-22 16:30:17 +01:00 |
Max Kellermann
|
73e69edac3
|
input/InputStream: ReadTag() returns std::unique_ptr<Tag>
|
2017-12-20 15:22:18 +01:00 |
Max Kellermann
|
cb3042ffb2
|
tag/Builder: CommitNew() returns std::unique_ptr<Tag>
|
2017-12-20 14:55:25 +01:00 |
Max Kellermann
|
d293aaf945
|
test/test_icy_parser: use AtScopeExit()
|
2017-12-20 14:54:56 +01:00 |
Max Kellermann
|
914df18bf9
|
Main, ...: catch any exception, not just std::runtime_error
|
2017-12-19 10:56:23 +01:00 |
Max Kellermann
|
6246d36fe6
|
Merge branch 'v0.20.x'
|
2017-12-16 20:56:06 +01:00 |
Max Kellermann
|
dfaf08743c
|
*: check defined(_WIN32) instead of defined(WIN32)
Only _WIN32 is defined by the compiler, and WIN32 is not standardized
and may be missing.
Closes #169
|
2017-12-12 10:22:20 +01:00 |
Max Kellermann
|
e4a147218b
|
Merge branch 'v0.20.x'
|
2017-11-12 18:55:12 +01:00 |
Max Kellermann
|
a2b77c8813
|
decoder/ffmpeg, test/test_protocol: catch exceptions by reference
Work around -Werror=catch-value.
|
2017-11-12 18:54:29 +01:00 |
Max Kellermann
|
49784513b1
|
util/{Const,Writable}Buffer, ...: rename IsEmpty() to empty(), imitating STL
|
2017-11-10 19:24:33 +01:00 |
Max Kellermann
|
28a2d41b85
|
db/DatabasePlugin: pass EventThread's EventLoop to create()
Allows database plugins to use the EventThread, e.g. for CURL
integration.
|
2017-08-24 19:53:52 +02:00 |
Max Kellermann
|
cd0e92878f
|
test/DumpDatabase: start an EventThread
Our local EventLoop instance was never run; it was not usable.
|
2017-08-18 17:16:23 +02:00 |
Max Kellermann
|
9033f07724
|
test/{DumpDatabase,run_neighbor_explorer}: add class GlobalInit
|
2017-08-18 14:21:54 +02:00 |
Max Kellermann
|
b886dfae4d
|
DetachedSong, db/LightSong, db/simple/Song: use std::chrono::system_clock::time_point
|
2017-08-18 12:22:47 +02:00 |
Max Kellermann
|
a257504ba4
|
mixer/Plugin: pass AudioOutput to init()
Fix breakage from commit bea5681fd8
|
2017-08-10 13:07:36 +02:00 |
Max Kellermann
|
31bad5f7af
|
output/Interface: convert to abstract class
Yet another C-style vtable replaced with C++.
|
2017-08-10 09:01:41 +02:00 |
Max Kellermann
|
bea5681fd8
|
output/Interface: define a new struct AudioOutput
Hide struct FilteredAudioOutput from the plugins, preparing for hiding
MPD's core internals.
|
2017-08-08 18:58:40 +02:00 |
Max Kellermann
|
47c9d6ac64
|
output/Internal: rename source to Filtered.cxx
|
2017-08-07 21:50:13 +02:00 |
Max Kellermann
|
d0157af13e
|
filter/Internal: rename struct AudioOutput to FilteredAudioOutput
Prepare to add an abstract class AudioOutput, to be implemented by
plugins, to get rid of the C-style vtable.
|
2017-08-07 18:47:39 +02:00 |
Max Kellermann
|
33f67d418f
|
test/run_output: use AudioOutput::{Begin,Finish}Destroy()
|
2017-08-07 18:14:54 +02:00 |
Max Kellermann
|
ae713cb099
|
*: add lots of "noexcept" specifications
|
2017-06-04 13:09:11 +02:00 |
Max Kellermann
|
979f1b6c39
|
release v0.20.9
-----BEGIN PGP SIGNATURE-----
iQJEBAABCAAuFiEEA5IzWngIOJSkMBxDI26KWMbbRRIFAlkz5jkQHG1heEBtdXNp
Y3BkLm9yZwAKCRAjbopYxttFEubuD/kBXMcV4XawqGNNtSHdrY8CxSL8wJMCMJQl
aMgRkKLPRml8Hj9FNNG9pjXBuT+qUgPX7t9gBEiT7c+sV3fHH40gUf1js5GIsEPm
BAVfvww5EhmQWWVhPTLk1iZ4jp6E96mDmIG1znwo7etSZHXU8RJfR7woBi3SPJ9f
OPcrimskNuWpAWeaEIKi/1Iwzy8d9VK9Ttb73gA3M5zSm7ioXzt3YClpwLRM8JU6
QeUJchy6VwXnygswjUNmbhPc3GsD2FyUZ4OtJ0hodnqqajfldBxhcHUnQk4zZULr
1nLSyOuA9bwLuFohH1T6HiY9z8PFzgqdIHvsjOJgZ4gQa69PVNjal2tUEUav9zFv
aK4LvTVPnIk+hqRbtLpV7/rPKuClrC9BO4oYdBGBDNY4hqVpvRA9obP1s00aOi+K
UhYqLqg7yeIEeTlUxFOhXJCKAEL69BuXT5ihJtDlB/dCUzv37sEch/4WDgs7uc+O
9kJYlElvozw57mbczsee/PCSnSWrLCq/qG/bNEUUQOTueWNuifh3PL62UXGgfbEH
01hJDyLr6ETSmWn7rjTfLJiHThX/EQQvOhs+35fbCyry65z4tFwrilGDmFVUWGPq
/6QEpY1D6q4fkoma/iWOZoTkfKewatAPGMGWoJaGhCnfQFz4VTFtS2bDtuUctQ16
jnXnPFxqBw==
=0SSp
-----END PGP SIGNATURE-----
Merge tag 'v0.20.9'
release v0.20.9
|
2017-06-04 12:57:05 +02:00 |
Max Kellermann
|
a057b4f6d8
|
*: add lost of "noexcept" specifications
|
2017-06-04 12:46:48 +02:00 |