aboutsummaryrefslogtreecommitdiffstats
path: root/src/encoder/FlacEncoderPlugin.cxx (unfollow)
Commit message (Collapse)AuthorFilesLines
2014-01-13copyright year 2014Max Kellermann1-1/+1
2013-12-05util/DynamicFifoBuffer: new class replacing growing_fifoMax Kellermann1-23/+7
2013-11-28include cleanup using iwyuMax Kellermann1-1/+0
2013-10-15Client, ...: remove unnecessary glib.h includeMax Kellermann1-2/+0
2013-09-04util/Error: new error passing libraryMax Kellermann1-31/+27
Replaces GLib's GError.
2013-08-07add missing includesMax Kellermann1-0/+2
2013-08-04*: use gcc.h macros instead of GLibMax Kellermann1-7/+7
2013-08-04EncoderPlugin: pass config_param referenceMax Kellermann1-5/+4
2013-08-03audio_format: convert to C++Max Kellermann1-14/+17
2013-07-30encoder_api: convert to C++Max Kellermann1-21/+16
2013-07-30pcm_buffer: convert to C++Max Kellermann1-7/+5
2013-07-29encoder/flac: convert to C++Max Kellermann1-22/+31
2013-04-09pcm_*: move to src/pcm/Max Kellermann1-1/+1
2013-01-15fifo_buffer: move to util/Max Kellermann1-2/+2
2012-10-02{decoder,encoder}/flac: drop support for libFLAC 1.1Max Kellermann1-26/+5
2012-04-05encoder/vorbis: generate end-of-stream packet when playback endsMax Kellermann1-0/+1
Add the encoder_plugin method end(). This is important for the recorder plugin.
2011-11-28encoder/flac: use fifo_buffer instead of pcm_bufferMax Kellermann1-16/+20
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-03-31fix common misspellingsJonathan Neuschäfer1-1/+1
These fixes were mostly generated with `codespell' [0] and manually reviewed. [0] http://git.profusion.mobi/cgit.cgi/lucas/codespell/
2011-02-09general: whitespace cleanupThomas Jansen1-3/+3
Remove trailing whitespace found by this command: find -name '*.[ch]' | xargs grep "[[:space:]]$"
2011-01-29copyright year 2011Max Kellermann1-1/+1
2009-12-31Update copyright notices.Avuton Olrich1-1/+1
2009-12-15encoder/flac: fix write callback prototype for libFLAC 1.1.2Max Kellermann1-1/+7
2009-12-03encoders: remove unnessesary pointers to const stringsViliam Mateicka1-3/+1
2009-12-03encoders: implement new get_mime_types methodViliam Mateicka1-0/+9
2009-12-03flac_encoder: add support for libFLAC < 1.1.3Viliam Mateicka1-18/+47
2009-12-02audio_format: changed "bits" to "enum sample_format"Max Kellermann1-12/+32
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-17encoder: introducing flac encoder pluginViliam Mateicka1-0/+296