aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| | * Fix NDEBUG testAndreas Wiese2011-01-141-1/+1
| | | | | | | | | | | | | | | | | | | | | <stdbool.h> needs to be included unconditionally from definition of NDEBUG, since »bool« doesn't get defined otherwise. Signed-off-by: Andreas Wiese <aw-devel@meterriblecrew.net>
| * | output/httpd: include sys/socket.h for AF_UNIXUlrich Spörlein2011-03-092-0/+2
| | |
| * | configure.ac: fix bashism in tremor testUlrich Spörlein2011-03-092-1/+3
| | | | | | | | | | | | | | | | | | | | | This makes FreeBSD detect libogg correctly. The '==' operator is an undocumented GNU extension to test(1) and cannot be relied upon to exist and do the right thing. POSIX mandates string comparisons to be done using "test foo = bar".
| * | output/oss: disable 24 bit playback on FreeBSDMax Kellermann2011-02-282-0/+10
| | | | | | | | | | | | See code comment.
| * | output/oss: AFMT_S24_PACKED is little-endianMax Kellermann2011-02-282-0/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | According to the Solaris dsp manpage, AFMT_S24_PACKED is little-endian: http://download.oracle.com/docs/cd/E19963-01/821-1475/6nmf5baot/index.html The Minix soundcard.h header says the same.
| * | Makefile.am: distribute test/stdbin.hMax Kellermann2011-02-181-0/+7
| | |
| * | Makefile.am: compile test/run_encoder with ENCODER_CFLAGSMax Kellermann2011-02-131-0/+2
| | |
| * | general: whitespace cleanupThomas Jansen2011-02-099-29/+29
| | | | | | | | | | | | | | | Remove trailing whitespace found by this command: find -name '*.[ch]' | xargs grep "[[:space:]]$"
| * | output/httpd: initialize unflushed_inputThomas Jansen2011-02-092-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes the following valgrind warning occuring on the first call of httpd_output_read_page: ==20124== Conditional jump or move depends on uninitialised value(s) ==20124== at 0x425E65: httpd_output_read_page (httpd_output_plugin.c:240) ==20124== by 0x426087: httpd_output_open (httpd_output_plugin.c:279) ==20124== by 0x41D862: ao_open (output_plugin.h:206) ==20124== by 0x41E133: audio_output_task (output_thread.c:590)
| * | Set fadeout in gme_decoder_plugin. Due to the nature of the gme library,Tony Miller2011-02-032-0/+4
| | | | | | | | | | | | this needs to be done for the end of songs to be detected.
| * | NEWS: fix 0.16.1 release yearMax Kellermann2011-01-281-2/+2
| | |
| * | configure.ac: fix tremor configure testMax Kellermann2011-01-282-2/+10
| | | | | | | | | | | | | | | When the configure options were moved around for 0.16, the order was changed, and the Tremor check broke.
| * | Modify version string to post-release version 0.16.2~gitAvuton Olrich2011-01-092-1/+4
| | |
* | | RoarAudio output pluginHans-Kristian Arntzen2011-03-168-0/+537
| | |
* | | command: "update" and "rescan" need only "CONTROL" permissionMax Kellermann2011-02-272-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | From http://bugs.debian.org/513291 "In mpd.conf, the "admin" permission covers updating the db and killing mpd. "Since there are quite some usecases in which the user can upload music to the mpd's directory by means of anonymous FTP or so, it is desirable that any user may issue a db update, while killing the mpd should not be possible. "I'd suggest to remove the db update from the admin group and either add it to "control" or an own group."
* | | playlist_state: add option "restore_paused"Max Kellermann2011-02-235-0/+18
| | | | | | | | | | | | | | | When set, MPD will not auto-start playback on startup; it will be in "paused" state.
* | | playlist_state: declare local variable as enumMax Kellermann2011-02-231-1/+1
| | |
* | | configure.ac: disable -Wno-deprecated-declarationsMax Kellermann2011-02-231-1/+0
| | |
* | | configure.ac: protocol version 0.17Max Kellermann2011-02-221-1/+1
| | | | | | | | | | | | | | | The client-to-client protocol was added, and that justifies increasing the protocol version.
* | | output/shout: add possibility to set urlThomas Jansen2011-02-095-0/+21
| | | | | | | | | | | | Added a new optional parameter for the shout plugin called "url".
* | | configure.ac: fix copy&paste errorThomas Jansen2011-01-291-1/+1
| | |
* | | protocol: support client-to-client communicationMax Kellermann2011-01-2912-0/+681
| | |
* | | client_idle: export client_idle_add()Max Kellermann2011-01-292-5/+14
| | |
* | | client_idle: add header client_idle.hMax Kellermann2011-01-295-13/+45
| | |
* | | test/read_mixer: add workaround for missing RAOP symbolsMax Kellermann2011-01-291-0/+18
| | |
* | | copyright year 2011Max Kellermann2011-01-29443-445/+445
| | |
* | | input/curl: enable CURLOPT_NETRCIan Zimmerman2011-01-292-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I wanted mpd to play a mp3 stream from a music website. The stream is only available to subscribers, which restriction is enforced through normal http authentication. However, the URL I get from the website is not the final URL of the stream, but a generic URL which points to the real one through a redirect (code 301). Thus, I cannot predict the final URL, and so I cannot use the username:password hack to force the authentication, and mpd (libcurl on mpds behalf) fails to grab the stream. libcurl allows the option CURLOPT_NETRC to be set and then the credentials can be stored in the good old .netrc file (in this case it would be ~mpd/.netrc, of course). But mpd doesn't set this option. I think it should.
* | | output/raop: new output pluginDustin Puckett2011-01-288-0/+1691
| | | | | | | | | | | | Remote Audio Output Protocol (RAOP), for Apple devices.
* | | mpg123 decoder: implement seekingYuriy Kaminskiy2011-01-212-2/+16
| | |
* | | mpg123 decoder: report bitrateYuriy Kaminskiy2011-01-211-1/+25
| | |
* | | decoder_thread: fix assertion failure at song endMax Kellermann2011-01-161-2/+1
| | | | | | | | | | | | | | | | | | Don't finish the current command twice. This bug was never noticed, but was revealed by a new assertion check.
* | | doc: add a list of encoder pluginsMax Kellermann2011-01-101-0/+182
| | |
* | | output_control: document internal functionsMax Kellermann2011-01-101-0/+17
| | |
* | | output_control: move code to ao_lock_command()Max Kellermann2011-01-101-9/+15
| | |
* | | output_control: ao_command() calls ao_command_async()Max Kellermann2011-01-101-7/+6
| | | | | | | | | | | | Merge some code.
* | | update_remove: use plain GCond instead of notifyMax Kellermann2011-01-101-9/+16
| | | | | | | | | | | | GMutex/GCond guarantee that the access to removed_song is protected.
* | | include cleanupMax Kellermann2011-01-103-1/+4
| | |
* | | decoder_control: store GCond object, not a player_controlMax Kellermann2011-01-107-28/+20
| | | | | | | | | | | | | | | | | | Remove the decoder dependency on player_control. All player_control was needed for is to signal the player thread, and we can do that with a simple GCond as well.
* | | decoder_thread: move code to decoder_command_finished_locked()Max Kellermann2011-01-101-8/+19
| | |
* | | decoder_control: remove unused function dc_command_wait()Max Kellermann2011-01-102-11/+0
| | | | | | | | | | | | Only dc_command_wait_locked() is really being used.
* | | decoder_control: replace dc_init() with dc_new()Max Kellermann2011-01-103-15/+17
| | | | | | | | | | | | | | | dc_new() allocates the object and returns it. dc_free() frees it (replaces dc_deinit()).
* | | player_control: removed the global variable "pc"Max Kellermann2011-01-1042-572/+742
| | | | | | | | | | | | | | | | | | | | | Allocate a player_control object where needed, and pass it around. Each "client" object is associated with a "player_control" instance. This prepares multi-player support.
* | | dbUtils: don't use directoryAddSongToPlaylist() twiceMax Kellermann2011-01-101-1/+1
| | | | | | | | | | | | | | | In findAddInDirectory(), call playlist_append_song() directly, to have some more type checking.
* | | Merge commit 'release-0.16.1'Max Kellermann2011-01-103-18/+10
|\| | | | | | | | | | | | | | Conflicts: NEWS
| * | mpd version 0.16.1release-0.16.1Avuton Olrich2011-01-091-1/+1
| | |
| * | Makefile.am: resolve modplug vs. libsndfile cflags/headers conflictYuriy Kaminskiy2011-01-093-17/+9
| | | | | | | | | | | | | | | A bit of automake magic (see info automake "Per-Object Flags"). Compile-tested.
* | | input_init: add assertions on completeness of pluginsMax Kellermann2011-01-081-0/+6
| | |
* | | input/cdio_paranoia: add module nameMax Kellermann2011-01-081-0/+1
| | | | | | | | | | | | | | | Seems like we forgot to give this module a name... this can crash MPD on startup.
* | | Merge branch 'v0.16.x'Max Kellermann2011-01-0715-87/+115
|\| | | | | | | | | | | | | | | | | Conflicts: NEWS configure.ac
| * | Merge branch 'v0.15.x' into v0.16.xMax Kellermann2011-01-076-10/+25
| |\| | | | | | | | | | | | | | | | | | | Conflicts: NEWS configure.ac src/directory.h