aboutsummaryrefslogtreecommitdiffstats
path: root/src (unfollow)
Commit message (Collapse)AuthorFilesLines
2013-01-11string_util.c: provide fallback strndup() implementationDenis Krjuchkov3-0/+48
This patch also adds extern "C" { } wrapper around string_util.h to allow its usage in C++ code
2013-01-10input/curl: use std::list instead of GQueueMax Kellermann1-93/+80
2013-01-10icy_metadata: convert to C++Max Kellermann4-163/+136
2013-01-10input/Curl: add constructor to input_curl classMax Kellermann1-32/+30
2013-01-10input/Curl: remove unused source/source_id attributesMax Kellermann1-7/+0
2013-01-10input/Curl: remove redundant attribute "url"Max Kellermann1-4/+2
Use the "url" attribute from the base class instead.
2013-01-10input/Curl: use std::forward_list instead of GSListMax Kellermann1-27/+21
2013-01-10input/Curl: remove unused attribute "fds"Max Kellermann1-3/+1
2013-01-10input/Curl: require libcurl 7.18Max Kellermann1-24/+4
2013-01-10output/shout: refactor check_block_param() to a functionMax Kellermann1-18/+15
Don't use macro magic, don't dereference the block_param.
2013-01-10Log, ...: include cleanupMax Kellermann3-3/+0
2013-01-10decoder/wavpack: convert to C++Max Kellermann4-36/+58
2013-01-10decoder/wavpack: include cleanupMax Kellermann1-3/+0
2013-01-10conf: convert to C++Max Kellermann1-63/+73
2013-01-10path: move code to IsSupportedCharset()Max Kellermann1-6/+15
2013-01-10path: make the "win_charset" buffer staticMax Kellermann1-1/+1
It is illegal to use it after going out of scope.
2013-01-10notify: convert to C++Max Kellermann6-99/+79
2013-01-10io_thread: convert to C++Max Kellermann5-30/+27
2013-01-10input/{curl,soup}: convert to C++Max Kellermann5-67/+86
2013-01-10input_stream: convert to C++ (internally)Max Kellermann7-19/+18
2013-01-10PlayerControl: switch to the Mutex/Cond classesMax Kellermann3-13/+10
2013-01-10thread/Cond: new wrapper for pthread_cond_t or GCondMax Kellermann5-0/+189
2013-01-10thread/GLibMutex: new Mutex implementationMax Kellermann2-19/+44
Switch WIN32 to this implementation to be able to use condition variables, which is impossible with CriticalSection.
2013-01-10PlayerThread: use pc.cond instead of main_condMax Kellermann4-8/+2
The main_cond variable was completely unnecessary. The pc.cond object can be used for both main->pc and pc->main.
2013-01-10DecoderControl: take ownership of client_condMax Kellermann4-7/+8
Don't let the "client" pass its own GCond. This was not used consistently.
2013-01-10DecoderThread: signal the client after decoder finishesMax Kellermann1-0/+2
Fixes potential dead lock bug.
2013-01-10thread/PosixMutex: fix indentMax Kellermann1-13/+13
2013-01-10GlobalEvents: lock-less operation using std::atomicMax Kellermann3-39/+9
Use a bit field instead of a mutex-protected bool array.
2013-01-10event/WakeFD: use eventfd() if availableMax Kellermann2-1/+46
2013-01-10fd_util: support eventfd()Max Kellermann2-0/+25
2013-01-09GlobalEvents: move code to class WakeFDMax Kellermann3-27/+148
2013-01-09EventPipe: rename to GlobalEventsMax Kellermann16-268/+261
2013-01-09EventPipe: use Mutex instead of GMutexMax Kellermann1-10/+7
2013-01-09event_pipe.h: convert to C++Max Kellermann13-40/+14
2013-01-09sig_handlers, log: convert to C++Max Kellermann6-17/+13
2013-01-09mixer/{alsa,pulse}: convert to C++Max Kellermann6-29/+57
2013-01-09Playlist.hxx: move prototype to PlaylistGlobal.hxxMax Kellermann4-3/+28
2013-01-09Playlist: move playlist_increment_version_all() into the classMax Kellermann3-6/+5
2013-01-09event_pipe: convert to C++Max Kellermann2-3/+11
2013-01-09idle: convert to C++Max Kellermann17-43/+23
2013-01-09ReplayGainCoinfig: initialize replay_gain_limit with default valueMax Kellermann1-1/+1
2013-01-09ReplayGainCoinfig: make DEFAULT_REPLAYGAIN_LIMIT staticMax Kellermann1-1/+1
2013-01-09ClientList: don't use GLibMax Kellermann5-20/+19
Use std::list instead of GList.
2013-01-09ClientList: add header ClientList.hxxMax Kellermann8-18/+51
2013-01-09zeroconf-bonjour: include Listen.hxx instead of listen.hMax Kellermann1-1/+1
Should fix the OS X build.
2013-01-08Queue: use std::stable_sort() instead of g_qsort_with_data()Max Kellermann1-26/+8
2013-01-08song: don't use GLibMax Kellermann4-4/+12
2013-01-08util/list: don't use GLibMax Kellermann2-3/+3
2013-01-08Queue: allocate memory with new/deleteMax Kellermann1-5/+5
2013-01-08Queue: use signed integer instead of G_MAXUINTMax Kellermann1-1/+1
The check for unsigned underflow is fragile and unreliable.