Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2015-01-21 | config/Param: split block-specific attributes to new struct ConfigBlock | Max Kellermann | 1 | -1/+1 | |
The old struct config_param remains only for top-level string options. | |||||
2015-01-01 | Copyright year 2015 | Max Kellermann | 1 | -1/+1 | |
2014-01-23 | Encoder*: move to src/encoder | Max Kellermann | 1 | -1/+1 | |
.. and move the plugins to src/encoder/plugins/. | |||||
2014-01-13 | copyright year 2014 | Max Kellermann | 1 | -1/+1 | |
2013-12-05 | util/DynamicFifoBuffer: new class replacing growing_fifo | Max Kellermann | 1 | -23/+14 | |
2013-10-19 | encoder/wave: include cleanup | Max Kellermann | 1 | -2/+0 | |
2013-10-16 | system/ByteOrder: new library for byte ordering / endianess | Max Kellermann | 1 | -47/+47 | |
Replacing GLib macros. | |||||
2013-10-16 | encoder/wave: use delete to dispose the WaveEncoder object | Max Kellermann | 1 | -1/+1 | |
2013-09-04 | util/Error: new error passing library | Max Kellermann | 1 | -3/+3 | |
Replaces GLib's GError. | |||||
2013-08-04 | EncoderPlugin: pass config_param reference | Max Kellermann | 1 | -1/+1 | |
2013-08-03 | audio_format: convert to C++ | Max Kellermann | 1 | -11/+11 | |
2013-07-30 | encoder_api: convert to C++ | Max Kellermann | 1 | -16/+11 | |
2013-07-30 | encoder/wave: convert to C++ | Max Kellermann | 1 | -26/+33 | |
2013-01-30 | filter/chain, encoder: GLib include cleanup | Max Kellermann | 1 | -12/+8 | |
2013-01-15 | fifo_buffer: move to util/ | Max Kellermann | 1 | -2/+2 | |
2012-03-22 | audio_format: remove the packed S24 format | Max Kellermann | 1 | -5/+0 | |
For simplicity, the MPD core should not have to deal with packing. It is rarely used, and those plugins that need it should use the pcm_export library instead. | |||||
2011-11-28 | encoder/wave: support packed 24 bit samples | Max Kellermann | 1 | -0/+5 | |
Convert to padded 24 bit samples, instead of falling back to 16 bit. | |||||
2011-11-28 | encoder/wave: use fifo_buffer instead of pcm_buffer | Max Kellermann | 1 | -19/+27 | |
This fixes a buffer corruption bug; pcm_buffer is not designed to be a persistent buffers, and will discard anything between two consecutive calls. | |||||
2011-02-09 | general: whitespace cleanup | Thomas Jansen | 1 | -2/+2 | |
Remove trailing whitespace found by this command: find -name '*.[ch]' | xargs grep "[[:space:]]$" | |||||
2011-01-29 | copyright year 2011 | Max Kellermann | 1 | -1/+1 | |
2009-12-31 | Update copyright notices. | Avuton Olrich | 1 | -1/+1 | |
2009-12-03 | encoders: remove unnessesary pointers to const strings | Viliam Mateicka | 1 | -3/+1 | |
2009-12-03 | encoders: implement new get_mime_types method | Viliam Mateicka | 1 | -0/+9 | |
2009-12-02 | audio_format: changed "bits" to "enum sample_format" | Max Kellermann | 1 | -3/+26 | |
This patch prepares support for floating point samples (and probably other formats). It changes the meaning of the "bits" attribute from a bit count to a symbolic value. | |||||
2009-11-17 | encoder: let wave encoder to use pcm_buffer, pcm conversion code cleanup | Viliam Mateicka | 1 | -29/+27 | |
2009-11-12 | include config.h in all sources | Max Kellermann | 1 | -0/+1 | |
After we've been hit by Large File Support problems several times in the past week (which only occur on 32 bit platforms, which I don't have), this is yet another attempt to fix the issue. | |||||
2009-11-10 | wave_encoder: new encoder for streaming PCM wave files. | Viliam Mateicka | 1 | -0/+241 | |
When using wave encoder with httpd audio output mpd can input this stream via http and audiofile decoder. This for example opens simple way to configure lossless audio streaming port(like jack or pulseaudio does but without overhead). Another possibility can be using it for gathering raw data for visualization plugins (If sync issue will be resolved) |