mirror of
https://github.com/badaix/snapcast.git
synced 2025-05-08 14:46:35 +02:00
some more items on the todo list
This commit is contained in:
parent
a332a3c994
commit
d198b4d0b1
2 changed files with 9 additions and 5 deletions
5
TODO.md
5
TODO.md
|
@ -8,12 +8,15 @@ General
|
||||||
- LastSeen: relative time [s] or [ms]?
|
- LastSeen: relative time [s] or [ms]?
|
||||||
- Android crash: Empty latency => app restart => empty client list
|
- Android crash: Empty latency => app restart => empty client list
|
||||||
- Android clean data structures after changing the Server
|
- Android clean data structures after changing the Server
|
||||||
- UDP for the audio stream
|
- UDP based audio streaming
|
||||||
|
|
||||||
Server
|
Server
|
||||||
------
|
------
|
||||||
|
|
||||||
- Provide io_context to stream-readers
|
- Provide io_context to stream-readers
|
||||||
|
- [fd stream](https://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer-plugins/html/gstreamer-plugins-fdsink.html)
|
||||||
|
- UDP/TCP stream
|
||||||
|
- "sync" option for streams (realtime reading vs read as much as available)
|
||||||
- Override conf file settings on command line
|
- Override conf file settings on command line
|
||||||
|
|
||||||
Client
|
Client
|
||||||
|
|
|
@ -215,7 +215,8 @@ int main(int argc, char** argv)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
bool active = true;
|
bool active = true;
|
||||||
auto signal_handler = install_signal_handler({SIGHUP, SIGTERM, SIGINT}, [&active](int signal, const std::string& strsignal) {
|
auto signal_handler = install_signal_handler({SIGHUP, SIGTERM, SIGINT},
|
||||||
|
[&active](int signal, const std::string& strsignal) {
|
||||||
SLOG(INFO) << "Received signal " << signal << ": " << strsignal << "\n";
|
SLOG(INFO) << "Received signal " << signal << ": " << strsignal << "\n";
|
||||||
active = false;
|
active = false;
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Reference in a new issue