aboutsummaryrefslogtreecommitdiffstats
path: root/src (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-12-16archiveapi: archive plugin for ZIP filesViliam Mateicka3-0/+203
2008-12-16archiveapi: archive plugin for BZ2 filesViliam Mateicka3-0/+317
2008-12-16update: adding archive updating related codeViliam Mateicka1-1/+64
2008-12-16song: adding support for songs in archivesViliam Mateicka3-1/+39
2008-12-16ls: adding get_archive_by_suffix() functionViliam Mateicka2-0/+19
2008-12-16new archive api, input_archive streamViliam Mateicka11-2/+578
2008-12-09utils: moving stringFoundInStringArray() from decoder into utilsViliam Mateicka3-11/+14
2008-12-03decoder: audiofile plugin using input stream instead of fileViliam Mateicka1-15/+74
2008-12-02listen: check if AI_ADDRCONFIG is definedMax Kellermann1-1/+4
AI_ADDRCONFIG is not available on all operating systems. Check if it is defined in the current build environment.
2008-12-02listen: enable AI_PASSIVEMax Kellermann1-1/+1
The getaddrinfo() flag AI_PASSIVE should be used when resolving addresses for the bind() system call.
2008-12-02replaced mpd_printf etc by G_GNUC_PRINTFThomas Jansen6-21/+17
We want to remove gcc.h eventually. This takes care of all the G_GNUC_PRINTF macros.
2008-12-02replaced mpd_noreturn by G_GNUC_NORETURNThomas Jansen4-5/+6
We want to remove gcc.h eventually. This takes care of all the G_GNUC_NORETURN macros.
2008-12-02replaced mpd_malloc by G_GNUC_MALLOCThomas Jansen4-13/+12
We want to remove gcc.h eventually. This takes care of all the G_GNUC_MALLOC macros.
2008-12-02replaced mpd_likely/mpd_unlikely by G_LIKELY/G_UNLIKELYThomas Jansen6-16/+18
We want to remove gcc.h eventually. This takes care of all the G_LIKELY/G_UNLIKELY macros.
2008-12-01alsa: reverted the default buffer_time to 500 msMax Kellermann1-1/+5
Commit dd7711d8 removed MPD's default ALSA buffer_time. The result was a buffer size which was way too small for playing streams on some sound hardware, and caused skips and distorted sound. Revert the default to 500 ms.
2008-11-30shout: fixed the lame input buffer allocationMax Kellermann1-9/+15
"float (*lamebuf)[2] = g_malloc()" does NOT allocate two float* buffers. The formula is even wrong: it should be applied to LAME's output buffer, not its input buffer. Converted "lamebuf" to the two variables "left" and "right", and allocate them independently with the exact buffer size. Set right=left if mono output is configured.
2008-11-30shout_mp3: cast input buffer to int16_t*Max Kellermann1-2/+2
It's easier to work with an int16_t* pointer here.
2008-11-30input_curl: follow HTTP redirectsMax Kellermann1-0/+2
Follow HTTP redirects, but no more than 5.
2008-11-30input_curl: send a User-Agent headerMax Kellermann1-0/+3
Send "Music Player Daemon " + VERSION as the User-Agent request header.
2008-11-28update: added options which control symlink behaviourRaphaƫl Rigo3-7/+37
The configuration options "follow_outside_symlinks" and "follow_inside_symlinks" let the user control whether MPD should follow symbolic links in the music directory. [mk: converted variables to "bool"; moved configuration to update_global_init()]
2008-11-27update: added update_global_init() and update_global_finish()Max Kellermann3-0/+14
Those two functions are called when MPD starts and exits. It allows the update library to perform global initialization and deinitialization. The implementations are currently empty.
2008-11-27conf: added config_get_bool()Max Kellermann2-0/+14
In contrast to, getBoolConfigParam(), config_get_bool() properly returns a "bool" value. In case of "unset", it returns the default value provided by the caller.
2008-11-27mp3: use GLib loggingMax Kellermann1-19/+18
Use GLib's g_warning(), ... instead of MPD's deprecated log.h.
2008-11-25input_curl: disable Icy-MetadataMax Kellermann1-0/+2
input_curl.c does not support parsing shoutcast metadata yet. Disable the "Icy-Metadata" header for now, since it may cause corruptions in the stream.
2008-11-25main: destroy the save_state timer on exitMax Kellermann1-0/+2
Make valgrind happier.
2008-11-25output: use GLib instead of log.h/util.hMax Kellermann4-38/+39
2008-11-25oss: use GLib instead of utils.h/log.hMax Kellermann1-55/+56
2008-11-25mvp: use GLib instead of utils.h/log.hMax Kellermann1-16/+27
2008-11-25shout: use GLib instead of utils.h/log.hMax Kellermann4-82/+82
2008-11-25shout: don't check HAVE_SHOUTMax Kellermann1-7/+0
If the shout plugin is disabled, shout_plugin.c isn't compiled at all, no need to check the macro definition.
2008-11-25player: set elapsed=0 at song changeMarc Pavot1-0/+1
I have found something that looks like a bug in MPD: - When a song is finished, the next one is played and the 'player' event is emitted. - When the client sends the status command just after this event, the songid is the new one but the 'elapsed' time is not reseted to 0. This is problem because I have implemented the solution using a timer on client side to compute the elapsed time but with this bug the elapsed time continues to be incremented on a new song.
2008-11-25ao: print error message when ao_open_live() failsMax Kellermann1-1/+3
When ao_open_live() failed, MPD would ignore the error code in "errno". Make it print a meaningful error message.
2008-11-25ao: support all libao error codesMax Kellermann1-9/+29
The function audioOutputAo_error() did not implement all possible libao error codes. Support the rest of them, and fall back to strerror().
2008-11-25ao: use GLib instead of utils.h/log.hMax Kellermann1-19/+21
2008-11-25decoder: added missing glib.h includeMax Kellermann1-0/+2
2008-11-24tag_id3.h: replaced mpd_unused by G_GNUC_UNUSEDThomas Jansen1-2/+2
2008-11-24command.c: replaced mpd_unused by G_GNUC_UNUSEDThomas Jansen1-63/+63
2008-11-24client.c: replaced mpd_unused by G_GNUC_UNUSEDThomas Jansen1-1/+1
2008-11-24player_thread.c: replaced mpd_unused by G_GNUC_UNUSEDThomas Jansen1-1/+3
2008-11-24update.c: replaced mpd_unused by G_GNUC_UNUSEDThomas Jansen1-1/+1
2008-11-24sig_handlers.c: replaced mpd_unused by G_GNUC_UNUSEDThomas Jansen1-1/+2
2008-11-24pcm_resample_fallback.c: replaced mpd_unused by G_GNUC_UNUSEDThomas Jansen1-5/+5
2008-11-24dbUtils.c: replaced mpd_unused by G_GNUC_UNUSEDThomas Jansen1-2/+2
2008-11-24decoder_thread.c: replaced mpd_unused by G_GNUC_UNUSEDThomas Jansen1-1/+1
2008-11-24zeroconf.c: replaced mpd_unused by G_GNUC_UNUSEDThomas Jansen1-4/+6
2008-11-24input_file.c: replaced mpd_unused by G_GNUC_UNUSEDThomas Jansen1-2/+1
2008-11-24input_curl.c: replaced mpd_unused by G_GNUC_UNUSEDThomas Jansen1-2/+1
2008-11-24decoder_api.c: replaced mpd_unused by G_GNUC_UNUSEDThomas Jansen1-6/+7
2008-11-24main_notify.c: replaced mpd_unused by G_GNUC_UNUSEDThomas Jansen1-3/+5
2008-11-24flac, mpc, ogg, wavpack: include unistd.h for SEEK_SETMax Kellermann5-0/+5
SEEK_SET is defined by unistd.h. Explicitly include it.