aboutsummaryrefslogtreecommitdiffstats
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
| * log: fix double free() bug during shutdownMax Kellermann2009-07-051-6/+2
| | | | | | | | | | Don't free an internal configuration value in log_init(). Call config_get_path() instead of manually calling parsePath().
| * database: fixed NULL pointer dereference after charset changeMax Kellermann2009-06-301-4/+5
| | | | | | | | | | | | | | When the filesystem_charset is changed in mpd.conf, MPD should discard the old database. In this error branch, MPD did not fill the GError object properly, and logged a warning message instead, which caused a segmentation fault.
| * output_thread: don't play next chunk after command==PAUSEMax Kellermann2009-06-291-1/+5
| | | | | | | | | | When the PAUSE loop ends, re-check the next command before calling ao_play() again.
| * output_all: don't resume playback when stopping during pauseMax Kellermann2009-06-291-2/+0
| | | | | | | | | | | | | | | | When MPD was paused, and the client sent the "stop" command (or "clear"), a glitch caused MPD to continue playback for a split second. This was because audio_output_all_cancel() calls audio_output_all_update(), which reopens all output devices, and re-ignites the playback loop.
* | mapper: use g_file_test() instead of stat()Max Kellermann2009-07-151-20/+2
| | | | | | | | The GLib functions are more portable.
* | mapper: pass music and playlist directory to mapper_init()Max Kellermann2009-07-153-19/+23
| | | | | | | | Added another glue function in main().
* | main: moved complex initialization code to glue functionsMax Kellermann2009-07-151-17/+36
| | | | | | | | | | | | The glue_*() functions act as a glue between MPD's main() function and its libraries. They handle disabled features, and pass validated configuration options.
* | main: renamed openDB() to glue_db_init_and_load()Max Kellermann2009-07-151-2/+2
| | | | | | | | No CamelCase.
* | cmdline: renamed option "--stdout" to "--stderr"Max Kellermann2009-07-151-0/+2
| | | | | | | | | | | | Since version 0.14, MPD has been logging to standard error instead of standard output. The option name should reflect that. The old option continues to work, we will remove it in a future MPD release.
* | cmdline: no CamelCaseMax Kellermann2009-07-153-18/+18
| | | | | | | | Renamed type, variables and functions.
* | conf: added the gcc "const" attribute to some functionsMax Kellermann2009-07-151-0/+13
| | | | | | | | | | | | Add the "const" attribute to functions when their return value only depends on parameters. This allows gcc to eliminate some function calls.
* | state_file: don't rewind the stream while reading the state fileMax Kellermann2009-07-157-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.
* | state_file: simplified state_file_finish()Max Kellermann2009-07-151-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).
* | state_file: fixed debug messagesMax Kellermann2009-07-151-1/+3
| | | | | | | | | | Print "Loading" instead of "Saving" in state_file_read(). Added debug message to state_file_write().
* | modplug: get track lengthSerge Ziryukin2009-07-151-1/+1
| |
* | encoder/twolame: new encoder plugin based on libtwolameMax Kellermann2009-07-142-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.
* | playlist: no CamelCaseMax Kellermann2009-07-1410-86/+95
| |
* | playlist: removed {save,read}PlaylistState()Max Kellermann2009-07-143-17/+3
| | | | | | | | | | | | Those were only wrappers for playlist_state_{save,restore}(). Since sf_callbacks has been removed, we can call the latter functions directly.
* | state_file: eliminated the sf_callbacks arrayMax Kellermann2009-07-141-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.
* | flac: load external cue sheet when no internal oneSerge Ziryukin2009-07-091-0/+14
| | | | | | | | External cue sheet file for "file.flac" should be named as "file.flac.cue".
* | Implement ArtistSort tagBart Nagel2009-07-093-1/+9
| |
* | decoder/sndfile: new decoder plugin based on libsndfileMax Kellermann2009-07-072-0/+250
| |
* | tag_id3: revised "performer" tag supportMax Kellermann2009-07-071-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".
* | tag: added tag "AlbumArtistSort"Max Kellermann2009-07-073-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.
* | main: fix "unused local variable" warningMax Kellermann2009-07-061-0/+2
| | | | | | | | | | The variables "success" and "error" are only used if SQLite support is enabled.
* | player_thread: log played song in "default" log modeSébastien Houzé2009-07-061-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.
* | output: use the software mixer pluginMax Kellermann2009-07-067-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.
* | mixer_all: added mixer_all_set_software_volume()Max Kellermann2009-07-062-0/+73
| | | | | | | | | | The special-purpose function is used for saving/restore the software volume control to the state file.
* | mixer/software: new mixer which controls filter/volumeMax Kellermann2009-07-064-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.
* | volume: moved range check to handle_setvol()Max Kellermann2009-07-065-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).
* | volume, mixer: removed the "relative" parameterMax Kellermann2009-07-065-41/+26
| | | | | | | | | | Since the "volume" command has been removed, nobody uses relative volumes anymore.
* | command: removed the "volume" commandMax Kellermann2009-07-061-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.
* | output_init: moved the "convert" filter at the endMax Kellermann2009-07-061-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().
* | output_init: merge two local string variablesMax Kellermann2009-07-061-11/+9
| |
* | output_init: parse audio format earlierMax Kellermann2009-07-061-12/+10
| |
* | song_print: check gmtime_r()'s return valueMax Kellermann2009-07-061-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.
* | song: initialize mtime in song_alloc()Max Kellermann2009-07-061-0/+1
| |
* | output: attach a filter chain to each audio_outputMax Kellermann2009-07-064-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.
* | filter/convert: new filter which calls pcm_convert() on demandMax Kellermann2009-07-063-0/+191
| |
* | filter/chain: new library for creating a chain of filtersMax Kellermann2009-07-064-0/+227
| |
* | output: added command REOPENMax Kellermann2009-07-063-14/+33
| | | | | | | | | | REOPEN is called when the input audio format changes. The output thread may be reconfigure the PCM converter.
* | output_thread: moved OPEN handler to ao_open()Max Kellermann2009-07-061-43/+48
| |
* | mixer_type: moved volume_mixer_type from volume.cMax Kellermann2009-07-064-25/+107
| |
* | conf: use bp->value, not param->valueMax Kellermann2009-07-061-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).
* | output_init: moved mixer instantiation to separate functionMax Kellermann2009-07-051-5/+14
| |
* | filter/volume: don't use volume_level_get()Max Kellermann2009-07-052-6/+67
| | | | | | | | Added public methods to get and set the current volume.
* | idle: added "update" eventMax Kellermann2009-07-053-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.
* | song_print: send song modification time to clientMax Kellermann2009-07-051-0/+17
| | | | | | | | | | Added the response line "Last-Modified", which sends the modification time in ISO 8601. The same was already implemented for playlists.
* | song_save: use GError for error handlingMax Kellermann2009-07-053-8/+36
| |
* | song_save: no CamelCaseMax Kellermann2009-07-053-14/+14
| | | | | | | | Renamed functions.