aboutsummaryrefslogtreecommitdiffstats
path: root/src (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-07-15state_file: don't rewind the stream while reading the state fileMax Kellermann7-62/+69
Parse the state file line by line, let each subsystem probe a line. Only the playlist_state code gets the FILE pointer to read the following lines.
2009-07-15state_file: simplified state_file_finish()Max Kellermann1-4/+6
Return early from the destructor function when there is no configured state file. Don't check the timer, don't call g_free(NULL).
2009-07-15state_file: fixed debug messagesMax Kellermann1-1/+3
Print "Loading" instead of "Saving" in state_file_read(). Added debug message to state_file_write().
2009-07-15modplug: get track lengthSerge Ziryukin1-1/+1
2009-07-14encoder/twolame: new encoder plugin based on libtwolameMax Kellermann2-0/+303
This encoder plugin is a replacement for the LAME encoder plugin for those who prefer a "free" (non-patent encumbered) encoder library. Most of the plugin source code is copied from the LAME encoder plugin, since the LAME and TwoLAME APIs are nearly the same.
2009-07-14playlist: no CamelCaseMax Kellermann10-86/+95
2009-07-14playlist: removed {save,read}PlaylistState()Max Kellermann3-17/+3
Those were only wrappers for playlist_state_{save,restore}(). Since sf_callbacks has been removed, we can call the latter functions directly.
2009-07-14state_file: eliminated the sf_callbacks arrayMax Kellermann1-17/+9
There are very few callbacks, and they are not meant to be pluggable. Let's eliminate the array and call the load/save functions manually.
2009-07-14output/httpd: removed duplicate sys/types.h includeMax Kellermann1-4/+0
The first patch by Patrick didn't work, because his "#ifdef HAVE_OSX" line would have required config.h.
2009-07-09flac: load external cue sheet when no internal oneSerge Ziryukin1-0/+14
External cue sheet file for "file.flac" should be named as "file.flac.cue".
2009-07-09Implement ArtistSort tagBart Nagel3-1/+9
2009-07-07decoder/sndfile: new decoder plugin based on libsndfileMax Kellermann2-0/+250
2009-07-07tag_id3: revised "performer" tag supportMax Kellermann1-4/+2
According to the ID3 2.4 documentation, "TOPE" is "Original artist/performer", not "performer". Removed "TOPE" support. Instead, map TPE3 ("Conductor/performer refinement") and TPE4 ("Interpreted, remixed, or otherwise modified by") to "performer".
2009-07-07tag: added tag "AlbumArtistSort"Max Kellermann3-1/+4
The tag_id3.c library supports both the documented "TSO2" tag, and the inofficial TXXX/ALBUMARTISTSORT. The Vorbis/FLAC decoder automatically supports the new tag, without further change.
2009-07-06main: fix "unused local variable" warningMax Kellermann1-0/+2
The variables "success" and "error" are only used if SQLite support is enabled.
2009-07-06player_thread: log played song in "default" log modeSébastien Houzé1-0/+6
Very few lines to log a song URI when it has been entirely played. Then mpd logs can be parsed to do statistics.
2009-07-06decoder/flac: fix assertion failure in tag_free() callMax Kellermann1-2/+1
Initialize flac_data.tag right after flac_data_init(). This way, the "goto fail" won't jump to the point where tag_free(NULL) can be called.
2009-07-06output: use the software mixer pluginMax Kellermann7-121/+60
Do all the software volume stuff inside each output thread, not in the player thread. This allows one software mixer per output device, and also allows the user to configure the mixer type (hardware or software) for each audio output. This moves the global "mixer_type" setting into the "audio_output" section, deprecating the "mixer_enabled" flag.
2009-07-06mixer_all: added mixer_all_set_software_volume()Max Kellermann2-0/+73
The special-purpose function is used for saving/restore the software volume control to the state file.
2009-07-06mixer/software: new mixer which controls filter/volumeMax Kellermann4-0/+159
This mixer plugin may be used instead of the traditional global software mixer. It integrates with the "volume" filter plugin, and can control the software volume of an audio output which has no hardware mixer.
2009-07-06volume: moved range check to handle_setvol()Max Kellermann5-19/+21
Converted the range checks in volume_level_change() to assertions. Changed all volume types to "unsigned", expect for those which must be able to indicate error (-1).
2009-07-06volume, mixer: removed the "relative" parameterMax Kellermann5-41/+26
Since the "volume" command has been removed, nobody uses relative volumes anymore.
2009-07-06command: removed the "volume" commandMax Kellermann1-22/+1
This command has been deprecated more than 5 years ago (0.10.0). Its implementation is a kludge, let's remove it now.
2009-07-06output_init: moved the "convert" filter at the endMax Kellermann1-5/+9
The "convert" filter must be the last filter in the chain. Ensure that by doing its initialization at the very end of audio_output_init().
2009-07-06output_init: merge two local string variablesMax Kellermann1-11/+9
2009-07-06output_init: parse audio format earlierMax Kellermann1-12/+10
2009-07-06output/httpd: include sys/types.hMax Kellermann1-0/+1
On Mac OS X, the httpd plugin cannot be compiled, because OS X's system headers do nto include sys/types.h, although they use u_int32_t.
2009-07-06song: initialize mtime in song_alloc()Max Kellermann1-0/+1
2009-07-06song_print: check gmtime_r()'s return valueMax Kellermann1-7/+11
When song->mtime was not initialized properly, it was revealed that strftime() might crash when gmtime_r() returns NULL due to an invalid time_t input value.
2009-07-06song: initialize mtime in song_alloc()Max Kellermann1-0/+1
2009-07-06output: attach a filter chain to each audio_outputMax Kellermann4-18/+107
This patch adds initial filter support for audio outputs. Each audio output gets a "filter" attribute, which is used by ao_play_chunk(). The PCM conversion is now performed by convert_filter_plugin. audio_output.convert_state has been removed.
2009-07-06filter/convert: new filter which calls pcm_convert() on demandMax Kellermann3-0/+191
2009-07-06filter/chain: new library for creating a chain of filtersMax Kellermann4-0/+227
2009-07-06output: added command REOPENMax Kellermann3-14/+33
REOPEN is called when the input audio format changes. The output thread may be reconfigure the PCM converter.
2009-07-06output_thread: moved OPEN handler to ao_open()Max Kellermann1-43/+48
2009-07-06mixer_type: moved volume_mixer_type from volume.cMax Kellermann4-25/+107
2009-07-06conf: use bp->value, not param->valueMax Kellermann1-1/+1
A recent change to the boolean parser introduced a bug: instead of using the block_param's value with get_bool(), we passed param->value (which is always NULL in this case).
2009-07-05output_init: moved mixer instantiation to separate functionMax Kellermann1-5/+14
2009-07-05filter/volume: don't use volume_level_get()Max Kellermann2-6/+67
Added public methods to get and set the current volume.
2009-07-05idle: added "update" eventMax Kellermann3-0/+9
Some clients have visual feedback for "database update is running". Using the "database" idle event is unreliable, because it is only emitted when the database was actually modified. This patch adds the "update" event, which is emitted when the update is started, and again when the update is finished, disregarding whether it has been modified.
2009-07-05song_print: send song modification time to clientMax Kellermann1-0/+17
Added the response line "Last-Modified", which sends the modification time in ISO 8601. The same was already implemented for playlists.
2009-07-05song_save: use GError for error handlingMax Kellermann3-8/+36
2009-07-05song_save: no CamelCaseMax Kellermann3-14/+14
Renamed functions.
2009-07-05sticker: use GError for error handlingMax Kellermann3-17/+45
2009-07-05log: fix double free() bug during shutdownMax Kellermann1-6/+2
Don't free an internal configuration value in log_init(). Call config_get_path() instead of manually calling parsePath().
2009-07-05conf: registered option "filter"Max Kellermann1-0/+1
Add this option to the user's manual.
2009-07-03volume: removed unused macrosMax Kellermann1-2/+0
Removed VOLUME_MIXER_OSS and VOLUME_MIXER_ALSA.
2009-07-03filter: added "volume" pluginMax Kellermann3-0/+138
The "volume" filter plugin will replace the current software volume code. One "volume" filter may be attached to each output device. This will allow the user to use hardware mixers for some devices, and software mixers for other devices at the same time. Currently, neither the filter API nor the "volume" plugin is integrated into MPD.
2009-07-03filter: added new plugin API for filtersMax Kellermann6-0/+455
The filter API allows us to implement software volume as a pluggable filter, and we will be able to integrate libraries like SoX.
2009-07-03conf: added config_quark()Max Kellermann1-0/+10
This GQuark will be used for GErrors related to malformed configuration.