aboutsummaryrefslogtreecommitdiffstats
path: root/src (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-10-15song: added song_in_database()Max Kellermann2-9/+14
Some functions assume that a song is not in the database when it is a remote song. Based on that, they decide whether they are responsible for freeing the song struct. Add a special function which checks whether a song is in the database (currently equal to song_is_file()).
2008-10-15listen, client: enable SO_PASSCRED, get client's uidMax Kellermann3-3/+41
Enable authentication over unix sockets. Store the client's uid in the client struct.
2008-10-15update: don't skip hidden filesMax Kellermann1-3/+5
Skip only the special directory entries "." and "..", don't skip all other "hidden" files.
2008-10-15shout: check for vorbisenc libraryMax Kellermann1-2/+2
The switch from ogg.m4 to pkg-config intentionally disabled libvorbisenc. Enable it when shout_ogg is used.
2008-10-15fixing several imports to work via pkg-configEnrico Weigelt1-3/+10
This patch fixes several imports to use pkg-config instead of certain esoteric tests.
2008-10-15locate: use g_utf8_casefold() instead of string_toupper()Max Kellermann5-30/+16
string_toupper() and strDupToUpper() were not able to deal with character sets other than US-ASCII. Use GLib's g_utf8_casefold() for strings.
2008-10-15mapper: moved musicDir initialization from path.cMax Kellermann5-31/+52
Moved the musicDir variable and its initialization code from path.c to mapper.c.
2008-10-15path: allow starting MPD with non-existing music directoryMax Kellermann1-6/+6
When the music directory is not mounted yet, let MPD start anyway.
2008-10-15path, tag_id3: use g_convert() instead of charConv.cMax Kellermann5-234/+40
GLib provides an easier API for character set conversion than iconv(). Use g_convert() / g_convert_with_fallback() for all character conversions. We should optimize the path.h API later to return a newly allocated buffer, so we can just pass GLib's return value.
2008-10-15use GLibMax Kellermann1-1/+4
GLib is a nice and portable utility library. We are going to use it from now on, and eliminate a lot of duplicated code from MPD. Why invent the wheel again and again?
2008-10-15tag_id3: fix indentationMax Kellermann1-28/+28
Indentation was broken in tag_id3.c: it used 4 spaces instead of tabs.
2008-10-15idle: client command "noidle" aborts idleMax Kellermann1-3/+21
2008-10-15client: optimized client_input_received()Max Kellermann1-38/+44
Use memchr() instead of manually traversing the input buffer. Update the client's properties after all commands have been processed. Check for buffer overflow once.
2008-10-15listen: pass protocol family to establishListen()Max Kellermann1-27/+8
The caller already knows the protocol family, and we can eliminate the complicated switch statement in establishListen() if we just pass this information. This seems more robust.
2008-10-15listen: use getaddrinfo() instead of gethostbyname()Max Kellermann1-31/+22
getaddrinfo() is more robust and has proper IPv6 support. The new code tries to bind to all IP addresses returned by getaddrinfo().
2008-10-14command: added command "idle"Max Kellermann13-3/+284
"idle" waits until something noteworthy happens on the server, e.g. song change, playlist modified, database updated. This allows clients to keep up to date without polling.
2008-10-14alsa: added #ifdefs around SND_PCM_NO_AUTO_xxxMax Kellermann1-0/+6
These macros are not available in older libasound versions (1.0.13 fails, 1.0.16 is ok). Ignore the configuration if the constants are not defined.
2008-10-14playlist: don't use uninitialized local variable (typo)Max Kellermann1-1/+1
Instead of the uninitialized local variable "s", I should have used "uri".
2008-10-14oss: use unsigned integer for ioctl constantsMax Kellermann1-12/+12
The OSS constants overflow a signed integer, use unsigned instead.
2008-10-14oss: convert several macros to enumMax Kellermann1-19/+25
C enums are nicer than CPP macros.
2008-10-14alsa: optionally disable resampling and othersMax Kellermann1-1/+15
Added mpd.conf options for disabling automatic resamling, sample format and channel conversion. This way, users may choose to override ALSA's automatic resampling, and use libsamplerate instead.
2008-10-14changed package name to "mpd-mk", updated version numberMax Kellermann1-1/+2
This git branch has become a real MPD fork now. Time to change the package name to the code name "mpd-mk". Set the version number to "0.14~git" to mark this as a non-released version.
2008-10-14update: don't follow relative symlinksMax Kellermann1-1/+44
Don't follow relative symlinks which point into the music directory. This allows you to organize music with symbolic links, without MPD managing separate copies of each song.
2008-10-14ls: removed myStat(), isFile(), isDir()Max Kellermann2-53/+0
The mapper code has replaced these functions.
2008-10-14mapper: new song-to-filesystem mapper libraryMax Kellermann9-53/+241
The mapper library maps directory and song objects to file system paths. With this central library, the code mixture in path.c should be cleaned up, and we will be able to add neat features like aliasing.
2008-10-14playlist: moved code to playlist_save.cMax Kellermann5-26/+89
playlist_print_song() and playlist_print_uri() handle charset conversion and (optional) music directory prefixing.
2008-10-14song: pass const song pointer to song_get_url()Max Kellermann2-2/+2
song_get_url() doesn't modify the song object.
2008-10-14{dir,song}vec: fix off-by-one errors in {dir,song}vec_deleteEric Wong2-10/+9
Found by Valgrind while looking for another bug... Hmm.. I should really just make this code generic since they're duplicated...
2008-10-13song: stat file in song_file_update(), don't use isMusic()Max Kellermann3-20/+8
isMusic() used to be a very inefficient function: with every invocation, it did another stat() on the specified file. There is only one caller, do the stat() there manually and use hasMusicSuffix() instead of isMusic().
2008-10-13update: always look up parent directory in updatePath()Max Kellermann1-20/+10
By always creating the parent directory, we can use delete_name_in() without further lookups. The parents which may non exist will be pruned later. An update request for a non-existing or empty directory should be quite unusual, so this doesn't add any measurable overhead.
2008-10-13update: pass base file name to updateInDirectory()Max Kellermann1-9/+24
In order to optimize buffer usage, pass only the base file name to updateInDirectory(). This way, updateInDirectory() may choose when to allocate a larger buffer for the full path.
2008-10-13update: moved code to make_subdir()Max Kellermann1-4/+13
2008-10-13update: added delete_name_in()Max Kellermann1-1/+18
delete_name_in() is similar to delete_path(), but it does not need to look up the parent directory.
2008-10-13dirvec: dirvec_find() compares basenameMax Kellermann1-1/+4
It is invalid to pass a path with the wrong dirname to dirvec_find(). To be able to find a subdirectory only by its basename, compare only the basename of both paths.
2008-10-13directory: added directory_get_name()Max Kellermann2-0/+13
directory_get_name() returns the base name of the directory.
2008-10-13playlist: don't use isPlaylist() in deletePlaylist()Max Kellermann3-22/+3
The only caller of deletePlaylist() appends PLAYLIST_FILE_SUFFIX, so we can be sure it's already there. We don't need to stat the file, since unlink() does all the checking.
2008-10-13audio: don't clear input_audio_format on openAudioDevice(NULL)Max Kellermann1-3/+1
Commit 80a2c937 broke resume after pause: it cleared the input_audio_format when it attempted to simplify a complicated expression. Don't clear it, just assign input_audio_format if a new format was specified.
2008-10-13directory: pass const pointers to inline functionsMax Kellermann1-2/+2
The inline functions directory_is_empty() and directory_get_path() don't modify the object - pass constant object pointers to them.
2008-10-13songvec: avoid holding nr_lock during free(3)Eric Wong1-3/+5
We only need to lock sv->nr changes to prevent traversals ( why it's called "nr_lock"). free(3) is a "slow" function on my system; so we can avoid unnecessarily holding a lock long for longer than needed.
2008-10-13update: allow music_root updates to be queuedEric Wong1-3/+2
Previously only updates with subdirectories being specified could be queued. No harm in queueing full updates.
2008-10-13directory: use mpd_sizeof_str_flex_array for path, tooEric Wong2-7/+8
This way we avoid unnecessary heap allocations.
2008-10-13tag_item: avoid wasting space when struct is unpackableEric Wong2-2/+4
Not all compilers support struct packing, and those that don't shouldn't be punished for it.
2008-10-13song: song_get_url: fix "/" prefix for songs in music_rootEric Wong1-1/+1
2008-10-12shout: make the protocol configurableAaron McEwan1-2/+25
Added configuration parameter "protocol" which lets the user choose from 3 shout protocols. This adds support for real shoutcast servers.
2008-10-12shout: use strcmp() instead of strncasecmp()Max Kellermann1-2/+2
Case insensitivity isn't helpful, and comparing only the first 3 bytes of a configured value may encourage users to supply wrong or misleading values.
2008-10-12alsa: fall back to 16 bit outputMax Kellermann1-0/+11
If the sample format isn't supported by the device (i.e. 24 bit on low-end sound chips), fall back to 16 bit output. There is code in pcm_utils.c which converts PCM data to 16 bit.
2008-10-12pcm_utils: support any number of channels in pcm_sizeOfConvBuffer()Max Kellermann1-11/+2
When calculating the conversion buffer size, don't hard-code the formulas for only mono<->stereo.
2008-10-12pcm_utils: support converting N channels to stereoMax Kellermann1-0/+26
Convert any number of channels to stereo. In fact, this isn't really stereo, it's rater mono blown up to stereo. This patch should only make it possible to play 5.1 files at all; "real" conversion to stereo should be implemented, but for now, this is better than nothing.
2008-10-12pcm_utils: pass output channel count to pcm_convertChannels()Max Kellermann1-35/+22
In order to be able to deal with non-trivial conversions, pcm_convertChannels() needs to know both the input and the output channel count. Simplify buffer allocation in that function.
2008-10-12pcm_utils: moved code from pcm_convertChannels() to separate functionsMax Kellermann1-20/+32
Moved code from pcm_convertChannels() to pcm_convert_channels_1_to_2() and pcm_convert_channels_2_to_1(). Improved the quality of pcm_convert_channels_2_to_1() by calculating the arithmetic mean value of both samples.