Max Kellermann
|
54de8b8e77
|
net/*, ...: use AF_LOCAL instead of AF_UNIX
|
2017-08-10 13:12:13 +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
|
ae4b30a697
|
output/httpd: add "pause" flag
Don't access AudioOutput::pause.
|
2017-05-23 11:13:41 +02:00 |
|
Max Kellermann
|
4faef28cc5
|
release v0.20.7
-----BEGIN PGP SIGNATURE-----
iQJEBAABCAAuFiEEA5IzWngIOJSkMBxDI26KWMbbRRIFAlkaFL0QHG1heEBtdXNp
Y3BkLm9yZwAKCRAjbopYxttFEr4ID/9iAQC+7fFv06uLOm48Ufu+PgoD8uJkAwF5
QuLQkc85g9urn+bu9N7Qs7Vypp7aLyGcJKY0jyA8wxkOj24pUC3GYk80daUt561V
5s20FnoS/Uoman3CSJL94IfCUBxejizE6vgIIHTc5bb6U0qIsPub/8JTTE2Ih7uP
nvFZ5uBQ+YTc7at+iIH9123eUMKkitkh8osNblovqQT9v42++Tm4ztAytRHBjwUA
Itew5HhlvahbLKqFs/7vmICh/YX1FcOV7cV+erEWYfkH0KCI2bhSle4u2d0CBOvD
VJlDnBCo9bM7WKcPYqJiFFFXA0CRk06wbkkkAtwF4zjp8xos7aQcq4FyQnYL8KXo
5lijIhRwBURBd+nt8oA9kuEhBt/T75otcemJkzVaYappHTJCLjhxSGcPt8mw+nE9
9WQzsp/MIVzg9l5g3D9S/43xM7uhvn98Tn1Qf2s8YRd2o8CZeOhW+X3RvbCvVPv2
mOlx4sFAv8DOJ3KxMdqiJT+PmylPyJluQdqH+tMc8BdPg/kpSpYIPTuSjjRqK1yh
ld5do0HtAAwiHtvXfk5YVFjJSpO0c8yVn6xci2Cl4k/5ZHj2UE1ln+N5vCea2BRF
2J3HAjROwtcwY3lU1jFnEAogf24KWiFJqhhC0EqBGUdlrM8Dn37P5cEWWjROIMNK
lPEdovokNw==
=CdDy
-----END PGP SIGNATURE-----
Merge tag 'v0.20.7'
release v0.20.7
|
2017-05-15 23:01:49 +02:00 |
|
Max Kellermann
|
71f0ed8b74
|
*: add "noexcept" to many, many function prototypes
This eliminates some overhead, because the compiler doesn't need to
consider these functions throwing.
|
2017-05-08 14:44:49 +02:00 |
|
Max Kellermann
|
dae8b78569
|
output/httpd: copy the Page reference; fixes use-after-free
|
2017-03-29 20:17:09 +02:00 |
|
Max Kellermann
|
512e81c629
|
output/httpd: use emplace() instead of push()
|
2017-02-19 20:48:17 +01:00 |
|
Max Kellermann
|
452666f742
|
output/httpd: wake up the I/O thread only if pages have been read from encoder
|
2017-02-19 20:46:20 +01:00 |
|
Max Kellermann
|
72008d951b
|
output/httpd: no mutex lock while reading data from encoder
|
2017-02-19 20:45:16 +01:00 |
|
Max Kellermann
|
72146e7800
|
output/httpd: use std::lock_guard
|
2017-02-19 20:43:45 +01:00 |
|
Max Kellermann
|
f7af1bb8e2
|
output/httpd: cancel the DeferredMonitor in Close()
|
2017-02-19 20:41:34 +01:00 |
|
Max Kellermann
|
f88f1fca3f
|
output/httpd: move Close() lock into the I/O thread
Fixes a potential deadlock introduced by commit 945287358b
|
2017-02-19 20:41:06 +01:00 |
|
Max Kellermann
|
26e4a40cc7
|
output/httpd/Page: use std::shared_ptr instead of class RefCount
|
2017-02-19 20:17:57 +01:00 |
|
Max Kellermann
|
8fd9d91974
|
output/Plugin: pass EventLoop& to init()
Eliminate dependency on io_thread_get().
|
2017-01-25 22:54:41 +01:00 |
|
Max Kellermann
|
8d70d10aba
|
output/httpd: use AudioOutputWrapper
|
2017-01-25 10:05:08 +01:00 |
|
Max Kellermann
|
5900253b85
|
update copyright year
|
2017-01-03 20:48:59 +01:00 |
|
Max Kellermann
|
2e182e84c3
|
thread/Mutex: remove ScopeLock, use std::lock_guard directly
|
2017-01-03 07:11:57 +01:00 |
|
Max Kellermann
|
71e7d32b08
|
output/Timer: use std::chrono
|
2016-12-28 22:00:33 +01:00 |
|
Max Kellermann
|
d5e422970c
|
output/Plugin: delay() returns std::chrono::steady_clock::duration
|
2016-12-28 22:00:29 +01:00 |
|
Max Kellermann
|
d9cb85df83
|
output/Plugin: remove 'Error&' parameters, use C++ exceptions only
|
2016-11-09 12:36:21 +01:00 |
|
Max Kellermann
|
9dbdc75689
|
output/httpd: migrate from class Error to C++ exceptions
|
2016-11-09 08:40:10 +01:00 |
|
Max Kellermann
|
d8b6aff23a
|
encoder: migrate from class Error to C++ exceptions
|
2016-11-07 09:25:51 +01:00 |
|
Max Kellermann
|
d52c7e7a1b
|
output/httpd: throw C++ exception on init error
|
2016-10-28 22:42:10 +02:00 |
|
Max Kellermann
|
0c343cb1c3
|
encoder/Plugin: migrate from class Error to C++ exceptions
|
2016-10-28 21:29:01 +02:00 |
|
Max Kellermann
|
aead221184
|
event/ServerSocket: migrate from class Error to C++ exceptions
|
2016-10-28 21:22:25 +02:00 |
|
Max Kellermann
|
b376536a3b
|
encoder/Interface: convert PreparedEncoder to abstract class
|
2016-05-04 18:32:52 +02:00 |
|
Max Kellermann
|
e7edc02647
|
encoder/Interface: move instance methods to abstract class
Rename struct Encoder to PreparedEncoder, and add a new (abstract)
class Encoder which represents one encoder instance.
|
2016-05-04 16:32:31 +02:00 |
|
Max Kellermann
|
1aee89f5ea
|
*: include cleanup (using iwyu)
|
2016-03-01 22:08:13 +01:00 |
|
Max Kellermann
|
1d67aa7bf2
|
update copyright year to 2016
|
2016-02-26 17:54:05 +01:00 |
|
Max Kellermann
|
6bea346c41
|
output/httpd: use boost::intrusive::list instead of std::forward_list
|
2015-10-19 16:00:26 +02:00 |
|
Max Kellermann
|
83752e9349
|
net/ToString: rename sockaddr_to_string() to ToString()
|
2015-07-22 10:26:18 +02:00 |
|
Max Kellermann
|
6f22452b54
|
net/Resolver: move sockaddr_to_string() to ToString.cxx
|
2015-07-22 10:03:36 +02:00 |
|
Max Kellermann
|
4e30e74739
|
net/SocketAddress: light wrapper for struct sockaddr
|
2015-02-10 22:06:06 +01:00 |
|
Max Kellermann
|
42890b9acf
|
system/{Resolver,Socket{Error,Util}}: move to new library libnet.a
|
2015-02-10 22:06:06 +01:00 |
|
Max Kellermann
|
4fa5538e2b
|
config/Param: split block-specific attributes to new struct ConfigBlock
The old struct config_param remains only for top-level string options.
|
2015-01-21 23:56:33 +01:00 |
|
Max Kellermann
|
ae4c189e19
|
encoder/Interface: move functions into the struct
|
2015-01-08 19:36:19 +01:00 |
|
Max Kellermann
|
362a6e6d46
|
encoder/Plugin: move struct Encoder to EncoderInterface.hxx
|
2015-01-08 19:31:57 +01:00 |
|
Max Kellermann
|
712ed555e6
|
Copyright year 2015
|
2015-01-01 19:48:13 +01:00 |
|
Max Kellermann
|
af9092df39
|
EncoderPlugin: pass Tag reference to method tag()
|
2014-12-26 22:30:54 +01:00 |
|
Max Kellermann
|
58a5da33c2
|
OutputPlugin: pass Tag reference to _send_tag()
|
2014-12-26 22:27:01 +01:00 |
|
Max Kellermann
|
0bbfb28992
|
output/httpd: move to dedicated directory
|
2014-02-19 09:22:08 +01:00 |
|