aboutsummaryrefslogtreecommitdiffstats
path: root/src (unfollow)
Commit message (Collapse)AuthorFilesLines
2015-01-07output/oss: eliminate unnecessary tail code after "switch"Max Kellermann1-1/+2
2015-01-07output/oss: convert struct to classMax Kellermann1-1/+4
2015-01-07output/oss: add "device" parameter to constructorMax Kellermann1-4/+3
2015-01-06fs/io/FileOutputStream: use O_TMPFILE if availableMax Kellermann2-7/+67
The Linux feature allows writing new files to an invisible file, and then replace the old file. This preserves the old file if we get interrupted by some event.
2015-01-06output/oss: move functions into the structMax Kellermann1-107/+97
2015-01-06input/async: reset the "open" flag after seeking successfullyMax Kellermann1-0/+5
Fixes a problem with the "curl" input plugin: IsEOF() always returns true because the "open" flag was cleared by CurlInputStream::RequestDone() when end-of-stream was reached. This flag stays false even when seeking to another position has succeeded. This patch resets the "open" flag to true after seeking successfully.
2015-01-06thread/Name: disable pthread_setname_np() on NetBSDMax Kellermann1-2/+6
NetBSD's pthread_setname_np() prototype is incompatible with the rest of the world, and it requires to pass the string argument as a non-const pointer. Instead of working around this misdesign, I hereby disable the feature on NetBSD.
2015-01-06thread/Name: enable FormatThreadName() with prctl()Max Kellermann1-1/+5
Add macro HAVE_THREAD_NAME which is set when any method to set the thread name is available. Use that macro in FormatThreadName() instead of just checking for HAVE_PTHREAD_SETNAME_NP.
2015-01-06thread/Name: indent preprocessor commandsMax Kellermann1-3/+3
2015-01-05fs/io/File{Reader,OutputStream}: use OpenFile()Max Kellermann2-8/+7
2015-01-05output/recorder: use config_param::GetBlockPath()Max Kellermann1-12/+17
Supports "~/" expansion. Forces us to switch from "const char *" to AllocatedPath, which is a good thing.
2015-01-04output/alsa: move functions into the structMax Kellermann1-137/+136
2015-01-04output/pulse: add wrapper for pa_threaded_mainloop_signal()Max Kellermann1-7/+11
2015-01-04output/pulse: convert to classMax Kellermann2-2/+4
2015-01-04output/pulse: move more code into the structMax Kellermann1-75/+148
2015-01-04output/pulse: use AudioOutputWrapper::Init()Max Kellermann1-9/+7
2015-01-03output/openal: convert macro to constexprMax Kellermann1-3/+3
2015-01-03output/openal: convert struct to classMax Kellermann1-1/+1
2015-01-02output/openal: move functions into the classMax Kellermann1-121/+116
2015-01-01Copyright year 2015Max Kellermann953-953/+953
2014-12-31output/osx: use nullptr instead of NULLMax Kellermann1-8/+8
2014-12-30ConfigData: use nullptr instead of NULLMax Kellermann1-2/+2
2014-12-30output/pulse: move code into the structMax Kellermann3-286/+299
2014-12-29output/Wrapper: new helper classMax Kellermann6-256/+159
2014-12-29output/pulse: move initialization to constructorMax Kellermann1-5/+3
2014-12-29output/pulse: remove unnecessary initializationMax Kellermann1-2/+0
2014-12-29{mixer,output}/pulse: move code to LogPulseError()Max Kellermann4-13/+70
2014-12-29output/pulse: move SetError() to lib/pulse/Error.cxxMax Kellermann3-21/+79
2014-12-29{mixer,output}/pulse: use a common Domain instanceMax Kellermann4-18/+65
2014-12-29mixer/pulse: remove redundant "virtual" keywordsMax Kellermann1-4/+4
2014-12-28output/fifo: make variables more localMax Kellermann1-2/+1
2014-12-27output/pipe: convert to classMax Kellermann1-1/+2
2014-12-27output/pipe: add static method Create()Max Kellermann1-6/+14
2014-12-27output/pipe: merge Initialize() and Configure()Max Kellermann1-9/+4
2014-12-27output/pipe: move functions into the structMax Kellermann1-18/+35
2014-12-26EncoderPlugin: pass Tag reference to method tag()Max Kellermann5-7/+7
2014-12-26OutputPlugin: pass Tag reference to _send_tag()Max Kellermann8-19/+17
2014-12-26output/recorder: implement send_tag()Max Kellermann1-1/+22
2014-12-26output/recorder: move functions into the structMax Kellermann1-25/+40
2014-12-26output/jack: fix implicit nullptr/bool conversionMax Kellermann1-2/+2
Return false on error, not nullptr.
2014-12-26db/simple: fix implicit nullptr/bool conversionMax Kellermann3-5/+5
Return false on error, not nullptr.
2014-12-26fs/Traits, ...: work around -Wtautological-pointer-compareMax Kellermann5-1/+32
New in clang 3.6.
2014-12-26db/lazy, input/mms: add "override" keywordsMax Kellermann3-4/+6
Fixes -Winconsistent-missing-override (clang 3.6).
2014-12-26lib/ffmpeg/Buffer: always include libavutil/mem.hMax Kellermann1-2/+1
Needed for av_free().
2014-12-26db/proxy, output/shout: fix implicit nullptr/bool conversionMax Kellermann2-4/+4
Return false on error, not nullptr.
2014-12-26db/{simple,proxy}, ...: add "override" keywordsMax Kellermann7-22/+26
Fixes -Winconsistent-missing-override (clang 3.6).
2014-12-26util/{ASCII,UriUtil}, ...: work around -Wtautological-pointer-compareMax Kellermann10-0/+51
New in clang 3.6.
2014-12-26DatabaseGlue: convert nullptr check to assertionMax Kellermann1-3/+2
2014-12-26util/ASCII: fix indentMax Kellermann1-10/+10
2014-12-26Compiler.h: add macro CLANG_CHECK_VERSION()Max Kellermann1-0/+7