aboutsummaryrefslogtreecommitdiffstats
path: root/src (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-02-10osx: removed disabled debug messagesMax Kellermann1-43/+2
Nobody needs these debug messages anymore.
2009-02-10output_all: added API documentationMax Kellermann1-0/+33
2009-02-10output_all: moved code to audio_output_all_finished()Max Kellermann1-13/+16
audio_output_all_finished() returns bool, not int.
2009-02-10output_all: no CamelCaseMax Kellermann4-81/+97
Renamed functions and variables.
2009-02-10audio: moved code to output_all.cMax Kellermann10-298/+366
Moved code which deals with all audio outputs at once into a separate library.
2009-02-10audio: moved protocol code to output_print.cMax Kellermann6-19/+78
2009-02-10audio: moved state file code to output_state.cMax Kellermann6-59/+121
2009-02-10audio: removed isCurrentAudioFormat()Max Kellermann2-10/+0
This function isn't used anymore.
2009-02-10crossfade: don't use isCurrentAudioFormat()Max Kellermann3-2/+5
The crossfading code shouldn't depend on the audio output code. Pass the current audio format to cross_fade_calc() and let it compare directly, instead of using isCurrentAudioFormat().
2009-02-10playlist: fix assertion when last/current song is deletedMax Kellermann1-1/+4
When MPD is stopped, but the last song is still the "current song", and you delete it, playlist->current is not updated, and becomes an invalid value. Fix this by catching "!playlist->playing && playlist->current == (int)songOrder".
2009-02-10audio: added output enumeration functionsMax Kellermann2-0/+35
Added audio_output_get(), audio_output_find().
2009-02-10audio: added audio_output_config_count()Max Kellermann2-1/+11
audio_output_config_count() returns the number of audio outputs in the configuration file. It is only used by initAudioDriver(). The public function audio_output_count() now returns audioOutputArraySize.
2009-02-10output_internal: added missing output_api.h includeMax Kellermann1-0/+1
output_api.h is required for enum audio_output_command.
2009-02-10player: added some more assertionsMax Kellermann2-0/+4
Assertions on pc.command and pc.next_song.
2009-02-10player_thread: reset pc.next_song only if queuedMax Kellermann1-1/+5
When we reset pc.next_song if there is no song queued, this might cause a race condition: the next song to be played is cleared, while pc.command was already set. Clear the "next_song" only if there is a song queued for the current do_play() invocation.
2009-02-10playlist: update queued song after seekingMax Kellermann1-3/+7
If a new song is queued before calling playerSeek(), then the player and the playlist enter an inconsistent state, because the player discards the playlist's "queued" song in favor of the seeked song. Call playlist_update_queued_song() after playerSeek().
2009-02-10player_thread: reset pc.next_songMax Kellermann1-0/+6
After a player command (successful or not), reset pc.next_song, because the queue is supposed to be empty then. Otherwise, playlist.queued and pc.next_song may disagree, which triggers an assertion failure.
2009-02-09queue: update order array after song moveMax Kellermann1-0/+14
Commit f78cddb4 introduced a regression: after a song was moved, the order array was not updated (in random mode). This caused MPD to think the "current" song has changed when you moved something to the position of the current song.
2009-02-09playlist: fixed "next song" checkVladimir S Eremin1-3/+2
Check if the "current+1" position is actually valid.
2009-02-09output_api: include "config.h" without "../"Max Kellermann1-1/+1
Including "../config.h" breaks on some systems.
2009-02-09shout: clear buffer before calling the encoderMax Kellermann3-18/+14
Always assume the buffer is empty before calling the encoder. Always flush the buffer immediately after there has been added something. This reduces the risk of buffer overruns, because there will never be a "rest" in the current buffer.
2009-02-09shout: don't postpone metadataMax Kellermann3-34/+14
Don't duplicate the tag received by the send_metadata() method - send it to the shout server directly.
2009-02-09shout: use libshout's synchronizationMax Kellermann2-24/+4
Removed the manual timer synchronization from the shout plugin. libshout's shout_sync() function does it for us.
2009-02-09shout: switch to blocking modeMax Kellermann2-77/+7
The non-blocking mode of libshout is sparsely documented, and MPD's implementation had several bugs. Also removed connect throttling code, that is done by the MPD core since 0.14.
2009-02-09shout: removed shout_data.tag_to_sendMax Kellermann2-9/+6
When shout_data.tag!=NULL, there is a "tag to send". The tag_to_send flag is redundant.
2009-02-09shout: removed shout_data.shout_errorMax Kellermann2-4/+0
That variable is set in handle_shout_error(), but is never read.
2009-02-09playlist: provide information about "next song"Vladimir S Eremin3-0/+27
In random mode, this patch allows clients to see the "next song" in the queue.
2009-02-04playlist: increase playlist version after loading stateMax Kellermann1-0/+2
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.
2009-02-04update: check whether stickers are enabledMax Kellermann1-1/+3
If stickers are not configured at runtime, don't call sticker_song_delete().
2009-02-04playlist_save: added spl_save_playlist()Max Kellermann3-1/+13
spl_save_playlist() is a wrapper for spl_save_queue().
2009-02-04playlist: added G_LOG_DOMAINMax Kellermann2-4/+11
Removed the explicit "playlist:" prefix from all log messages.
2009-02-04playlist_print: added wrappers for printing the queueMax Kellermann3-31/+164
Hide the details of the playlist behind wrapper functions.
2009-02-04playlist: pass const playlist pointersMax Kellermann2-15/+12
Pass constant playlist objects to functions which do not modify it.
2009-02-04playlist_print: added API documentationMax Kellermann1-0/+8
2009-02-04playlist_print: use bool instead of intMax Kellermann3-16/+22
Return true on success, instead of 0. Converted the "detail" parameter to bool.
2009-02-04playlist_print: no CamelCaseMax Kellermann3-5/+6
Renamed one function.
2009-02-04playlist_print: include cleanupMax Kellermann1-4/+1
2009-02-04playlist: moved code to playlist_edit.cMax Kellermann3-369/+394
Moved functions for playlist editing (append, delete, shuffle, move) to playlist_edit.c.
2009-02-04playlist: moved code to playlist_control.cMax Kellermann4-241/+306
Moved handlers for control commands (play, stop, next, prev) to playlist_control.c.
2009-02-04playlist: call syncPlaylistWithQueue() only in the event handlerMax Kellermann1-4/+0
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.
2009-02-04playlist: renamed global "playlist" variable to "g_playlist"Max Kellermann11-391/+494
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.
2009-02-04playlist: moved code to playlist_state.cMax Kellermann4-134/+217
Moved everything related to saving or loading the playlist from/to the state file to playlist_state.c.
2009-02-04playlist: simplified playlist.queued updatesMax Kellermann1-117/+111
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.
2009-02-03ffmpeg: fixed seek integer overflowMax Kellermann1-3/+4
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.
2009-02-03ffmpeg: check if the time stamp is validMax Kellermann1-4/+5
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.
2009-02-03ffmpeg: don't warn of empty packet outputMax Kellermann1-3/+2
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.
2009-02-03ffmpeg: print codec nameMax Kellermann1-0/+3
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.
2009-02-02shout_mp3: call lame_close() in clear_encoder() methodMax Kellermann1-2/+6
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.
2009-02-02shout_mp3: free the lame_data struct on exitMax Kellermann1-0/+2
Make valgrind a little bit happier: free the global lame_data struct in the finish() method.
2009-02-02player_thread: set player error when output device failsMax Kellermann1-1/+4
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.