Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | db/upnp/WorkQueue: remove unnecessary "waiting" attributes | Max Kellermann | 2014-01-14 | 1 | -24/+9 |
| | |||||
* | db/upnp/WorkQueue: remove unused method waitIdle() | Max Kellermann | 2014-01-14 | 1 | -42/+0 |
| | | | | | Contrary to setTerminateAndWait()'s documentation, the method does wait for worker threads to exit via pthread_join(). | ||||
* | db/upnp/WorkQueue: use array instead of std::list | Max Kellermann | 2014-01-14 | 1 | -15/+19 |
| | | | | Reduce bloat further. | ||||
* | db/upnp/WorkQueue: use std::list instead of std::unordered_map | Max Kellermann | 2014-01-14 | 1 | -18/+6 |
| | | | | Reduce bloat. | ||||
* | db/upnp/WorkQueue: rename attributes | Max Kellermann | 2014-01-14 | 1 | -78/+78 |
| | |||||
* | db/upnp/WorkQueue: pass reference to take() | Max Kellermann | 2014-01-14 | 2 | -3/+3 |
| | |||||
* | db/upnp/WorkQueue: remove unused method qsize() | Max Kellermann | 2014-01-14 | 1 | -8/+0 |
| | |||||
* | db/upnp/WorkQueue: remove unused "szp" parameter from take() | Max Kellermann | 2014-01-14 | 2 | -5/+2 |
| | |||||
* | db/upnp/WorkQueue: remove unused statistics | Max Kellermann | 2014-01-14 | 1 | -17/+2 |
| | |||||
* | OutputThread: use real-time priority | Max Kellermann | 2014-01-14 | 3 | -0/+17 |
| | |||||
* | UpdateGlue: let the update thread run at "idle" priority | Max Kellermann | 2014-01-14 | 4 | -0/+77 |
| | | | | | | The update thread should not affect the rest of the system, therefore set "idle" priority, and let it only run when nobody else is using the resources. | ||||
* | Merge branch 'shine' of git://github.com/ekroth/mpd | Max Kellermann | 2014-01-13 | 1 | -5/+17 |
|\ | |||||
| * | encoder/shine: fix segfault workaround | Andrée Ekroth | 2014-01-13 | 1 | -5/+17 |
| | | | | | | | | | | | | | | Initializing and closing the Shine library without writing any data results in a segmentation fault. The current workaround writes zeroes if there was no actual data. | ||||
* | | input/despotify: change name to "despotify" | Max Kellermann | 2014-01-13 | 1 | -1/+1 |
| | | | | | | | | The name "spt" didn't make much sense for this plugin. | ||||
* | | CommandLine: print list of database plugins | Max Kellermann | 2014-01-13 | 1 | -0/+8 |
| | | |||||
* | | copyright year 2014 | Max Kellermann | 2014-01-13 | 793 | -794/+794 |
| | | |||||
* | | db/upnp: add fallback for emplace() | Max Kellermann | 2014-01-13 | 2 | -1/+10 |
| | | | | | | | | | | The method emplace() was added in gcc 4.8. This commit restores compatibility with gcc 4.7. | ||||
* | | db/upnp: use std::function for the libupnp callback | Max Kellermann | 2014-01-13 | 3 | -31/+16 |
| | | | | | | | | Replaces the bloated std::map. | ||||
* | | db/upnp: fix "upnp:class" parser | Max Kellermann | 2014-01-13 | 1 | -7/+7 |
|/ | | | | | "upnp:class" is an element, not an attribute of element "item". This fixes a regression from commit 65ebfb16 | ||||
* | encoder/shine: remove unnecessary buffer | Andrée Ekroth | 2014-01-13 | 1 | -42/+44 |
| | | | | | | | Now writes to the de-interleaved buffers directly, instead of writing to an intermediate fifo buffer. Fix indentation and 80 char width lines. | ||||
* | Merge tag 'release-0.18.7' | Max Kellermann | 2014-01-13 | 2 | -2/+3 |
|\ | |||||
| * | release v0.18.7 | Max Kellermann | 2014-01-13 | 1 | -1/+1 |
| | | |||||
| * | configure.ac: reject libmpcdec SV7 in configure script | Max Kellermann | 2014-01-11 | 2 | -1/+2 |
| | | | | | | | | | | Look for symbol "mpc_demux_init" which does not exist in SV7. This avoids build failures when SV7 was found by configure.ac. | ||||
* | | Shine encoding plugin | Andrée Ekroth | 2014-01-13 | 7 | -0/+343 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This encoding plugin features a fixed-point mp3 encoder, with faster encoding on architectures without a FPU. Right now the encoder is limited to stereo and 16 bit depth. The bitrate and sample rate can be modified in audio_output. audio_output { type "httpd" name "My shine stream" encoder "shine" port "8000" format "44100:16:2" bitrate "320" # default: 128 } | ||||
* | | db/upnp/Directory: parse item_class in StartElement | Max Kellermann | 2014-01-11 | 1 | -12/+8 |
| | | | | | | | | Don't add to the std::map. | ||||
* | | db/upnp/Object: add attribute "url" | Max Kellermann | 2014-01-11 | 3 | -2/+4 |
| | | | | | | | | Don't store in the std::map. | ||||
* | | db/upnp/Directory: parse duration | Max Kellermann | 2014-01-11 | 3 | -28/+22 |
| | | | | | | | | | | | | Don't put all <res/> attributes to the attributes map; parse the "duration" attribute as soon as we receive it, and store it in an integer attribute. This reduces bloat. | ||||
* | | db/upnp: move stringToTokens() to Util.cxx | Max Kellermann | 2014-01-11 | 3 | -36/+44 |
| | | |||||
* | | db/upnp: move lazy Open() call to new class LazyDatabase | Max Kellermann | 2014-01-11 | 4 | -29/+182 |
| | | | | | | | | Generic approach for the workaround. | ||||
* | | db/upnp/discovery: convert std::strings to const char * | Max Kellermann | 2014-01-11 | 1 | -11/+13 |
| | | | | | | | | Reduce bloat. | ||||
* | | db/upnp: remove unnecessary Mutex | Max Kellermann | 2014-01-11 | 2 | -4/+0 |
| | | |||||
* | | db/proxy: forward "idle" events | Max Kellermann | 2014-01-11 | 2 | -4/+116 |
| | | | | | | | | | | Send "idle" to the other MPD whenever there's nothing else to do and forward incoming "idle database" events to all our MPD clients. | ||||
* | | DatabasePlugin: add interface DatabaseListener | Max Kellermann | 2014-01-11 | 13 | -13/+93 |
| | | | | | | | | Allow database plugins to announce that they have been modified. | ||||
* | | db/proxy: move code to Disconnect() | Max Kellermann | 2014-01-11 | 1 | -6/+15 |
| | | |||||
* | | UpdateGlue: move stats_invalidate() call to Instance::DatabaseModified() | Max Kellermann | 2014-01-11 | 2 | -3/+2 |
| | | |||||
* | | Stats: lazy initialization | Max Kellermann | 2014-01-10 | 4 | -11/+37 |
| | | | | | | | | | | Ask the DatabasePlugin for stats when the first client requests them, not at startup. | ||||
* | | db/upnp: remove unused method setMaxContentLength() | Max Kellermann | 2014-01-10 | 2 | -10/+1 |
| | | |||||
* | | db/upnp: remove "upnplog" option | Max Kellermann | 2014-01-10 | 3 | -44/+2 |
| | | | | | | | | | | We have removed all libupnp logging calls, and we don't need to debug libupnp. | ||||
* | | db/upnp: remove unused macro PLOGINF() | Max Kellermann | 2014-01-10 | 1 | -9/+0 |
| | | |||||
* | | db/upnp: remove unused method errAsString() | Max Kellermann | 2014-01-10 | 2 | -12/+0 |
| | | |||||
* | | db/upnp/Device: remove unused attribute "m_tabs" | Max Kellermann | 2014-01-10 | 1 | -4/+1 |
| | | |||||
* | | db/upnp: remove unnecessary empty string checks from CharacterData() | Max Kellermann | 2014-01-10 | 2 | -5/+0 |
| | | |||||
* | | db/upnp/Directory: simplify checkobjok() | Max Kellermann | 2014-01-10 | 1 | -9/+9 |
| | | |||||
* | | db/upnp/Directory: don't log unknown items | Max Kellermann | 2014-01-10 | 1 | -8/+0 |
| | | |||||
* | | db/upnp/Directory: eliminate the "attributes" std::map | Max Kellermann | 2014-01-10 | 3 | -11/+40 |
| | | | | | | | | Look up attributes in the "atts" array. Reduce bloat. | ||||
* | | db/upnp/Directory: move "res" attributes to array | Max Kellermann | 2014-01-10 | 1 | -7/+15 |
| | | | | | | | | Reduce bloat. | ||||
* | | db/upnp: use nullptr-terminated array | Max Kellermann | 2014-01-10 | 1 | -6/+4 |
| | | | | | | | | Reduce bloat. | ||||
* | | db/upnp/Directory: eliminate struct StackEl, use std::string | Max Kellermann | 2014-01-10 | 1 | -11/+6 |
| | | | | | | | | Reduces bloat. | ||||
* | | db/upnp/Directory: make "attributes" a local variable | Max Kellermann | 2014-01-10 | 1 | -14/+14 |
| | | | | | | | | We only need it inside StartElement(). Reduces bloat. | ||||
* | | db/upnp/Directory: move "res" tag handler to StartElement() | Max Kellermann | 2014-01-10 | 1 | -12/+16 |
| | | | | | | | | | | No need to handle this in EndElement() - in StartElement(), we already have all we need. |