aboutsummaryrefslogtreecommitdiffstats
path: root/src (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-07-19Add audio_format_init() functionDavid Woodhouse15-53/+39
It makes no difference right now, but we're about to add an endianness flag and will want to make sure it's correctly initialised every time.
2009-07-19ape: added protection against large memory allocationsMax Kellermann1-0/+3
The function tag_ape_load() retrieves a 32 bit unsigned integer from the input file, and passes it to g_malloc(). This is dangerous, and may be used for a denial of service attack on MPD.
2009-07-19tag_ape: removed redundant length checkMax Kellermann1-3/+4
Extend the tagLen check after reading it. Removed the second (redundant) check after the subtraction.
2009-07-19client: return "enum command_return" instead of "int"Max Kellermann1-16/+24
Several functions work with the wrong return type, this patch fixes them.
2009-07-19removed buffer2array.cMax Kellermann2-164/+0
2009-07-19command: use the tokenizer libraryMax Kellermann1-4/+50
2009-07-19conf: use the tokenizer libraryMax Kellermann1-62/+82
2009-07-19tokenizer: new library replacing buffer2array()Max Kellermann2-0/+235
The new code is more robust and more flexible. It provides detailed error information in GError objects.
2009-07-19daemon: Moved empty Windows version functions to header fileMichal Nazarewicz2-21/+36
On Windows only daemonize_close_stdin() function does something. Other functions are either empty or generate an error. Those have been moved to header file and declared static inline so compiler can remove the call all together.
2009-07-19conf: replaced gcc "const" attribute with "pure"Michal Nazarewicz1-13/+22
The functions were not "const" (they examined values pointed by arguments passed to them, quoting gcc's doc: "Note that a function that has pointer arguments and examines the data pointed to must _not_ be declared 'const'.") but rather "pure" and still not all of them. Note also, that even some of the functions declared "pure" are not pure, however, due to reasons stated in source code the attribute has been kept.
2009-07-19daemon: added "group" configuration optionMichal Nazarewicz5-18/+35
The "group" configuration option is similar to "user" as it sets user set what group MPD shall run as. With "user" option, MPD changed GID to the GID of the user, however, more control could be desired. Moreover, the patch changes the way of checking whether no setuid(2)/setgid(2) is required -- previously user names were compered, now UID and GIDs are compered (ie. the one we already have (getuid(2)/getgid(2)) with the one we want to change to).
2009-07-18ape: check the tag size (fixes integer underflow)Max Kellermann1-1/+1
The expression "tagLen - size > 0" may result in an integer underflow and a buffer overflow, when "size" is larger than "tagLen". "size" is read from the input file, and must not be trusted. This patch changes the expression to "tagLen > size", which is a lot safer.
2009-07-15mapper: use g_file_test() instead of stat()Max Kellermann1-20/+2
The GLib functions are more portable.
2009-07-15mapper: pass music and playlist directory to mapper_init()Max Kellermann3-19/+23
Added another glue function in main().
2009-07-15main: moved complex initialization code to glue functionsMax Kellermann1-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.
2009-07-15main: renamed openDB() to glue_db_init_and_load()Max Kellermann1-2/+2
No CamelCase.
2009-07-15cmdline: renamed option "--stdout" to "--stderr"Max Kellermann1-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.
2009-07-15cmdline: no CamelCaseMax Kellermann3-18/+18
Renamed type, variables and functions.
2009-07-15conf: added the gcc "const" attribute to some functionsMax Kellermann1-0/+13
Add the "const" attribute to functions when their return value only depends on parameters. This allows gcc to eliminate some function calls.
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.