aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* playlist: use GLib's random number generatorMax Kellermann2009-01-131-6/+10
| | | | srandom() and random() are not portable. Use GLib's implementation.
* input_curl: use select() to eliminate busy loop during connectMax Kellermann2009-01-132-0/+8
| | | | | | | When decoder_run_song() (decoder_thread.c) waits for the input stream to become ready, it did that in a busy loop. Add a select() call to input_curl_buffer() during connect/handshake (i.e. before the first chunk of body data was received), to let the CPU relax.
* decoder_api: don't ignore DECODE_COMMAND_STOPMax Kellermann2009-01-131-2/+1
| | | | | | When the decoder thread is waiting for free chunks in the music pipe, don't ignore the STOP command. Just return dc.command without further checks.
* configure.ac: removed duplicate PKG_PROG_PKG_CONFIGMax Kellermann2009-01-131-2/+0
|
* updated .gitignoreMax Kellermann2009-01-131-0/+3
|
* update: save the database even if it is emptyMax Kellermann2009-01-133-1/+15
| | | | Save an empty database, even if the music directory is empty.
* pcm_utils: use the custom PRNG for volume ditheringMax Kellermann2009-01-135-6/+41
| | | | | Don't use libc's rand() function, because it is slow. Our own trivial linear congruential generator is good enough for dithering.
* update: refresh stats when database update is finishedMax Kellermann2009-01-132-0/+7
|
* configure.ac: detect libid3tag without pkg-configMax Kellermann2009-01-132-3/+9
| | | | | | libid3tag comes without a pkg-config file, and it is usually added by distribution packages. For those without .pc file, attempt to auto-detect the library with AC_CHECK_LIB.
* playlist: log errors during loadPlaylist()Max Kellermann2009-01-134-5/+5
| | | | | | Don't call command_error() if loading a song from the playlist fails. This may result in assertion failures, since command_error() may be called more than once.
* player_thread: fix cross-fading duplicate chunk bugMax Kellermann2009-01-042-0/+9
| | | | | | | | When the decoder of the new song is not fast enough, the player thread has to wait for it for a moment. However the variable "nextChunk" was reset to -1 during that, making the next loop iteration assume that cross-fading has not begun yet. This patch overwrites it with "0" while waiting.
* decoder_api: moved code to do_send_tag(), free temporary tagMax Kellermann2009-01-042-7/+18
| | | | | | | This patch fixes a minor memory leak: when decoder_tag() attempted to send a merged tag object (created by tag_add_stream_tags()), and was interrupted by a decoder command, it did not free the temporary merged tag object.
* NEWS: updated NEWS file for 0.14.1Max Kellermann2009-01-041-1/+10
|
* Check for pkg-config before using itQball Cow2009-01-041-0/+3
|
* jack: duplicate jack_get_ports() return valuesMax Kellermann2009-01-021-3/+4
| | | | | | | | | JACK documentation states: "The caller is responsible for calling free(3) any non-NULL returned value." This does not seem to include the array elements. Duplicate them after jack_get_ports(), and free only the array. Convert JackData.output_ports to non-const.
* bonjour: fixed "unused parameter" warningsMax Kellermann2009-01-021-7/+13
| | | | Add G_GNUC_UNUSED attributes.
* main: use g_setenv() instead of setenv()Max Kellermann2009-01-022-43/+1
| | | | Removed the fallback setenv() implementation for solaris.
* log: automatically append newlineMax Kellermann2009-01-021-2/+17
| | | | If a log message does not include a newline character, append it.
* tag_id3: strip leading and trailing whitespace from ID3 tagsThomas Jansen2009-01-021-2/+6
| | | | Fix for bug #1491.
* mp4: support the writer/composer tagFrank Mulder2009-01-021-0/+2
| | | | | | | | | | I tried to search for a certain composer in my collection, but only non-mp4 files showed up. The source code reveals that this tag is not read. This can be fixed by reading the 'Writer' tag field, in mp4_plugin.c, in function mp4_load_tag. I actually tried this, and after compiling with those lines added, also mp4 (.m4a) files showed up when searching for a composer.
* configure.ac: version number 0.14.1~gitMax Kellermann2009-01-022-1/+3
|
* MPD version 0.14release-0.14Avuton Olrich2008-12-252-6/+2
|
* Fix a few problems with the huge mpdconf update. There's alot of shift here, ↵Avuton Olrich2008-12-241-72/+86
| | | | mostly due to word wraps. This, also, improves on uniformity and clarity of the document.
* doc: fix "playlistdelete" documentationMax Kellermann2008-12-241-2/+2
| | | | | "playlistdelete" takes a song position, not a song id. There are no song ids in stored playlists.
* playlist: fix stored playlist modifications with absolute pathsMax Kellermann2008-12-243-2/+20
| | | | | | | | When save_absolute_paths_in_playlists was enabled in mpd.conf, MPD broke all playlists when manipulated using the "playlistdelete" command. The reason was that map_directory_child_fs() was used, which doesn't accept slashes in the file name. Use the new map_uri_fs() function instead.
* stored_playlist: fix integer overflow in length estimationMax Kellermann2008-12-241-1/+1
| | | | | | | With a large maximum playlist length, the integer multiplication "playlist_max_length * MPD_PATH_MAX" may overflow. Change that to a division. This was not a dangerous bug, since it was only used for a quick estimate.
* ffmpeg: case AV_NOPTS_VALUE to int64_tMax Kellermann2008-12-241-2/+2
| | | | | The old code casted it to a 32 bit integer, which cut off bits. AVFormatContext.duration is a int64_t, so use this type.
* ffmpeg: don't assign "0" to pointerMax Kellermann2008-12-241-1/+1
| | | | Use NULL instead. Found by sparse.
* Makefile.am: fix sparse invocationMax Kellermann2008-12-241-1/+4
| | | | Added missing includes.
* added build test script "test.sh"Max Kellermann2008-12-241-0/+87
|
* mp3: "tag" argument is unused when libid3tag is disabledMax Kellermann2008-12-241-2/+2
| | | | Add G_GNUC_UNUSED attributes.
* listen: "port" argument is unused when TCP support is disabledMax Kellermann2008-12-241-1/+2
| | | | Add a G_GNUC_UNUSED attribute.
* Makefile.am: distribute only real scriptsMax Kellermann2008-12-241-1/+1
| | | | | Don't distribute the whole scripts/ directory, because this may include editor backup files and other temporary files.
* Makefile.am: removed m4/* from EXTRA_DISTMax Kellermann2008-12-241-1/+3
| | | | The m4 files are automatically included in the distribution.
* Makefile.am: don't add directory into EXTRA_DISTMax Kellermann2008-12-241-1/+1
| | | | Add separate files. This fixes "make distcheck".
* configure.ac: renamed shout optionsMax Kellermann2008-12-241-4/+4
| | | | configure options should use the dash instead of the underscore.
* configure.ac: fix --enable-un documentationMax Kellermann2008-12-241-2/+2
| | | | Unix domain socket support is enabled by default.
* configure.ac: disable the mikmod plugin by defaultMax Kellermann2008-12-242-1/+2
| | | | | | | | | | | | libmikmod seems to be unmaintained, and has several critical bugs which make MPD crash. http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=461519 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=476339 Disable the plugin by default to minimize harm. Users should explicitly enable the mikmod decoder (--enable-mod) if they wish to have it anyway.
* pcm_utils: check pcm_convert()==0Max Kellermann2008-12-243-5/+16
| | | | | | | | It is illegal to pass an empty audio buffer around. pcm_resample() sometimes seems to result in 0 samples, maybe related to libsamplerate. To work around that problem, add special checks after both pcm_convert() invocations. Removed the pcm_resample()==0 checks from pcm_convert().
* client: always attempt to flush deferred buffersMax Kellermann2008-12-241-2/+11
| | | | | | | | | | | When a response is very long (e.g. a large playlist > 100k songs), most of it will end up in the deferred buffers. Filling the deferred queue is very expensive currently, because a new buffer is allocated for every client_write() operation. This may lead to long delays, and the client might give up and disconnect meanwhile. This patch makes MPD attempt to flush the deferred queue as often as possible, to work around this problem. Due to the MPD 0.14 code freeze, we should not optimize the buffering code now.
* shout: fixed bad error message printoutViliam Mateicka2008-12-231-2/+2
|
* Build makefiles after checking available outputs and decoder pluginsQball Cow2008-12-221-10/+12
| | | | Move the AC_OUTPUT below the checks. So you nicely see what goes wrong.
* Merge branch 'http_buffer_remove' of git://git.musicpd.org/avuton/mpdMax Kellermann2008-12-213-12/+0
|\
| * Remove obsolete http_buffer* stuff that went away with the new curl backend.Avuton Olrich2008-12-203-12/+0
| |
* | Merge branch 'master' of git://git.musicpd.org/avuton/mpdMax Kellermann2008-12-216-224/+295
|\ \ | | | | | | | | | | | | | | | Conflicts: doc/mpdconf.example
| * | Fix AUTHORS UTF-8 compliance.Avuton Olrich2008-12-211-1/+1
| |/
| * Huge mpdconf update.Avuton Olrich2008-12-201-175/+198
| | | | | | | | | | | | | | Over time mpdconf has evolved and has been maintained and contributed to by many different folks at different times. Try to give it some unity. Attempt to clear up some language and make things crystal clear. Add more examples. Use tabs when it makes sense. Make better borders. Remove obsolete options. Try to put more defaults when it makes sense.
| * More clarification in the INSTALL fileAvuton Olrich2008-12-201-3/+4
| |
| * Word wrap to 80 char linesAvuton Olrich2008-12-202-31/+60
| |
| * Start off with a disclaimer about the NEWS file informationAvuton Olrich2008-12-201-0/+2
| |