aboutsummaryrefslogtreecommitdiffstats
path: root/src/output/RecorderOutputPlugin.cxx (unfollow)
Commit message (Collapse)AuthorFilesLines
2014-01-23output/*: move to output/plugins/Max Kellermann1-262/+0
2014-01-23Encoder*: move to src/encoderMax Kellermann1-2/+2
.. and move the plugins to src/encoder/plugins/.
2014-01-13copyright year 2014Max Kellermann1-1/+1
2013-10-02Log: new logging library APIMax Kellermann1-3/+0
Prepare to migrate away from GLib. Currently, we're still using GLib as a backend.
2013-09-04util/Error: new error passing libraryMax Kellermann1-40/+31
Replaces GLib's GError.
2013-08-07Makefile.am: move sources to libsystem.aMax Kellermann1-1/+1
2013-08-04EncoderPlugin: pass config_param referenceMax Kellermann1-1/+1
2013-08-04OutputPlugin: pass config_param referenceMax Kellermann1-7/+7
2013-08-03audio_format: convert to C++Max Kellermann1-1/+1
2013-07-30encoder_api: convert to C++Max Kellermann1-5/+4
2013-07-30output_api: convert to C++Max Kellermann1-1/+1
2013-04-17encoder_list: convert to C++Max Kellermann1-1/+1
2013-04-17output/recorder: convert to C++Max Kellermann1-59/+83
2012-10-02output/{recorder,shout}: call encoder_read() in a loopMax Kellermann1-8/+11
This is necessary for Ogg packets that span more than one page.
2012-10-02output/recorder: move code to _write_to_file()Max Kellermann1-19/+31
2012-10-02output/recorder: fix write() error checkMax Kellermann1-3/+3
We can only check for negative values if the variable is signed.
2012-10-02output/recorder: make variables more localMax Kellermann1-16/+12
2012-10-02output/recorder, test/*: invoke encoder_read() after _open()Max Kellermann1-0/+7
Make sure the file header gets written at the beginning, before _write() gets called.
2012-04-05encoder/vorbis: generate end-of-stream packet when playback endsMax Kellermann1-1/+1
Add the encoder_plugin method end(). This is important for the recorder plugin.
2011-09-19output_plugin: the plugin allocates the audio_output objectMax Kellermann1-12/+22
Pass audio_output objects around instead of void pointers. This will give some more control to the plugin, and prepares for non-blocking audio outputs.
2011-09-17output: per-plugin headerMax Kellermann1-0/+1
Move the "extern" declarations from output_list.c, for more type safety.
2011-07-18output/recorder: fix a memory leakJonathan Neuschäfer1-3/+7
2011-01-29copyright year 2011Max Kellermann1-1/+1
2010-05-20input/file, output/{fifo,recorder}: add O_BINARY to open() flagsMax Kellermann1-2/+3
Windows compatibility.
2009-12-31Update copyright notices.Avuton Olrich1-1/+1
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-10fd_util: removed creat_cloexec()Max Kellermann1-1/+2
Add a "mode" argument to open_cloexec() instead.
2009-11-07set the close-on-exec flag on all file descriptorsMax Kellermann1-1/+2
Added the "fd_util" library, which attempts to use the new thread-safe Linux system calls pipe2(), accept4() and the options O_CLOEXEC, SOCK_CLOEXEC. Without these, it falls back to FD_CLOEXEC, which is not thread safe. This is particularly important for the "pipe" output plugin (and others, such as JACK/PulseAudio), because we were heavily leaking file descriptors to child processes.
2009-08-24output/recorder: new output plugin for recording radio streamsMax Kellermann1-0/+214
The recorder plugin writes audio played by MPD to a file. This may be useful for recording radio streams. This implementation is incomplete, because support for tags is missing, and MPD should be able to record each track to a different file.