aboutsummaryrefslogtreecommitdiffstats
path: root/src/encoder/flac_encoder.c (unfollow)
Commit message (Collapse)AuthorFilesLines
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