aboutsummaryrefslogtreecommitdiffstats
path: root/src/encoder (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* encoder/lame: rename "buffer" to "output_buffer"Max Kellermann2013-08-062-31/+33
|
* *: use gcc.h macros instead of GLibMax Kellermann2013-08-043-14/+14
|
* EncoderPlugin: pass config_param referenceMax Kellermann2013-08-047-42/+40
|
* audio_format: convert to C++Max Kellermann2013-08-037-65/+67
|
* tag: convert to C++Max Kellermann2013-07-301-6/+6
|
* encoder_api: convert to C++Max Kellermann2013-07-3014-119/+94
|
* encoder/lame,twolame: convert to C++Max Kellermann2013-07-304-104/+154
|
* encoder/wave: convert to C++Max Kellermann2013-07-302-26/+58
|
* encoder/null: convert to C++Max Kellermann2013-07-302-24/+54
|
* pcm_buffer: convert to C++Max Kellermann2013-07-301-7/+5
|
* encoder/flac: convert to C++Max Kellermann2013-07-292-22/+56
|
* fix overwriting bitrate with signal typeMatthias Larisch2013-06-241-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.
* pcm_*: move to src/pcm/Max Kellermann2013-04-091-1/+1
|
* filter/chain, encoder: GLib include cleanupMax Kellermann2013-01-304-28/+27
|
* {encoder,output}_api.h: allow compiling as C++Max Kellermann2013-01-302-8/+0
|
* encoder/{Vorbis,Opus}: use new/deleteMax Kellermann2013-01-152-10/+14
|
* fifo_buffer: move to util/Max Kellermann2013-01-153-6/+6
|
* {decoder,encoder}/flac: drop support for libFLAC 1.1Max Kellermann2012-10-021-26/+5
|
* encoder/opus: implement lookaheadMax Kellermann2012-10-021-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.
* encoder/opus: initialize the "granulepos" packet attributeMax Kellermann2012-10-021-1/+5
|
* encoder/{vorbis,opus}: merge code to new class OggStreamMax Kellermann2012-10-023-89/+154
|
* encoder/vorbis: accept floating point input samplesMax Kellermann2012-10-021-8/+9
| | | | | | Improves quality by not squeezing 32 bit samples down to 16 bit, and then back to 32 bit floating point. Reduces CPU usage by skipping a conversion step.
* encoder/opus: call ogg_stream_flush() only in the last iterationMax Kellermann2012-10-021-4/+4
| | | | If there are multiple pages, the last partial page must be flushed.
* encoder/opus: new encoder plugin for the Opus codecMax Kellermann2012-10-022-0/+442
|
* encoder/vorbis: use C++ compilerMax Kellermann2012-10-022-23/+51
|
* encoder/vorbis: make variables more localMax Kellermann2012-10-021-20/+12
|
* Merge branch 'v0.16.x'Max Kellermann2012-04-053-2/+3
|\ | | | | | | | | | | Conflicts: src/output/osx_plugin.c src/text_input_stream.c
| * encoder/vorbis: generate end-of-stream packet when playback endsMax Kellermann2012-04-053-0/+3
| | | | | | | | | | Add the encoder_plugin method end(). This is important for the recorder plugin.
| * encoder/vorbis: generate end-of-stream packet before tagMax Kellermann2012-04-041-2/+0
| | | | | | | | | | Don't reset the ogg_stream_state object, because this discards the end-of-stream packet that was just added.