Commit Briefs

Omar Polo

handle seek during pause and stop


Omar Polo

drop needless debug printf


Omar Polo

implement seeking

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


Omar Polo

bits, rate and channels are unsigned

match the struct sio_par


Omar Polo

declare local functions as static



Omar Polo

improving error reporting

makes the player process optionally send back a string describing the failure to provide a better and more coincise error message. This turns the syslog message(s): amused: unknown file type amused: failed to play, skipping /home/op/pics/phos.jpg into: amused: unknown file type; skipping /home/op/pics/phos.jpg


Omar Polo

don't sio_start if we're not stopped



Omar Polo

don't change params if they're the same

avoids a sio_stop in the common case of switching from song that needs similar params (such as tracks in the same album.)


Omar Polo

inline player_init




Omar Polo

inline player_enqueue


Omar Polo

s/audio_init/player_init

was the only function to disrespect the player_* namespace (well, excepting play). while here also don't mark those two as static, they were the only static functions in the file. I'm not trying to enforcing private symbols here.