aboutsummaryrefslogtreecommitdiffstats
path: root/src (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-02-15decoder_list: added configuration block "decoder"Max Kellermann3-1/+31
The "decoder" configuration block may contain the configuration of one decoder plugin.
2009-02-15decoder_plugin: pass struct config_param to init() methodMax Kellermann9-10/+18
Preparing for per-plugin configuration sections in mpd.conf.
2009-02-15decoder_api: moved enum decoder_command to decoder_command.hMax Kellermann5-9/+35
Minimize header dependencies, again.
2009-02-15decoder_plugin: added inline wrapper functionsMax Kellermann3-5/+62
Increase code readability, always use the wrapper functions instead of calling the plugin method pointers directly.
2009-02-15decoder_api: moved struct decoder_plugin to decoder_plugin.hMax Kellermann7-60/+89
The decoder_plugin struct is used by both the MPD core and the decoder plugin implementations. Move it to a shared header file, to minimize header dependencies.
2009-02-15daemon: return early from daemonize_set_user()Max Kellermann1-19/+20
If no "user" is configured, return from daemonize_set_user(). Save one level of indent.
2009-02-15daemon: ignore "user" setting if already running as that userMax Kellermann1-3/+6
If mpd.conf specifies a user, and MPD is invoked by exactly this user, ignore the "user" setting. Don't bother to look up its groups and don't attempt to change uid, it won't work anyway.
2009-02-15daemon: added comments to daemonize_detach()Max Kellermann1-0/+9
2009-02-15daemon: print fork error messageMax Kellermann1-2/+3
Print details on why the fork() fails.
2009-02-15daemon: moved code to daemonize_detach()Max Kellermann1-19/+23
Moved the code which detaches from the parent process/session to a separate function.
2009-02-13playlist_edit: improved range checks in shufflePlaylist()Romain Bignon1-1/+6
2009-02-13added the shufflerange commandRomain Bignon3-26/+29
This command shuffles a range of songs.
2009-02-12update: free deleted subdirectoriesMax Kellermann1-2/+6
Use delete_directory() for removing sub directories instead of dirvec_clear(). This ensures that all memory occupied by subdirectories of deleted directories is freed.
2009-02-12update: recursively purge deleted directoriesMax Kellermann1-1/+1
When a directory is deleted, MPD deleted only the directory from the database; it did not bother to walk the full tree to free all memory and to remove deleted songs from the playlist. Replace a dirvec_delete() with delete_directory().
2009-02-12aac: fix stream metadataMax Kellermann1-1/+1
Pass the input_stream object to decoder_data(). Without it, the MPD core does not see stream tags.
2009-02-12database: don't load database after charset was reconfiguredMax Kellermann1-6/+4
When you change the filesystem charset, discard the old database file and create a new one. The old database file will most likely contain stale or invalid information.
2009-02-12wildmidi: added seeking supportMax Kellermann1-1/+11
Use WildMidi_SampledSeek() for seeking in a MIDI file.
2009-02-12wildmidi: provide and current total song timeMax Kellermann1-5/+34
The _WM_Info struct provides all we need, it is obtained by WildMidi_GetInfo().
2009-02-12wildmidi: new decoder plugin for MIDI filesMax Kellermann3-0/+112
2009-02-12fluidsynth: new decoder plugin for MIDI filesMax Kellermann3-0/+243
There are a few problems left in this plugin: - fluidsynth decodes in real time, while MPD prefers to buffer as quickly as possible; as a workaround, this plugin uses a timer object to synchronize with real-time playback - I don't know yet how fluidsynth tells me when the song has ended - the "soundfont" configuration setting is not yet documented, and it will likely change soon (in favor of a per-decoder configuration block)
2009-02-11sidplay: new decoder plugin for playing C64 SID filesMax Kellermann3-0/+171
2009-02-11decoder_thread: re-enable file decodersMax Kellermann1-1/+1
By accident, I committed a debug flag, which disallowed the decoder thread to play files locally. Undo this hunk.
2009-02-11ffmpeg: added TTA supportMax Kellermann1-0/+2
The ffmpeg library supports the "True Audio Codec". The entry in ffmpeg_suffixes was missing.
2009-02-11playlist: don't preserve "current" song after "random" toggleMax Kellermann1-2/+4
When MPD is not playing, it may still remember which is the "current" song. When you switch to "random" mode, MPD will always start playing exactly this song. This defies the goal of "random" mode a little. Clear the "current" song when MPD is not playing during the "random" mode switch.
2009-02-11audio: moved code to output_command.cMax Kellermann6-50/+122
The output_command library provides a command interface to the audio outputs. It assumes the input comes from an untrusted source (i.e. the client) and verifies all parameters.
2009-02-11audio_format: added validation functionsMax Kellermann2-6/+37
In addition to audio_format_valid(), provide functions which validate only one attribute of an audio_format. These functions are reused by audio_format_parse().
2009-02-11audio: replaced parseAudioConfig() with audio_format_parse()Max Kellermann6-63/+153
Added audio_format_parse() in a separate library, with a modern interface: return a GError instead of logging errors. This allows the caller to deal with the error.
2009-02-11Set boundPort to the current portnumber, so zeroconf announces the right ↵Qball Cow1-0/+1
port number
2009-02-10output_all: immediately reopen output on playMax Kellermann1-0/+13
When MPD explicitly starts playing, ignore the "REOPEN_AFTER" timeout. This timeout was useful when MPD attempted to reopen a failed device over and over, but it confuses users when they explicitly tell MPD to start playing, while MPD insists to wait for the 10 seconds to pass.
2009-02-10output_thread: moved code to ao_close()Max Kellermann1-12/+14
Merge some duplicate code into one function.
2009-02-10output_thread: leave the pause loop on failureMax Kellermann1-0/+1
When the pause() method fails, leave the pause loop, because calling pause() on a closed device is not allowed.
2009-02-10output_thread: consistently (de)initialize pcm_convert_stateMax Kellermann1-3/+5
Fix a memory leak: it was not guaranteed that pcm_convert_deinit() was called for each pcm_convert_init(). This patch always (de)initializes the pcm_convert library when the audio_output.open flag is flipped.
2009-02-10output_api: no CamelCase in struct audio_outputMax Kellermann4-26/+27
Renamed audio_output struct members.
2009-02-10shout_mp3: use audio_format_frame_size()Max Kellermann1-2/+1
Use audio_format_frame_size() instead of channels*audio_format_sample_size().
2009-02-10shout: pass void pointer to the encoderMax Kellermann3-5/+6
Pass the music chunk as a "const void *" to the encoder, instead of a "const char *". Actually, both encoders currently expect 16 bit samples, passing a 8-bit character is rather pointless.
2009-02-10shout_ogg: moved PCM conversion to a separate functionMax Kellermann1-12/+13
For simplification, moved the PCM conversion code to pcm16_to_ogg_buffer(). Work with a int16_t pointer instead of a char pointer.
2009-02-10ao: declare AoData.writeSize as size_tMax Kellermann1-3/+3
writeSize is a memory size and its type should thus be size_t. This allows us to remove two explicit casts.
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.