aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
* 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.
* output/httpd: bind port when output is enabledMax Kellermann2009-11-05
| | | | | | Implement the methods enable() and disable(). Bind the HTTP port in the enable() method, but reject all incoming connections until the output is opened.
* output/jack: support mono inputMax Kellermann2009-11-05
| | | | | When MPD plays a mono song (audio_format.channel==1), connect only one source port to both destination ports.
* output/jack: clear ring buffers before activatingMax Kellermann2009-11-05
| | | | | | After playback has stopped, the ring buffers may still contain samples. These will be played when playback is started the next time. We should clear the buffers each time.
* output/jack: use jack_client_open() instead of jack_client_new()Max Kellermann2009-11-05
| | | | | | | | jack_client_new() is deprecated. This requires libjack 0.100 (released nearly 5 years ago). We havn't been testing older libjack versions anyway. As a side effect, there is the new option "autostart".
* output/jack: added option "client_name"Max Kellermann2009-11-05
| | | | | | Instead of using MPD's audio output name (setting "name"), use a separate configuration option. Change the default to "Music Player Daemon".
* update_walk: log unrecognized filesMax Kellermann2009-11-05
| | | | | | When a song's tags could not be loaded during database update, log this as a debug message. Same for a song being removed because its updated tag could not be read.
* database: rescan after metadata_to_use changeMax Kellermann2009-11-04
| | | | | | Store a list of supported tag items in the database. When loading a database which does not have a matching list, we must rescan in order to get the missing information.
* tag: added function tag_name_parse()Max Kellermann2009-11-04
| | | | Convert a string into a tag_type enum.
* song_save: explicitly parse the colonMax Kellermann2009-11-04
| | | | | Clear the colon. This simplifies all attribute parsers, because they can now use strcmp() instead of strncmp().
* decoder_thread: initialize decoder_control.quitMax Kellermann2009-11-04
| | | | If left uninitialized, then the decoder thread quits spuriously.