aboutsummaryrefslogtreecommitdiffstats
path: root/src/encoder (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge tag 'v0.19.11'Max Kellermann2015-10-271-2/+2
|\
| * unix/Daemon, playlist/...: remove unused Domain variablesMax Kellermann2015-10-161-3/+0
| |
| * encoder/flac: fix crash with 32 bit playbackMax Kellermann2015-10-161-2/+2
| | | | | | | | | | | | | | Copy to encoder->audio_format *after* adjusting the sample format to S24_P32. Fixes http://bugs.musicpd.org/view.php?id=4433
* | unix/Daemon, playlist/pls, ...: remove unused Domain variablesMax Kellermann2015-09-171-3/+0
| |
* | Merge tag 'v0.19.10'Max Kellermann2015-06-211-1/+1
|\|
| * OpusEncoderPlugin: initialise granulepos so we end up with sane valuesMichal Nazarewicz2015-03-251-1/+1
| | | | | | | | | | | | | | Not initialising granulepos leads to it having arbitrary values in the encoded stream including possibly negative values which are not valid and confuse opusdec. Explicitly initialise opus_encoder::granulepos to avoid that problem.
* | *: doxygen fixupsMax Kellermann2015-03-172-5/+2
| |
* | config/Param: split block-specific attributes to new struct ConfigBlockMax Kellermann2015-01-2110-49/+48
| | | | | | | | The old struct config_param remains only for top-level string options.
* | ConfigData: move struct config_param to Param.hxxMax Kellermann2015-01-211-1/+1
| |
* | output/recorder: move code to encoder/ToOutputStream.cxxMax Kellermann2015-01-142-0/+73
| |
* | encoder/Interface: move functions into the structMax Kellermann2015-01-081-51/+41
| |
* | encoder/Plugin: move struct Encoder to EncoderInterface.hxxMax Kellermann2015-01-083-244/+270
| |
* | Copyright year 2015Max Kellermann2015-01-0123-23/+23
| |
* | EncoderPlugin: pass Tag reference to method tag()Max Kellermann2014-12-262-4/+4
| |
* | configure.ac: add macro MPD_ENABLE_AUTO_LIBMax Kellermann2014-12-091-1/+1
| |
* | util/StringUtil: add ToUpperASCII()Max Kellermann2014-12-041-4/+3
| | | | | | | | | | Replaces g_ascii_strup() and allows building the Vorbis encoder without GLib.
* | encoder/vorbis: convert pointers to referencesMax Kellermann2014-12-021-67/+67
| |
* | configure.ac: add macro MPD_ENABLE_AUTO_PKGMax Kellermann2014-11-211-4/+4
|/ | | | Simplify the definition of many build options.
* encoder/shine: require libshine 3.1, adapt to new APIMax Kellermann2014-08-131-3/+3
| | | | | | | The "written" argument to shine_encode_buffer() and shine_flush() was changed from "long" to "int", which breaks API and ABI compatibility. This is a big deal, and it doesn't seem worthwile to keep support for the (broken) 3.0 release.
* encoder/opus: use nullptr instead of NULLMax Kellermann2014-07-301-1/+1
|
* Tag: add class const_iterator and methods begin(), end()Max Kellermann2014-07-121-2/+1
| | | | Enables using range-based "for".
* encoder/opus: use xalloc() instead of g_malloc()Max Kellermann2014-02-221-6/+5
|
* Config*: move to config/Max Kellermann2014-01-247-7/+7
|
* Encoder*: move to src/encoderMax Kellermann2014-01-2323-8/+477
| | | | .. and move the plugins to src/encoder/plugins/.
* Merge branch 'shine' of git://github.com/ekroth/mpdMax Kellermann2014-01-131-5/+17
|\
| * encoder/shine: fix segfault workaroundAndrée Ekroth2014-01-131-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.
* | copyright year 2014Max Kellermann2014-01-1317-17/+17
|/
* encoder/shine: remove unnecessary bufferAndrée Ekroth2014-01-131-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.
* Shine encoding pluginAndrée Ekroth2014-01-132-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 }
* util/DynamicFifoBuffer: new class replacing growing_fifoMax Kellermann2013-12-053-67/+30
|
* include cleanup using iwyuMax Kellermann2013-11-282-3/+0
|
* filter/route, ...: add missing stdlib.h includesMax Kellermann2013-11-111-0/+1
|
* *: update copyright year to 2013Max Kellermann2013-10-307-7/+7
|
* util/NumberParser: utilities for parsing numbers from ASCII stringsMax Kellermann2013-10-213-10/+9
|
* encoder/{opus,vorbis}: new serial generator replacing g_random_int()Max Kellermann2013-10-194-3/+77
|
* encoder/wave: include cleanupMax Kellermann2013-10-191-2/+0
|
* system/ByteOrder: new library for byte ordering / endianessMax Kellermann2013-10-162-51/+52
| | | | Replacing GLib macros.
* encoder/wave: use delete to dispose the WaveEncoder objectMax Kellermann2013-10-161-1/+1
|
* Client, ...: remove unnecessary glib.h includeMax Kellermann2013-10-151-2/+0
|
* gcc.h: rename to Compiler.hMax Kellermann2013-10-151-1/+1
|
* Log: new logging library APIMax Kellermann2013-10-023-7/+3
| | | | | Prepare to migrate away from GLib. Currently, we're still using GLib as a backend.
* *Plugin: remove redundant "line %i" from error messagesMax Kellermann2013-09-263-39/+24
| | | | The MPD core will add this as a prefeix.
* Tag, ...: move to libtag.aMax Kellermann2013-09-051-1/+1
|
* util/Error: new error passing libraryMax Kellermann2013-09-047-192/+174
| | | | Replaces GLib's GError.
* encoder/lame: use ReusableBuffer instead of AllocatedArrayMax Kellermann2013-08-071-23/+13
|
* add missing includesMax Kellermann2013-08-071-0/+2
|
* encoder/lame: dynamic output bufferMax Kellermann2013-08-061-4/+18
|
* encoder/lame: use delete instead of g_free()Max Kellermann2013-08-061-1/+1
|
* encoder/lame: use lame_encode_buffer_interleaved()Max Kellermann2013-08-061-14/+5
| | | | Don't deinterleave manually, don't allocate memory.
* encoder/lame: use offset variable instead of memmove()Max Kellermann2013-08-062-17/+36
|