aboutsummaryrefslogtreecommitdiffstats
path: root/src/encoder/wave_encoder.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2011-01-29copyright year 2011Max Kellermann1-1/+1
2009-12-31Update copyright notices.Avuton Olrich1-1/+1
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-02audio_format: changed "bits" to "enum sample_format"Max Kellermann1-3/+26
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: let wave encoder to use pcm_buffer, pcm conversion code cleanupViliam Mateicka1-29/+27
2009-11-12include config.h in all sourcesMax Kellermann1-0/+1
After we've been hit by Large File Support problems several times in the past week (which only occur on 32 bit platforms, which I don't have), this is yet another attempt to fix the issue.
2009-11-10wave_encoder: new encoder for streaming PCM wave files.Viliam Mateicka1-0/+241
When using wave encoder with httpd audio output mpd can input this stream via http and audiofile decoder. This for example opens simple way to configure lossless audio streaming port(like jack or pulseaudio does but without overhead). Another possibility can be using it for gathering raw data for visualization plugins (If sync issue will be resolved)