- 09 Feb, 2009 3 commits
-
-
Max Kellermann authored
When shout_data.tag!=NULL, there is a "tag to send". The tag_to_send flag is redundant.
-
Max Kellermann authored
That variable is set in handle_shout_error(), but is never read.
-
Vladimir S Eremin authored
In random mode, this patch allows clients to see the "next song" in the queue.
-
- 04 Feb, 2009 18 commits
-
-
Max Kellermann authored
After the state file has been loaded, the playlist version is still "1", and "plchanges 1" returns the whole playlist. Fix this by increasing the playlist version after the state file has been loaded.
-
Max Kellermann authored
If stickers are not configured at runtime, don't call sticker_song_delete().
-
Max Kellermann authored
spl_save_playlist() is a wrapper for spl_save_queue().
-
Max Kellermann authored
Removed the explicit "playlist:" prefix from all log messages.
-
Max Kellermann authored
Hide the details of the playlist behind wrapper functions.
-
Max Kellermann authored
Pass constant playlist objects to functions which do not modify it.
-
Max Kellermann authored
-
Max Kellermann authored
Return true on success, instead of 0. Converted the "detail" parameter to bool.
-
Max Kellermann authored
Renamed one function.
-
Max Kellermann authored
-
Max Kellermann authored
Moved functions for playlist editing (append, delete, shuffle, move) to playlist_edit.c.
-
Max Kellermann authored
Moved handlers for control commands (play, stop, next, prev) to playlist_control.c.
-
Max Kellermann authored
Don't call syncPlaylistWithQueue() in nextSongInPlaylist() and previousSongInPlaylist(). This is a relic from the time when there was no event, and was a workaround to the timing problem.
-
Max Kellermann authored
Export the "g_playlist" variable, and pass it to all playlist functions. This way, we can split playlist.c easier into separate parts. The code which initializes the singleton variable is moved to playlist_global.c.
-
Max Kellermann authored
Moved everything related to saving or loading the playlist from/to the state file to playlist_state.c.
-
Max Kellermann authored
Before every operation which modifies the playlist, remember a pointer to the song struct. After the modification, determine the "next song" again, and if it differs, dequeue and queue the new song. This removes a lot of complexity from the playlist update code, and makes it more robust.
-
Max Kellermann authored
The protocol has been extended since MPD 0.14: playlist ranges, stickers. About time to give the protocol a new version number!
-
Max Kellermann authored
Disable the HTML documentation generator by default. Most users will pick it from the web site.
-
- 03 Feb, 2009 4 commits
-
-
Max Kellermann authored
The "current" variable is used for calculating the seek destination, and was declared as "int". With very long song files, the 32 bit integer can overflow. ffmpeg expects an int64_t, which is very unlikely to overflow. Switch to int64_t.
-
Max Kellermann authored
When ffmpeg cannot estimate the elapsed time, it sets AVPacket.pts=AV_NOPTS_VALUE. Our ffmpeg decoder plugin did not check for that special value.
-
Max Kellermann authored
If avcodec_decode_audio2() returns no output for an AVPacket, libavcodec may buffer some data, and return a larger chunk of output later. This patch disables a lot of bogus warnings.
-
Max Kellermann authored
Output the name of the codec as a debug message. During my tests, ffmpeg never filled this struct member, but it may do so in the past, and this debug message might become helpful.
-
- 02 Feb, 2009 5 commits
-
-
Max Kellermann authored
The shout_mp3 encoder had two bugs: when no song was ever played, MPD segfaulted during cleanup. Second bug: memory leak, each time the shout device was opened, lame_init() was called again, and lame_close() is only called once during shutdown. Fix this by shutting down LAME each time the clear_encoder() method is called.
-
Max Kellermann authored
Make valgrind a little bit happier: free the global lame_data struct in the finish() method.
-
Max Kellermann authored
When the output device fails to play a chunk, set pc.error to PLAYER_ERROR_AUDIO. This way, the playlist knows that it should not queue the next song.
-
Max Kellermann authored
Don't mention the program name in the error message.
-
Max Kellermann authored
When the update thread is started before MPD has forked (for daemonization), it is killed, because threads do not survive a fork(). This induces an inconsistent state where MPD won't start any update thread at all, because it thinks the thread is already running.
-
- 30 Jan, 2009 10 commits
-
-
Max Kellermann authored
Move the "while" loop which checks for commands to the caller ao_pause(). This simplifies the pause() method, and lets us remove audio_output_is_pending().
-
Max Kellermann authored
This fixes an assertion failure: when the last song in the playlist was playing, and you deleted it, MPD aborted.
-
Max Kellermann authored
The macro is unused.
-
Max Kellermann authored
The function is only used by the MVP output plugin, and this one call is wrong.
-
Max Kellermann authored
If no ports are configured, don't overwrite the (NULL) configuration with the port names of the first JACK server. If the server changes after a JACK reconnect, MPD won't attempt to auto-detect again.
-
Max Kellermann authored
Currently, the JACK plugin manipulates the audio_format struct which was passed to the open() method. This is very likely to break, because the plugin must not permanently store this pointer. After this patch, MPD ignores sample rate changes. It looks like other software is doing the same, and I guess this is a non-issue. This patch converts the audio_format pointer within jack_data into a static audio_format struct.
-
Max Kellermann authored
jack_set_info_function() is not provided by older libjack versions. Attempt to detect if it is available.
-
Matthias Drochner authored
Hi - independently of libmikmod's other problems - there seems to be a problem in mpd's wrapper: MikMod_Exit() is called after the first file is decoded, which frees some ressources within the mikmod library. An attempt to play a second file leads to a crash. The appended patch fixes this for me. (I don't know what the "dup" entry is good for - someone who knows should review that too.) best regards Matthias [mk: removed 3 more MikMod_Exit() invocations]
-
Max Kellermann authored
The wavpack library seems to use the .wvc stream even if the OPEN_WVC flag is not set. In this case, pass NULL to be sure libwavpack won't use it.
-
Max Kellermann authored
Use jack_set_info_function() to install an info callback. Don't let libjack print them to stderr.
-