aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
* fd_util: removed creat_cloexec()Max Kellermann2009-11-10
| | | | Add a "mode" argument to open_cloexec() instead.
* fd_util: added function pipe_cloexec()Max Kellermann2009-11-10
| | | | Same as pipe_cloexec_nonblock(), but doesn't set non-blocking mode.
* decoder_list: fix decoder_plugin_from_mime_type()Max Kellermann2009-11-09
| | | | | Copy'n'paste error: call decoder_plugin_supports_mime_type() instead of decoder_plugin_supports_suffix().
* output/alsa: fill period buffer with silence before drainingMax Kellermann2009-11-09
| | | | | | | | | ALSA passes full period buffers to the hardware. If an application doesn't finish writing a period, libasound will nonetheless send the partial buffer (with undefined trailing data). This causes noise at the end of playback. This patch attempts to track the current position within the period buffer, and generates silence at the end, before calling snd_pcm_drain().
* player_thread: drain audio outputs at the end of the playlistMax Kellermann2009-11-09
| | | | | | | | When there's no queued song, and the current one has finished playing, first make sure that the hardware outputs have really finished playing the last chunk: call the drain() method in all audio outputs. Without this patch, MPD stopped playback shortly before the ALSA sound card had finished playing.
* output_thread: added command DRAINMax Kellermann2009-11-09
| | | | | This command manually drains the hardware buffer. This is useful when the player thread want to make sure that everything has been played.
* player_control: removed the "volatile" attributeMax Kellermann2009-11-09
| | | | | Our use of the "volatile" keyword was wrong from the start, and now that we have proper locking, we can safely remove all of them.
* fd_util: added missing NONBLOCK fallback for socket()Max Kellermann2009-11-08
|
* fd_util: relicense under BSD 2-clauseMax Kellermann2009-11-08
| | | | | We'll copy this code to libmpdclient, and that's easier if its license is BSD.
* utils: removed function set_nonblocking()Max Kellermann2009-11-08
| | | | It's not used anymore, its features have been moved to fd_util.c.
* fd_util: added O_NONBLOCK functionsMax Kellermann2009-11-08
| | | | | Changed the wrappers for pipe(), socket(), accept(). On WIN32, this does not work for pipe().
* fd_util: fixed typo in API documentationMax Kellermann2009-11-08
|
* encoder/null: removed empty close() methodMax Kellermann2009-11-08
| | | | That's an optional method.
* encoder/null: removed unused audio_format attributeMax Kellermann2009-11-08
|
* fd_util: added API documentationMax Kellermann2009-11-08
|
* fd_util: unexport fd_set_cloexec()Max Kellermann2009-11-08
| | | | This function is used only internally.
* inotify: set close-on-exec flagMax Kellermann2009-11-07
| | | | Added wrapper for inotify_init1() to fd_util.c.
* set the close-on-exec flag on all file descriptorsMax Kellermann2009-11-07
| | | | | | | | | | | Added the "fd_util" library, which attempts to use the new thread-safe Linux system calls pipe2(), accept4() and the options O_CLOEXEC, SOCK_CLOEXEC. Without these, it falls back to FD_CLOEXEC, which is not thread safe. This is particularly important for the "pipe" output plugin (and others, such as JACK/PulseAudio), because we were heavily leaking file descriptors to child processes.
* decoder_thread: close input fileMax Kellermann2009-11-07
| | | | | An input_stream_close() call was missing after today's code reorganization.
* log: redirect stdout/stderr to /dev/null if syslog is usedMax Kellermann2009-11-07
| | | | | Don't hold a file descriptor on root's tty when syslog is used for logging.
* output/jack: added option "server_name"Max Kellermann2009-11-07
|
* output_all: automatically attempt to re-enable failed outputsMax Kellermann2009-11-07
| | | | | | | When an output's enable() method has failed, and playback starts, retry to enable it. Without this, the user may be confused, because he sees the device is "enabled" but cannot use it, and currently there is no error message in the log.
* output/httpd: moved code to httpd_output_bind()Max Kellermann2009-11-07
|
* exclude: use GPatternSpec instead of fnmatch()Max Kellermann2009-11-07
| | | | GLib's version of fnmatch() is more portable.
* added missing source file decoder_print.cMax Kellermann2009-11-07
|
* database: I/O error handling in db_save()Max Kellermann2009-11-07
| | | | Check ferror() instead of the fprintf() return value.
* update_walk: log new container filesMax Kellermann2009-11-07
|
* command: added command "decoders"Max Kellermann2009-11-07
| | | | | This command prints a list of decoder plugins and their suffixes / MIME types.
* decoder_list: moved print_all_decoders() to cmdline.cMax Kellermann2009-11-07
| | | | | | Export the decoder_plugins array. The function decoder_plugin_print_all_decoders() it is UI specific and should not live in this backend library.
* decoder_thread: check for STOP before calling the pluginMax Kellermann2009-11-07
| | | | | Before calling the plugin's decode method, we should ensure that we didn't receive a STOP command during initialization.
* decoder_thread: moved code to decoder_input_stream_open()Max Kellermann2009-11-07
| | | | | | This function opens the stream and waits for it to become ready; meanwhile it checks for STOP commands. It is code moved from decoder_run_stream().
* decoder_thread: added local variable "dc" in decoder_run_file()Max Kellermann2009-11-07
| | | | Simplify the expressions.
* output/jack: free source port names on exitMax Kellermann2009-11-07
| | | | Make valgrind happy.
* decoder_list: pass previous plugin pointer to lookup functionsMax Kellermann2009-11-07
| | | | Remove the static integer hack, that's not thread safe and sucks.
* decoder_list: moved suffix/mime_type checks to decoder_plugin.cMax Kellermann2009-11-07
|
* decoder_list: back to NULL terminated listMax Kellermann2009-11-07
| | | | A NULL terminated list is easier to iterate.
* decoder_thread: open input stream on demandMax Kellermann2009-11-07
| | | | | | Moved the global input stream opener to decoder_run_stream(). decoder_run_file() now opens the input stream each time a plugin provides a stream decoder method.
* decoder_thread: moved plugin loops to separate functionsMax Kellermann2009-11-07
| | | | Tame the large decoder_run_song() function.
* uri: added function attributesMax Kellermann2009-11-07
| | | | Let gcc optimize a little bit more.
* utils: renamed stringFoundInStringArray()Max Kellermann2009-11-06
| | | | | No CamelCase. Use bool instead of int. Make both arguments mandatory.
* output/jack: dynamic source port listMax Kellermann2009-11-06
| | | | | | Same as the previous patch: create up to 16 configured source ports. The plugin tries to do its best at guessing the right combination for the given input file, the number of source and destination ports.
* output/jack: dynamic destination port listMax Kellermann2009-11-06
| | | | | Support up to 16 configured destination ports, that should really be enough for everybody.
* output/jack: renamed option "ports" to "destination_ports"Max Kellermann2009-11-06
| | | | Be more clear which kind of port should be configured here.
* output/jack: renamed "output ports" to "destination ports"Max Kellermann2009-11-06
| | | | Use the same name as in the libjack API documentation.
* playlist_queue: use playlist plugins to load from playlist_directoryMax Kellermann2009-11-06
| | | | | | | | This patch allows the client to load a playlist file from the playlist directory with a plugin. This can be used with the "load" command, but the client has to pass the file name including the suffix. We will probably use the music directory in the future, to support playlist files inside the music directory.
* playlist_queue: moved code to playlist_open_remote_into_queue()Max Kellermann2009-11-06
|
* playlist_list: added function playlist_list_open_path()Max Kellermann2009-11-06
| | | | Added an interface for loading playlists from a local file.
* playlist: added extm3u pluginMax Kellermann2009-11-06
| | | | | This new plugin parses extm3u files. Files without the "#EXTM3U" header are still parsed by the plain old "m3u" plugin.
* playlist/{m3u,pls}: removed URI checksMax Kellermann2009-11-06
| | | | The caller is responsible for verifying the song URI.
* playlist_list: rewind the stream before opening the playlistMax Kellermann2009-11-06
| | | | | | If one plugin has failed to open the playlist, it may have consumed a part of the stream already. This may lead to a failure in all following plugins. Fix: rewind the stream before each open() call.