Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2009-10-28 | decoder/ffmpeg: removed the "author" vs "artist" workaround | Max Kellermann | 1 | -2/+1 | |
libavformat gives us the song artist in the "author" field. Since we use av_metadata_conv(), we don't need to check for "artist". | |||||
2009-10-27 | include pulse/version.h for PA_CHECK_VERSION | Alam Arias | 1 | -0/+2 | |
2009-10-26 | encoder: renaming none_encoder to null_encoder | Viliam Mateicka | 2 | -27/+27 | |
2009-10-26 | mpd.conf: new bool config value for enabling/disabling inotify update | Viliam Mateicka | 3 | -2/+8 | |
2009-10-24 | encoder: new encoder plugin which just pass data through | Viliam Mateicka | 2 | -0/+126 | |
2009-10-24 | add --disable-inotify for configure to disable inotify when autodetected | Viliam Mateicka | 1 | -0/+7 | |
2009-10-23 | output/jack: implement methods enable()/disable() | Max Kellermann | 1 | -16/+24 | |
Don't connect to JACK before MPD has daemonized. | |||||
2009-10-23 | output/pulse: implement methods enable()/disable() | Max Kellermann | 1 | -9/+35 | |
Don't connect to PulseAudio before MPD has daemonized. | |||||
2009-10-23 | output_plugin: added methods enable() and disable() | Max Kellermann | 15 | -1/+213 | |
With these methods, an output plugin can allocate some global resources only if it is actually enabled. The method enable() is called after daemonization, which allows for more sophisticated resource allocation during that method. | |||||
2009-10-23 | output/pulse: call mixer on state changes | Max Kellermann | 4 | -129/+196 | |
Don't let the mixer plugin "override" the libpulse callbacks. Instead, add a "mixer" attribute to the pulse_output struct, and call the mixer on all interesting events. | |||||
2009-10-23 | mixer_control: don't close the mixer if set_volume() fails | Max Kellermann | 1 | -2/+0 | |
A mixer is useful enough if it can be read. Setting it may be found unavailable at runtime. | |||||
2009-10-23 | mixer_plugin: get_volume() may return -1 if unavailable | Max Kellermann | 2 | -4/+8 | |
If the method get_volume() returns -1 and no error object is set, then the volume is currently unavailable, but the mixer should not be closed immediately. | |||||
2009-10-23 | mixer_control: allow methods "open" and "close" to be NULL | Max Kellermann | 2 | -20/+5 | |
It's possible to have a mixer implementation which does not explicitly need the methods open() and close(). | |||||
2009-10-22 | mixer/pulse: don't get volume if stream is not yet ready | Max Kellermann | 1 | -3/+3 | |
Moved the check from pulse_mixer_open() to pulse_mixer_update(). | |||||
2009-10-22 | output/fifo: renamed source to fifo_output_plugin.c | Max Kellermann | 1 | -3/+3 | |
2009-10-22 | audio: removed function finishAudioConfig() | Max Kellermann | 3 | -8/+0 | |
There's no point in clearing the audio format before exiting. | |||||
2009-10-22 | main: put #ifdef inside winsock_init() | Max Kellermann | 1 | -5/+2 | |
This way, the function call in the main() function does not need another pair of #ifdef/#endif. | |||||
2009-10-22 | permission: improve const-correctness | SF Markus Elfring | 2 | -2/+2 | |
2009-10-21 | playlist: new ASX playlist plugin | Max Kellermann | 3 | -0/+340 | |
Based on the XSPF playlist plugin. | |||||
2009-10-21 | playlist/xspf: ignore text in root, playlist, tracklist | Max Kellermann | 1 | -0/+2 | |
Added a missing "break". | |||||
2009-10-21 | audio_format: wildcards allowed in audio_format configuration | Max Kellermann | 7 | -22/+92 | |
An asterisk means that this attribute should not be enforced, and stays whatever it used to be. This way, some configuration values work like masks. | |||||
2009-10-21 | audio_parser: moved code to separate functions | Max Kellermann | 1 | -29/+78 | |
2009-10-21 | output: convert config_audio_format to an audio_format struct | Max Kellermann | 3 | -14/+16 | |
This allows more sophisticated audio format selection. | |||||
2009-10-21 | audio_parser: renamed parameter "error" to "error_r" | Max Kellermann | 2 | -10/+12 | |
It's a double pointer. | |||||
2009-10-21 | audio: removed config_param.value NULL check | Max Kellermann | 1 | -1/+1 | |
The value is always non-NULL. | |||||
2009-10-21 | output/jack: make ringbuffer_size a size_t | Max Kellermann | 1 | -1/+1 | |
2009-10-21 | output/jack: connect to server on MPD startup | Max Kellermann | 1 | -69/+119 | |
.. and keep up the JACK connection while MPD runs. Allocate the ring buffers on the first open, and free them at MPD exit. | |||||
2009-10-21 | output/jack: removed the empty "cancel" method | Max Kellermann | 1 | -6/+0 | |
JACK doesn't need cancel() because it won't do much anyway. Buffers are small. | |||||
2009-10-21 | output/jack: renamed parameter "error" to "error_r" | Max Kellermann | 1 | -12/+12 | |
It's a double pointer. | |||||
2009-10-21 | output/jack: implement the "pause" method | Max Kellermann | 1 | -0/+41 | |
Don't disconnect from JACK during pause. | |||||
2009-10-21 | output/jack: renamed source to jack_output_plugin.c | Max Kellermann | 2 | -4/+4 | |
2009-10-21 | pulse: code rewrite using the asynchronous libpulse API | Max Kellermann | 3 | -282/+765 | |
This is a complete rewrite of the PulseAudio output plugin. It uses the asynchronous API, which gives us more control over everything. Additionally, it connects to the PulseAudio server on startup, and keeps this connection up while MPD runs. During pause, instead of closing the stream, it enables "cork". | |||||
2009-10-21 | mixer_plugin: pass audio_output pointer to mixer_plugin.init() | Max Kellermann | 8 | -12/+20 | |
This allows the mixer object to access its associated audio output object. | |||||
2009-10-21 | volume: added PIPE_EVENT_MIXER | Max Kellermann | 2 | -0/+19 | |
Flush the hardware volume cache, and send the MIXER idle event. This allows mixer plugins to detect volume changes. | |||||
2009-10-20 | mixer_plugin: use GError for error handling | Max Kellermann | 10 | -79/+189 | |
2009-10-20 | output_init: renamed parameter "error" to "error_r" | Max Kellermann | 2 | -8/+8 | |
It's a double pointer. | |||||
2009-10-20 | mixer/{oss,alsa}: renamed the mixer source files | Max Kellermann | 5 | -12/+14 | |
2009-10-20 | output/pulse: renamed context to "Music Player Daemon" | Max Kellermann | 1 | -1/+1 | |
This looks nicer in the PulseAudio manager than just "mpd". | |||||
2009-10-20 | pulse: renamed source files | Max Kellermann | 4 | -8/+10 | |
2009-10-20 | pulse: announce "media.role=music" | Max Kellermann | 1 | -0/+2 | |
This allows PulseAudio to do some advanced tweaks. | |||||
2009-10-20 | main: call g_set_application_name() | Max Kellermann | 1 | -0/+2 | |
I'm not sure about the advantages of calling g_set_application_name(), because I don't use a task manager (except for ps and kill), but it sure doesn't hurt. | |||||
2009-10-20 | mapper, update, ...: use g_build_filename(), G_DIR_SEPARATOR, ... | Max Kellermann | 7 | -11/+10 | |
Try to be as portable as possible, use GLib path name functions and macros. | |||||
2009-10-18 | decoder/vorbis: avoid unused symbol warnings from vorbisfile.h | Serge Ziryukin | 1 | -0/+1 | |
svn r13289 of libvorbis introduced static callbacks (like OV_CALLBACKS_DEFAULT) defined in "vorbisfile.h" header. First released version with this change is libvorbis-1.2.2. In libversion-1.2.3 OV_EXCLUDE_STATIC_CALLBACKS define was added to avoid warnings about unused static callbacks. Information on the OV_EXCLUDE_STATIC_CALLBACKS can be found in http://svn.xiph.org/trunk/vorbis/CHANGES. | |||||
2009-10-18 | command: omitting the range end is possible | Max Kellermann | 1 | -1/+4 | |
When the range end is missing, then the maximum possible value is assumed. | |||||
2009-10-18 | command: use GLib limit macros in check_range() | Max Kellermann | 1 | -10/+10 | |
These are portable and don't require limits.h. | |||||
2009-10-17 | command: allow changing replay gain mode on-the-fly | Max Kellermann | 3 | -1/+63 | |
The new command "replay_gain_mode" allows the user to switch the replay gain mode on-the-fly. No more mpd.conf editing. | |||||
2009-10-17 | replay_gain: moved mode parser to replay_gain_set_mode_string() | Max Kellermann | 1 | -6/+19 | |
2009-10-17 | replay_gain: added setting "replaygain off" | Max Kellermann | 1 | -1/+1 | |
There was no setting for disabling replay gain. It was off when the "replaygain" setting was not there. | |||||
2009-10-17 | replay_gain: read configuration even when replay gain is disabled | Max Kellermann | 1 | -4/+3 | |
It will be possible to enable replay gain at runtime even when it is disabled in the configuration file. This patch enables the preamp settings in this case. | |||||
2009-10-16 | update: obey .mpdignore files | Max Kellermann | 3 | -2/+202 | |