Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | archiveapi: archive plugin for ZIP files | Viliam Mateicka | 2008-12-16 | 4 | -0/+222 |
| | |||||
* | archiveapi: archive plugin for BZ2 files | Viliam Mateicka | 2008-12-16 | 4 | -0/+342 |
| | |||||
* | update: adding archive updating related code | Viliam Mateicka | 2008-12-16 | 1 | -1/+64 |
| | |||||
* | song: adding support for songs in archives | Viliam Mateicka | 2008-12-16 | 3 | -1/+39 |
| | |||||
* | ls: adding get_archive_by_suffix() function | Viliam Mateicka | 2008-12-16 | 2 | -0/+19 |
| | |||||
* | new archive api, input_archive stream | Viliam Mateicka | 2008-12-16 | 11 | -2/+578 |
| | |||||
* | utils: moving stringFoundInStringArray() from decoder into utils | Viliam Mateicka | 2008-12-09 | 3 | -11/+14 |
| | |||||
* | decoder: audiofile plugin using input stream instead of file | Viliam Mateicka | 2008-12-03 | 1 | -15/+74 |
| | |||||
* | NEWS: added new features | Max Kellermann | 2008-12-02 | 1 | -0/+4 |
| | |||||
* | AUTHORS: added Avuton Olrich, Eric Wollesen | Max Kellermann | 2008-12-02 | 1 | -0/+8 |
| | |||||
* | listen: check if AI_ADDRCONFIG is defined | Max Kellermann | 2008-12-02 | 1 | -1/+4 |
| | | | | | AI_ADDRCONFIG is not available on all operating systems. Check if it is defined in the current build environment. | ||||
* | listen: enable AI_PASSIVE | Max Kellermann | 2008-12-02 | 1 | -1/+1 |
| | | | | | The getaddrinfo() flag AI_PASSIVE should be used when resolving addresses for the bind() system call. | ||||
* | replaced mpd_printf etc by G_GNUC_PRINTF | Thomas Jansen | 2008-12-02 | 6 | -21/+17 |
| | | | | | We want to remove gcc.h eventually. This takes care of all the G_GNUC_PRINTF macros. | ||||
* | replaced mpd_noreturn by G_GNUC_NORETURN | Thomas Jansen | 2008-12-02 | 4 | -5/+6 |
| | | | | | We want to remove gcc.h eventually. This takes care of all the G_GNUC_NORETURN macros. | ||||
* | replaced mpd_malloc by G_GNUC_MALLOC | Thomas Jansen | 2008-12-02 | 4 | -13/+12 |
| | | | | | We want to remove gcc.h eventually. This takes care of all the G_GNUC_MALLOC macros. | ||||
* | replaced mpd_likely/mpd_unlikely by G_LIKELY/G_UNLIKELY | Thomas Jansen | 2008-12-02 | 6 | -16/+18 |
| | | | | | We want to remove gcc.h eventually. This takes care of all the G_LIKELY/G_UNLIKELY macros. | ||||
* | alsa: reverted the default buffer_time to 500 ms | Max Kellermann | 2008-12-01 | 1 | -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. | ||||
* | AUTHORS: moved inactive developers | Max Kellermann | 2008-11-30 | 1 | -6/+6 |
| | | | | | | | | 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. | ||||
* | AUTHORS: removed pseudonyms | Max Kellermann | 2008-11-30 | 1 | -13/+0 |
| | | | | | The AUTHORS file should only contain full real names. Removed all pseudonyms. | ||||
* | AUTHORS: removed mp4ff copyright | Max Kellermann | 2008-11-30 | 1 | -3/+0 |
| | | | | libmp4ff was removed from MPD a while ago. | ||||
* | shout: fixed the lame input buffer allocation | Max Kellermann | 2008-11-30 | 1 | -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. | ||||
* | shout_mp3: cast input buffer to int16_t* | Max Kellermann | 2008-11-30 | 1 | -2/+2 |
| | | | | It's easier to work with an int16_t* pointer here. | ||||
* | input_curl: follow HTTP redirects | Max Kellermann | 2008-11-30 | 1 | -0/+2 |
| | | | | Follow HTTP redirects, but no more than 5. | ||||
* | input_curl: send a User-Agent header | Max Kellermann | 2008-11-30 | 1 | -0/+3 |
| | | | | | Send "Music Player Daemon " + VERSION as the User-Agent request header. | ||||
* | update: added options which control symlink behaviour | Raphaƫl Rigo | 2008-11-28 | 5 | -7/+50 |
| | | | | | | | | | 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()] | ||||
* | INSTALL: documented pkg-config usage | Max Kellermann | 2008-11-27 | 1 | -0/+12 |
| | | | | Mention the workaround for users without pkg-config. | ||||
* | update: added update_global_init() and update_global_finish() | Max Kellermann | 2008-11-27 | 3 | -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. | ||||
* | conf: added config_get_bool() | Max Kellermann | 2008-11-27 | 2 | -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. | ||||
* | mp3: use GLib logging | Max Kellermann | 2008-11-27 | 1 | -19/+18 |
| | | | | Use GLib's g_warning(), ... instead of MPD's deprecated log.h. | ||||
* | input_curl: disable Icy-Metadata | Max Kellermann | 2008-11-25 | 1 | -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. | ||||
* | main: destroy the save_state timer on exit | Max Kellermann | 2008-11-25 | 1 | -0/+2 |
| | | | | Make valgrind happier. | ||||
* | output: use GLib instead of log.h/util.h | Max Kellermann | 2008-11-25 | 4 | -38/+39 |
| | |||||
* | oss: use GLib instead of utils.h/log.h | Max Kellermann | 2008-11-25 | 1 | -55/+56 |
| | |||||
* | mvp: use GLib instead of utils.h/log.h | Max Kellermann | 2008-11-25 | 1 | -16/+27 |
| | |||||
* | shout: use GLib instead of utils.h/log.h | Max Kellermann | 2008-11-25 | 4 | -82/+82 |
| | |||||
* | shout: don't check HAVE_SHOUT | Max Kellermann | 2008-11-25 | 1 | -7/+0 |
| | | | | | If the shout plugin is disabled, shout_plugin.c isn't compiled at all, no need to check the macro definition. | ||||
* | player: set elapsed=0 at song change | Marc Pavot | 2008-11-25 | 1 | -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. | ||||
* | ao: print error message when ao_open_live() fails | Max Kellermann | 2008-11-25 | 1 | -1/+3 |
| | | | | | When ao_open_live() failed, MPD would ignore the error code in "errno". Make it print a meaningful error message. | ||||
* | ao: support all libao error codes | Max Kellermann | 2008-11-25 | 1 | -9/+29 |
| | | | | | | The function audioOutputAo_error() did not implement all possible libao error codes. Support the rest of them, and fall back to strerror(). | ||||
* | ao: use GLib instead of utils.h/log.h | Max Kellermann | 2008-11-25 | 1 | -19/+21 |
| | |||||
* | decoder: added missing glib.h include | Max Kellermann | 2008-11-25 | 1 | -0/+2 |
| | |||||
* | tag_id3.h: replaced mpd_unused by G_GNUC_UNUSED | Thomas Jansen | 2008-11-24 | 1 | -2/+2 |
| | |||||
* | command.c: replaced mpd_unused by G_GNUC_UNUSED | Thomas Jansen | 2008-11-24 | 1 | -63/+63 |
| | |||||
* | client.c: replaced mpd_unused by G_GNUC_UNUSED | Thomas Jansen | 2008-11-24 | 1 | -1/+1 |
| | |||||
* | player_thread.c: replaced mpd_unused by G_GNUC_UNUSED | Thomas Jansen | 2008-11-24 | 1 | -1/+3 |
| | |||||
* | update.c: replaced mpd_unused by G_GNUC_UNUSED | Thomas Jansen | 2008-11-24 | 1 | -1/+1 |
| | |||||
* | sig_handlers.c: replaced mpd_unused by G_GNUC_UNUSED | Thomas Jansen | 2008-11-24 | 1 | -1/+2 |
| | |||||
* | pcm_resample_fallback.c: replaced mpd_unused by G_GNUC_UNUSED | Thomas Jansen | 2008-11-24 | 1 | -5/+5 |
| | |||||
* | dbUtils.c: replaced mpd_unused by G_GNUC_UNUSED | Thomas Jansen | 2008-11-24 | 1 | -2/+2 |
| | |||||
* | decoder_thread.c: replaced mpd_unused by G_GNUC_UNUSED | Thomas Jansen | 2008-11-24 | 1 | -1/+1 |
| |