aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* log: store duplicated path stringMax Kellermann2012-08-143-31/+32
| | | | | | | Don't free the string right after calling log_init_file(). Add a new function log_deinit() that frees the string on shutdown. This fixes cycling the log file after SIGHUP (Mantis ticket 0003524).
* output/jack: implement method delay()Max Kellermann2012-08-141-4/+11
| | | | Eliminate the g_usleep() call.
* output/pulse: implement method delay()Max Kellermann2012-08-141-7/+21
| | | | Reduce command latency while paused.
* output/pulse: simplify _wait_stream()Max Kellermann2012-08-141-55/+16
| | | | One large loop and only one pa_stream_get_state() call.
* output/httpd: move delay from _pause() to _delay()Max Kellermann2012-08-141-1/+5
|
* output/httpd: fix throttling bug after resuming playbackMax Kellermann2012-08-142-0/+9
| | | | | | Reset the timer when paused and no client is connected. This fixes Mantis ticket 0003527.
* output/httpd: move code to _has_clients()Max Kellermann2012-08-141-11/+27
|
* timer: use monotonic clock if availableMax Kellermann2012-08-145-17/+147
|
* input/ffmpeg: remove fallback AV_VERSION_INT definitionMax Kellermann2012-08-141-4/+1
| | | | This is part of libavutil.
* mpd.conf(5): Document the existence of musicbrainz_ tagsWieland Hoffmann2012-08-142-9/+9
| | | | | Additionally, update mpdconf.example to refer to mpd.conf(5) for the complete list of tags instead of trying to repeat it.
* mapper: fix non-UTF8 music directory nameMax Kellermann2012-08-145-37/+74
| | | | | | Duplicate the music_dir variable: one encoded in UTF-8, and another one using the configured filesystem character set. This fixes an ancient MPD bug.
* playlist_song: use map_to_relative_path()Max Kellermann2012-08-141-4/+4
|
* playlist_song: improve const-correctnessMax Kellermann2012-08-141-5/+4
|
* playlist_song: move code to playlist_check_load_song()Max Kellermann2012-08-141-23/+23
|
* valgrind.suppressions: suppressions for GStaticMutex and moreMax Kellermann2012-08-141-0/+37
|
* input_stream, main: remove obsolete GLib version checksMax Kellermann2012-08-143-8/+0
| | | | MPD requires GLib 2.16.
* client_file: remove pure attribute from client_allow_file().Anton Khirnov2012-08-132-1/+2
| | | | | | | | That function is not pure, it writes to error. When marked as pure, the compiler is allowed to assume it does not do anything to error, so it can remain NULL, which would result in an invalid read in print_error().
* Modify version string to post-release version 0.17.2~gitAvuton Olrich2012-07-312-1/+4
|
* mpd version 0.17.1release-0.17.1Avuton Olrich2012-07-311-1/+1
|
* configure.ac: replace MPD_CHECK_FLAG with autoconf-archive scriptsMax Kellermann2012-07-305-27/+213
| | | | Use standard scripts instead of MPD's custom implementation.
* configure.ac: add -I to CPPFLAGS, not CFLAGSMax Kellermann2012-07-301-1/+1
|
* tcp_socket, ...: remove obsolet RAOP sourcesMax Kellermann2012-07-307-990/+0
|
* tag_ape: return false if no usable tag was foundMax Kellermann2012-07-292-7/+22
| | | | | | | Ignore APE tags that have no usable tags, and use the ID3 tag instead. This is useful when the APE tag only contains replay gain, and the real tags are stored as ID3. This implements feature request Mantis #0003521.
* cue_parser: support file types "MP3", "AIFF"Max Kellermann2012-07-262-1/+5
| | | | These two strings are common "FILE" types.
* Makefile.am: updated web server for "upload" targetMax Kellermann2012-07-131-1/+1
|
* Add song duration to DSF and DSDIFF DSD decoders.Jurgen Kramer2012-07-132-3/+24
|
* aiff: support the AIFC formatMax Kellermann2012-07-102-1/+4
|
* output_init: put the "convert" filter at the end of the listMax Kellermann2012-07-102-7/+9
| | | | | No, really! This fixes a regression of commit 74617389, which changed the order of filter plugins.
* test/test_pcm: add pcm_volume testsMax Kellermann2012-07-104-0/+212
|
* require GLib 2.16Max Kellermann2012-07-1028-145/+5
| | | | | GLib 2.16 was released more than 4 years ago. Let's remove some cruft from the glib_compat.h header, and avoid new cruft to it.
* Merge branch 'fix-typo' of https://github.com/sol/mpdMax Kellermann2012-07-101-1/+1
|\
| * Fix typoSimon Hengel2012-07-081-1/+1
| |
* | command: require appropriate permissions for searchadd{,pl}Jonathan Neuschäfer2012-07-102-2/+4
| |
* | configure.ac: increment version number to 0.17.1Max Kellermann2012-07-092-1/+3
|/
* mpd version 0.17release-0.17Max Kellermann2012-06-272-7/+3
|
* Makefile.am: distribute src/output/*.hMax Kellermann2012-06-271-14/+28
|
* patch to split DSD decoder into separate decoders for DSF en DFF. Move commonJurgen Kramer2012-06-279-325/+582
| | | | functions to new dsdlib. Update user doc.
* Documentation for commands searchadd, searchaddpl, and for tcp keepalive ↵geneticdrift2012-06-274-0/+90
| | | | config options
* New command searchaddplgeneticdrift2012-06-273-0/+77
| | | | Search and add search result to a stored playlist.
* New command searchadd similar to command findadd.geneticdrift2012-06-273-0/+73
|
* locate: make variables more localMax Kellermann2012-06-271-19/+10
|
* update_walk: move code to update_song.cMax Kellermann2012-06-134-84/+152
|
* update_walk: move code to update_container.cMax Kellermann2012-06-134-91/+163
|
* update_walk: move code to update_archive.cMax Kellermann2012-06-135-135/+250
|
* update_internal.h: split headerMax Kellermann2012-06-136-22/+51
|
* update_walk: split update_regular_file()Max Kellermann2012-06-131-21/+58
|
* directory: require db lock for _{add,remove}_song()Max Kellermann2012-06-132-0/+10
|
* update_walk: add "pure" attributesMax Kellermann2012-06-131-0/+2
|
* update_walk: move code to make_directory_if_modified()Max Kellermann2012-06-131-21/+39
|
* update_walk: fix coding styleMax Kellermann2012-06-131-94/+67
|