Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2014-01-24 | Config*: move to config/ | 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-10-21 | util/NumberParser: utilities for parsing numbers from ASCII strings | Max Kellermann | 1 | -4/+3 | |
2013-09-26 | *Plugin: remove redundant "line %i" from error messages | Max Kellermann | 1 | -13/+8 | |
The MPD core will add this as a prefeix. | |||||
2013-09-04 | util/Error: new error passing library | Max Kellermann | 1 | -46/+42 | |
Replaces GLib's GError. | |||||
2013-08-07 | encoder/lame: use ReusableBuffer instead of AllocatedArray | Max Kellermann | 1 | -23/+13 | |
2013-08-06 | encoder/lame: dynamic output buffer | Max Kellermann | 1 | -4/+18 | |
2013-08-06 | encoder/lame: use delete instead of g_free() | Max Kellermann | 1 | -1/+1 | |
2013-08-06 | encoder/lame: use lame_encode_buffer_interleaved() | Max Kellermann | 1 | -14/+5 | |
Don't deinterleave manually, don't allocate memory. | |||||
2013-08-06 | encoder/lame: use offset variable instead of memmove() | Max Kellermann | 1 | -8/+15 | |
2013-08-06 | encoder/lame: rename "buffer" to "output_buffer" | Max Kellermann | 1 | -13/+14 | |
2013-08-04 | EncoderPlugin: pass config_param reference | Max Kellermann | 1 | -10/+10 | |
2013-08-03 | audio_format: convert to C++ | Max Kellermann | 1 | -7/+7 | |
2013-07-30 | encoder_api: convert to C++ | Max Kellermann | 1 | -14/+11 | |
2013-07-30 | encoder/lame,twolame: convert to C++ | Max Kellermann | 1 | -52/+52 | |
2013-01-30 | filter/chain, encoder: GLib include cleanup | Max Kellermann | 1 | -2/+5 | |
2011-01-29 | copyright year 2011 | Max Kellermann | 1 | -1/+1 | |
2011-01-07 | encoder/lame: explicitly configure the output sample rate | Max Kellermann | 1 | -0/+7 | |
When you don't explicitly set an output sample rate, liblame tries to guess an output sample rate from the input sample rate. You would think that this "guessing" consists of just setting both equal, but that is not the case. For 44.1kHz at 96kbit/s, liblame chooses 32kHz. This patch explicitly configures the output sample rate, to stop the bad guessing. | |||||
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 | -1/+1 | |
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-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-03-13 | all: Update copyright header. | Avuton Olrich | 1 | -3/+4 | |
This updates the copyright header to all be the same, which is pretty much an update of where to mail request for a copy of the GPL and the years of the MPD project. This also puts all committers under 'The Music Player Project' umbrella. These entries should go individually in the AUTHORS file, for consistancy. | |||||
2009-02-22 | encoder: added lame mp3 encoder | Max Kellermann | 1 | -0/+284 | |
This new LAME encoder plugin is based on the existing shout_mp3.c plugin. |