Commits


use (a modified version of) kristaps' oconfigure see GitHub issue #1


player_dispatch even when poll(2) doesn't tell us to we may have some imsgs queued up for later consumption that would otherwise get delayed. This fixes for e.g. $ amused stop ; amused seek 90


handle seek during pause and stop


drop needless debug printf


add seek subcommand


implement seeking This adds the internal management of the seeking, as well as the decoder backends bits.


mark ctl_* as static too


sort commands


add missing initializers meh, just to please the compiler. Global variables are guaranteed to be zeroed so not specifying a value shouldn't matter, yet it complains.


bits, rate and channels are unsigned match the struct sio_par


declare local functions as static


typo in 'repeat'


print the duration and position


keep track of current position and total duration


don't loop indefinitely in ctl_connect if the server fails to start for wathever reason, we end up looping in ctl_connect indefinitely as we try to spawn the deamon (that dies) and try to connect to it. Add an arbitrary maximum number of retries before giving up. Reported by sikmir in the GitHub issue #1, thanks!