Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2014-07-30 | encoder/opus: use nullptr instead of NULL | Max Kellermann | 1 | -1/+1 | |
2014-07-12 | Tag: add class const_iterator and methods begin(), end() | Max Kellermann | 1 | -2/+1 | |
Enables using range-based "for". | |||||
2014-02-22 | encoder/opus: use xalloc() instead of g_malloc() | Max Kellermann | 1 | -6/+5 | |
2014-01-24 | Config*: move to config/ | Max Kellermann | 7 | -7/+7 | |
2014-01-23 | Encoder*: move to src/encoder | Max Kellermann | 23 | -8/+477 | |
.. and move the plugins to src/encoder/plugins/. | |||||
2014-01-13 | copyright year 2014 | Max Kellermann | 17 | -17/+17 | |
2014-01-13 | encoder/shine: fix segfault workaround | Andrée Ekroth | 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. | |||||
2014-01-13 | encoder/shine: remove unnecessary buffer | Andrée Ekroth | 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. | |||||
2014-01-13 | Shine encoding plugin | Andrée Ekroth | 2 | -0/+282 | |
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 } | |||||
2013-12-05 | util/DynamicFifoBuffer: new class replacing growing_fifo | Max Kellermann | 3 | -67/+30 | |
2013-11-28 | include cleanup using iwyu | Max Kellermann | 2 | -3/+0 | |
2013-11-11 | filter/route, ...: add missing stdlib.h includes | Max Kellermann | 1 | -0/+1 | |
2013-10-30 | *: update copyright year to 2013 | Max Kellermann | 7 | -7/+7 | |
2013-10-21 | util/NumberParser: utilities for parsing numbers from ASCII strings | Max Kellermann | 3 | -10/+9 | |
2013-10-19 | encoder/{opus,vorbis}: new serial generator replacing g_random_int() | Max Kellermann | 4 | -3/+77 | |
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 | 2 | -51/+52 | |
Replacing GLib macros. | |||||
2013-10-16 | encoder/wave: use delete to dispose the WaveEncoder object | Max Kellermann | 1 | -1/+1 | |
2013-10-15 | Client, ...: remove unnecessary glib.h include | Max Kellermann | 1 | -2/+0 | |
2013-10-15 | gcc.h: rename to Compiler.h | Max Kellermann | 1 | -1/+1 | |
2013-10-02 | Log: new logging library API | Max Kellermann | 3 | -7/+3 | |
Prepare to migrate away from GLib. Currently, we're still using GLib as a backend. | |||||
2013-09-26 | *Plugin: remove redundant "line %i" from error messages | Max Kellermann | 3 | -39/+24 | |
The MPD core will add this as a prefeix. | |||||
2013-09-05 | Tag, ...: move to libtag.a | Max Kellermann | 1 | -1/+1 | |
2013-09-04 | util/Error: new error passing library | Max Kellermann | 7 | -192/+174 | |
Replaces GLib's GError. | |||||
2013-08-07 | encoder/lame: use ReusableBuffer instead of AllocatedArray | Max Kellermann | 1 | -23/+13 | |
2013-08-07 | add missing includes | Max Kellermann | 1 | -0/+2 | |
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 | 2 | -17/+36 | |
2013-08-06 | encoder/lame: rename "buffer" to "output_buffer" | Max Kellermann | 2 | -31/+33 | |
2013-08-04 | *: use gcc.h macros instead of GLib | Max Kellermann | 3 | -14/+14 | |
2013-08-04 | EncoderPlugin: pass config_param reference | Max Kellermann | 7 | -42/+40 | |
2013-08-03 | audio_format: convert to C++ | Max Kellermann | 7 | -65/+67 | |
2013-07-30 | tag: convert to C++ | Max Kellermann | 1 | -6/+6 | |
2013-07-30 | encoder_api: convert to C++ | Max Kellermann | 14 | -119/+94 | |
2013-07-30 | encoder/lame,twolame: convert to C++ | Max Kellermann | 4 | -104/+154 | |
2013-07-30 | encoder/wave: convert to C++ | Max Kellermann | 2 | -26/+58 | |
2013-07-30 | encoder/null: convert to C++ | Max Kellermann | 2 | -24/+54 | |
2013-07-30 | pcm_buffer: convert to C++ | Max Kellermann | 1 | -7/+5 | |
2013-07-29 | encoder/flac: convert to C++ | Max Kellermann | 2 | -22/+56 | |
2013-06-24 | fix overwriting bitrate with signal type | Matthias Larisch | 1 | -3/+3 | |
I recently opened a bug: http://bugs.musicpd.org/view.php?id=3787 The main problem is that opus encoder config for signal overwrote bitrate setting. | |||||
2013-04-09 | pcm_*: move to src/pcm/ | Max Kellermann | 1 | -1/+1 | |
2013-01-30 | filter/chain, encoder: GLib include cleanup | Max Kellermann | 4 | -28/+27 | |
2013-01-30 | {encoder,output}_api.h: allow compiling as C++ | Max Kellermann | 2 | -8/+0 | |
2013-01-15 | encoder/{Vorbis,Opus}: use new/delete | Max Kellermann | 2 | -10/+14 | |
2013-01-15 | fifo_buffer: move to util/ | Max Kellermann | 3 | -6/+6 | |
2012-10-02 | {decoder,encoder}/flac: drop support for libFLAC 1.1 | Max Kellermann | 1 | -26/+5 | |
2012-10-02 | encoder/opus: implement lookahead | Max Kellermann | 1 | -2/+43 | |
The "opusinfo" program complained about preskip value that was too small. This commit uses OPUS_GET_LOOKAHEAD to obtain the number of frames that shall be silence at the beginning. | |||||
2012-10-02 | encoder/opus: initialize the "granulepos" packet attribute | Max Kellermann | 1 | -1/+5 | |