Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2014-01-04 | event/Loop: remove unused method AddCall() | Max Kellermann | 2 | -28/+0 | |
2014-01-04 | event/Loop: non-recursive Break() implementation | Max Kellermann | 1 | -4/+2 | |
Simply set the "quit" flag and wake up the thread. This works even if we're inside this thread. Setting "quit" to a new value without mutex protection is usually not safe, but good enough here. | |||||
2014-01-04 | mixer/alsa: use DeferredMonitor to update file descriptors | Max Kellermann | 1 | -14/+7 | |
EventLoop::AddCall() and EventLoop::AddIdle() are unsafe, because we can't cancel those calls. | |||||
2014-01-04 | event/BlockingCall: always use DeferredMonitor internally | Max Kellermann | 1 | -24/+0 | |
There is no advantage of using EventLoop::AddCall(), now that DeferredMonitor is thread-safe. | |||||
2014-01-04 | event/DeferredMonitor: make fully thread-safe | Max Kellermann | 4 | -54/+77 | |
Instead of creating a new eventfd for each DeferredMonitor instance, reuse EventLoop's eventfd, and add a std::list to EventLoop that manages the list of pending DeferredMonitors. This std::list is protected by the same mutex as the "calls" list. The bottom line is: reduced overhead because the per-instance eventfd was eliminated, slightly added overhead due to Mutex usage (but negligible), and we're thread-safe now. This subsystem is now good enough to replace EventLoop::AddCall(). | |||||
2014-01-04 | Added application key for soundcloud plugin | James McGlashan (DarkFox) | 1 | -1/+2 | |
2014-01-04 | Added user and search paramaters for SoundCloud plugin | James McGlashan (DarkFox) | 1 | -0/+8 | |
2014-01-02 | http -> https for SoundCloud plugin | James McGlashan (DarkFox) | 1 | -6/+6 | |
2013-12-31 | output/httpd: change "struct" to "class" | Max Kellermann | 3 | -4/+7 | |
2013-12-31 | output/httpd: move code to methods Delay(), Play(), Cancel() | Max Kellermann | 2 | -22/+46 | |
2013-12-31 | output/httpd: move Cast() into the class | Max Kellermann | 2 | -25/+23 | |
2013-12-31 | output/httpd: add methods Init(), Finish() | Max Kellermann | 2 | -12/+29 | |
2013-12-31 | output/httpd: use reference instead of pointer | Max Kellermann | 3 | -14/+14 | |
2013-12-31 | output/httpd: make the HttpdClient base class "private" | Max Kellermann | 1 | -1/+1 | |
2013-12-31 | event/*Monitor: document as not being thread-safe | Max Kellermann | 4 | -0/+15 | |
2013-12-31 | event/Loop: document that AddCall() is thread-safe | Max Kellermann | 1 | -0/+5 | |
2013-12-29 | command: "lsinfo" and "readcomments" allowed for remote files | Max Kellermann | 4 | -0/+59 | |
2013-12-29 | SongUpdate: read tags from songs in an archive | Max Kellermann | 3 | -5/+128 | |
Add the TagStream.cxx library, similar to TagFile.cxx, and use it to load tags from song files inside archives. | |||||
2013-12-29 | InputStream: add static method OpenReady() | Max Kellermann | 7 | -15/+41 | |
Merge some duplicate code. | |||||
2013-12-29 | TagFile: rewind the stream before trying the next plugin | Max Kellermann | 1 | -1/+2 | |
Got lost in commit c97685fe | |||||
2013-12-29 | DecoderList: add "pure" attribute | Max Kellermann | 1 | -0/+1 | |
2013-12-29 | DecoderList: add function decoder_plugins_supports_suffix() | Max Kellermann | 4 | -54/+20 | |
Replaces decoder_plugin_from_suffix(). | |||||
2013-12-29 | DecoderThread: use decoder_plugins_try() | Max Kellermann | 1 | -32/+44 | |
.. instead of decoder_plugin_from_suffix(). This reduces overhead by walking the array only once. | |||||
2013-12-29 | UpdateContainer: pass suffix instead of DecoderPlugin | Max Kellermann | 3 | -6/+18 | |
Instead of using the first DecoderPlugin that supports the suffix, use the first one that actually implements the "container_scan" method. | |||||
2013-12-29 | TagFile: pass reference instead of pointer | Max Kellermann | 5 | -9/+6 | |
2013-12-29 | TagFile: use decoder_plugins_try() | Max Kellermann | 1 | -41/+54 | |
.. instead of decoder_plugin_from_suffix(). This reduces overhead by walking the array only once. | |||||
2013-12-29 | DecoderList: remove unused function decoder_plugin_from_mime_type() | Max Kellermann | 2 | -25/+0 | |
2013-12-29 | daemon: no initgroups() when already running as the configured user | Max Kellermann | 1 | -1/+5 | |
We can assume that initgroups() would be a no-op in that case, however initgroups() is not allowed for unprivileged users anyway. | |||||
2013-12-29 | Daemon: fix typo in comment | Max Kellermann | 1 | -1/+1 | |
2013-12-29 | Daemon: simplify nested "if" | Max Kellermann | 1 | -5/+4 | |
2013-12-29 | Daemon: fix typo in cast | Max Kellermann | 1 | -1/+1 | |
2013-12-29 | input/smbclient: new input plugin | Max Kellermann | 4 | -0/+238 | |
2013-12-29 | ls: add "pure" attribute | Max Kellermann | 1 | -0/+3 | |
2013-12-28 | pcm/Volume: remove unused function pcm_volume_dither() | Max Kellermann | 1 | -16/+0 | |
2013-12-28 | pcm/PcmMix: improved dithering | Max Kellermann | 4 | -19/+38 | |
Use the existing PcmDither library. | |||||
2013-12-28 | pcm/Volume: improved dithering | Max Kellermann | 4 | -20/+54 | |
Instead of just adding a rectangular random value before shifting back to the normal scale, use the existing PcmDither library. | |||||
2013-12-28 | pcm/PcmDither: inline Dither24To16() and Dither32To16() | Max Kellermann | 2 | -3/+4 | |
2013-12-28 | pcm/Volume: remove optimized i386 assembly | Max Kellermann | 1 | -50/+0 | |
This code is unable to dither. Until we implement that, let's remove the code for now. i386 isn't relevant anymore anyway. | |||||
2013-12-25 | pcm/Traits: use 32 bit integer for S8 long_type | Max Kellermann | 1 | -1/+1 | |
16 bit is not enough for volume calculations. | |||||
2013-12-24 | pcm/Dither: add API documentation | Max Kellermann | 1 | -0/+18 | |
2013-12-24 | pcm/Dither: move shift from DitherConvert() to Dither() | Max Kellermann | 1 | -2/+2 | |
All callers need this shift, so let's move it to the basic method. | |||||
2013-12-24 | pcm/Dither: rename DitherShift() to DitherConvert() | Max Kellermann | 2 | -11/+11 | |
2013-12-24 | PlayerThread: log the last song that was played | Max Kellermann | 1 | -1/+4 | |
2013-12-24 | OutputControl: update both ReplayGainFilters | Max Kellermann | 1 | -0/+2 | |
The "mode" of the second ReplayGainFilter was never set, and thus replay gain was never applied to the new song during cross-fade. | |||||
2013-12-24 | OutputThread: handle failing ReplayGainFilter::Open() | Max Kellermann | 1 | -4/+10 | |
Since opening the PcmVolume object can now fail, this case must be handled. | |||||
2013-12-23 | pcm/Volume: convert to class | Max Kellermann | 4 | -132/+156 | |
Prepare for adding state. | |||||
2013-12-23 | pcm/Volume: apply volume into destination buffer | Max Kellermann | 1 | -21/+37 | |
2013-12-23 | pcm/Volume: convert i386 code to template specialization | Max Kellermann | 1 | -42/+42 | |
2013-12-23 | pcm/Volume: move code to template pcm_volume_sample() | Max Kellermann | 1 | -7/+16 | |
2013-12-23 | pcm/PcmVolume: rename to Volume.cxx | Max Kellermann | 7 | -6/+6 | |