aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* listen: implement systemd socket activationMax Kellermann2012-02-13
|
* server_socket: add method _add_fd()Max Kellermann2012-02-13
|
* server_socket: move code to set_fd()Max Kellermann2012-02-13
|
* zeroconf: skip initialisation if there is no portMax Kellermann2012-02-13
|
* command: new command "config"Max Kellermann2012-02-13
|
* mapper: add mapper_get_music_directory()Max Kellermann2012-02-13
| | | | Shortcut for map_directory_fs(db_get_root()).
* database: add "pure" attributesMax Kellermann2012-02-13
|
* database: remove obsolete prototype db_check()Max Kellermann2012-02-13
|
* mapper: add "pure" attributesMax Kellermann2012-02-13
|
* client: add function client_is_local()Max Kellermann2012-02-13
|
* client: add "pure" attributesMax Kellermann2012-02-13
|
* command: never print "bad name" in response to "load"Max Kellermann2012-02-13
| | | | Work around a confusing error message.
* playlist_vector: require database lock for all functionsMax Kellermann2012-02-13
|
* playlist_vector: add new playlist to the end of the listMax Kellermann2012-02-13
| | | | Avoid reversing the order after every update.
* directory.h: move DIRECTORY_DIR to directory_save.cMax Kellermann2012-02-13
|
* Merge branch 'v0.16.x'Max Kellermann2012-02-13
|\ | | | | | | | | | | | | | | Conflicts: NEWS configure.ac src/decoder/ffmpeg_decoder_plugin.c test/read_tags.c
| * decoder/ffmpeg: read the "year" tagMax Kellermann2012-02-13
| | | | | | | | | | | | This was disabled when compiled with a new ffmpeg version. Older ffmpeg versions used it explicitly, while newer ones may pass it through from the codec.
| * test/run_decoder: initialize GThreadMax Kellermann2012-02-13
| |
| * test/read_tags: call g_thread_init()Max Kellermann2012-02-13
| |
| * decoder_api: check state before emitting initial seek commandMax Kellermann2012-02-13
| | | | | | | | This fixes seeking in the vorbis decoder during MPD startup.
| * pcm_buffer: pcm_buffer_get() never returns NULLMax Kellermann2012-02-13
| | | | | | | | | | | | This fixes a bug when libsamplerate returns an empty buffer for a very small input buffer. The caller thinks this is an error, bug there is no GError object.
| * output/winmm: remove pointless NULL checkMax Kellermann2012-02-13
| | | | | | | | pcm_buffer_get() cannot ever return NULL.
| * Modify version string to post-release version 0.16.8~gitAvuton Olrich2012-02-04
| |
* | directory: fix reverse order of child directoriestreblid2012-02-13
| | | | | | | | | | Directories are loaded in reverse order when MPD starts. Only fixed when doing a rescan.
* | playlist/flac: delete this obsolete pluginMax Kellermann2012-02-12
| | | | | | | | | | The FLAC playlist plugin has been superseded by the "embcue" playlist plugin, which can read the embedded CUE sheets of all formats.
* | playlist/embcue: ignore "FILE", always point to container song fileMax Kellermann2012-02-12
| | | | | | | | | | An embedded CUE sheet must always point to the song file it is contained in.
* | song: add function song_replace_uri()Max Kellermann2012-02-12
| |
* | db_print: print extra "playlist" object for embedded CUE sheetsMax Kellermann2012-02-12
| | | | | | | | | | | | This finally enables the new embedded CUE sheet code: when a song file contains a playlist, it is printed in the "lsinfo" output, so clients get to know about this.
* | song_update: update the "has_playlist" flagMax Kellermann2012-02-12
| |
* | tag_handler: add new handler that updates has_playlistMax Kellermann2012-02-12
| |
* | tag: add attribute "has_playlist"Max Kellermann2012-02-12
| |
* | tag_{ape,id3}: remove the _load() functionsMax Kellermann2012-02-12
| | | | | | | | Use _scan() instead, to have more control.
* | playlist_vector: use the list_head libraryMax Kellermann2012-02-12
| |
* | update_remove: add header update_remove.hMax Kellermann2012-02-12
| |
* | update_walk: move code to update_db.cMax Kellermann2012-02-12
| |
* | update_walk: move code to update_io.cMax Kellermann2012-02-12
| |
* | update_walk: move code to update_song_file()Max Kellermann2012-02-12
| |
* | playlist/embcue: new plugin for reading embedded cue sheetsMax Kellermann2012-02-12
| | | | | | | | | | Parses CUE data from the "CUESHEET" tag. Needs further integration in the update thread.
* | decoder/wavpack: bigger tag value bufferMax Kellermann2012-02-12
| | | | | | | | Prepare for big CUESHEET tags.
* | tag_handler: handle arbitrary name/value pairsMax Kellermann2012-02-12
| | | | | | | | | | The new method pair() receives an arbitrary name/value pair. Support for this is being added to a few decoder plugins.
* | decoder/wavpack: move code to wavpack_scan_tag_item()Max Kellermann2012-02-11
| | | | | | | | | | Remove clutter from wavpack_scan_file(), and use a (large) fixed buffer for the tag item.
* | decoder/wavpack: use the tag_table libraryMax Kellermann2012-02-11
| |
* | decoder/{mikmod,fluidsynth,mp4ff}: adapt to tag_handler APIMax Kellermann2012-02-11
| | | | | | | | Fixes build regression.
* | decoder_plugin: scan tags with callback tableMax Kellermann2012-02-11
| | | | | | | | | | Pass a callback table to scan_file() and scan_stream(), instead of returning a tag object.
* | decoder/gme: convert runtime check to assertionMax Kellermann2012-02-11
| | | | | | | | | | When gme_track_info() returns with success, then the gme_info_t pointer must be set.
* | decoder/ffmpeg: use the tag_table libraryMax Kellermann2012-02-11
| |
* | decoder/ffmpeg: move code to ffmpeg_metadata.cMax Kellermann2012-02-11
| |
* | decoder/ffmpeg: remove AV_VERSION_INT definitionMax Kellermann2012-02-11
| | | | | | | | All supported ffmpeg/libav versions have this.
* | decoder/flac: check for errors only after _process_single()Max Kellermann2012-02-11
| | | | | | | | The only other libFLAC call (seek) does not produce fatal errors.
* | decoder/flac: symmetric FLAC__stream_decoder_finish() callsMax Kellermann2012-02-11
| | | | | | | | | | Call it in the function that also invokved FLAC__stream_decoder_init_*().