summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-12-02MPD version 0.14~beta2v0.14_beta2Avuton Olrich
2008-12-02NEWS: added new featuresMax Kellermann
2008-12-02AUTHORS: added Avuton Olrich, Eric WollesenMax Kellermann
2008-12-02listen: check if AI_ADDRCONFIG is definedMax Kellermann
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 Kellermann
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 Jansen
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 Jansen
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 Jansen
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 Jansen
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 Kellermann
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-30AUTHORS: moved inactive developersMax Kellermann
Moved the following developers to the "Former Developers" section, because they are currently not interested in MPD development: Warren Dukes, J. Alexander Treuman. There are probably more inactive developers still in the list.
2008-11-30AUTHORS: removed pseudonymsMax Kellermann
The AUTHORS file should only contain full real names. Removed all pseudonyms.
2008-11-30AUTHORS: removed mp4ff copyrightMax Kellermann
libmp4ff was removed from MPD a while ago.
2008-11-30shout: fixed the lame input buffer allocationMax Kellermann
"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 Kellermann
It's easier to work with an int16_t* pointer here.
2008-11-30input_curl: follow HTTP redirectsMax Kellermann
Follow HTTP redirects, but no more than 5.
2008-11-30input_curl: send a User-Agent headerMax Kellermann
Send "Music Player Daemon " + VERSION as the User-Agent request header.
2008-11-28update: added options which control symlink behaviourRaphaƫl Rigo
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-27INSTALL: documented pkg-config usageMax Kellermann
Mention the workaround for users without pkg-config.
2008-11-27update: added update_global_init() and update_global_finish()Max Kellermann
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 Kellermann
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 Kellermann
Use GLib's g_warning(), ... instead of MPD's deprecated log.h.
2008-11-25input_curl: disable Icy-MetadataMax Kellermann
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 Kellermann
Make valgrind happier.
2008-11-25output: use GLib instead of log.h/util.hMax Kellermann
2008-11-25oss: use GLib instead of utils.h/log.hMax Kellermann
2008-11-25mvp: use GLib instead of utils.h/log.hMax Kellermann
2008-11-25shout: use GLib instead of utils.h/log.hMax Kellermann
2008-11-25shout: don't check HAVE_SHOUTMax Kellermann
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 Pavot
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 Kellermann
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 Kellermann
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 Kellermann
2008-11-25decoder: added missing glib.h includeMax Kellermann
2008-11-24tag_id3.h: replaced mpd_unused by G_GNUC_UNUSEDThomas Jansen
2008-11-24command.c: replaced mpd_unused by G_GNUC_UNUSEDThomas Jansen
2008-11-24client.c: replaced mpd_unused by G_GNUC_UNUSEDThomas Jansen
2008-11-24player_thread.c: replaced mpd_unused by G_GNUC_UNUSEDThomas Jansen
2008-11-24update.c: replaced mpd_unused by G_GNUC_UNUSEDThomas Jansen
2008-11-24sig_handlers.c: replaced mpd_unused by G_GNUC_UNUSEDThomas Jansen
2008-11-24pcm_resample_fallback.c: replaced mpd_unused by G_GNUC_UNUSEDThomas Jansen
2008-11-24dbUtils.c: replaced mpd_unused by G_GNUC_UNUSEDThomas Jansen
2008-11-24decoder_thread.c: replaced mpd_unused by G_GNUC_UNUSEDThomas Jansen
2008-11-24zeroconf.c: replaced mpd_unused by G_GNUC_UNUSEDThomas Jansen
2008-11-24input_file.c: replaced mpd_unused by G_GNUC_UNUSEDThomas Jansen
2008-11-24input_curl.c: replaced mpd_unused by G_GNUC_UNUSEDThomas Jansen
2008-11-24decoder_api.c: replaced mpd_unused by G_GNUC_UNUSEDThomas Jansen
2008-11-24main_notify.c: replaced mpd_unused by G_GNUC_UNUSEDThomas Jansen
2008-11-24flac, mpc, ogg, wavpack: include unistd.h for SEEK_SETMax Kellermann
SEEK_SET is defined by unistd.h. Explicitly include it.
2008-11-24player: disable music_pipe_check_format()Max Kellermann
The music pipe audio format bugs seem to be fixed (hopefully). Disable music_pipe_check_format() for now, since it consumes a lot of CPU cycles.