aboutsummaryrefslogtreecommitdiffstats
path: root/src (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-10-23audio: allow 24 and 8 bit outputMax Kellermann1-4/+2
I added 24 bit support a while ago, but it wasn't possible to force 24 bit output. Add 24 and 8 bit to the list of allowed sample sizes. Although 8 bit audio isn't as widely used as 24 bit, there is no reason to exclude it.
2008-10-23output_buffer: don't split framesMax Kellermann3-1/+16
Splitting a frame between two buffer chunks causes distortion in the output. MPD used to assume that the chunk size 1020 would never cause splitted frames, but that isn't the case for 24 bit stereo (127.5 frames), and even less for files with even more channels.
2008-10-23stored_playlist: don't map files outside the databaseMax Kellermann1-2/+3
Don't attempt to map paths which are already absolute with map_song_fs(): check with song_in_database() instead of song_is_file().
2008-10-23stored_playlist: emit idle event on deleteMax Kellermann1-0/+1
The "rm" command did not send notifications to idle clients. Add it.
2008-10-23stored_playlist: renamed and moved spl_delete() to stored_playlist.cMax Kellermann5-17/+19
The function deletePlaylist() shouldn't be in playlist.c.
2008-10-23stored_playlist: spl_load() returns GPtrArrayMax Kellermann3-146/+75
Don't use our deprecated linked list library, use GLib's GPtrArray instead.
2008-10-23command: check over/underflows in check_int()Max Kellermann1-2/+13
The "long" result of strtol() was implicitly casted down to a 32 bit integer. Add some range checking instead.
2008-10-23command: added check_unsigned() / check_bool()Max Kellermann1-13/+57
Many command arguments must not be negative; add a separate parser/checker function for that. For the same reason, add check_bool(). This eliminates two strange special cases handlers from check_int().
2008-10-23stored_playlist: unsigned index argumentsMax Kellermann2-6/+6
Pass index arguments as unsigned integers. They must not be negative, and even if some caller accidently passes -1, it won't pass the bound checks (since it's now 2**32-1).
2008-10-23playlist: unsigned integersMax Kellermann3-150/+131
There are some integers which have a "magic" -1 value which means "undefined" or "nothing". All others can be converted to unsigned, since they must not contain a negative number.
2008-10-22command: use the bool datatype instead of intMax Kellermann2-51/+54
Instead of returning 0 for success and -1 for failure, return true or false. This seems more natural.
2008-10-22command: converted COMMAND_RETURN_* macros to enumMax Kellermann2-168/+173
Also add names for "error" and "ok". I don't like passing anonymous integer codes around. This is not yet complete: lots of functions (e.g. in playlist.c) follow the same convention of -1/0, and these have to be adapted, too.
2008-10-22command: replaced "goto" with "break"Max Kellermann1-2/+2
http://xkcd.com/292/
2008-10-22command: no CamelCaseMax Kellermann4-238/+260
Eliminate CamelCase in all public and static functions.
2008-10-22command: removed CommandHandlerFunction typedefMax Kellermann1-3/+1
The typedef CommandHandlerFunction is only used once. Move its type into the command struct.
2008-10-22ack: converted ACK_ERROR_* macros to enumMax Kellermann3-16/+18
2008-10-22stored_playlist: send timestampsMax Kellermann1-0/+8
Send last modification timestamps to the client. This allows the client to see when another client modifies a stored playlist.
2008-10-22command: added command "listplaylists"Max Kellermann1-0/+17
"listplaylists" returns a list of all stored playlists. This command seems more elaborate than listing them below "lsinfo".
2008-10-22command: added print_spl_list()Max Kellermann3-22/+18
The function print_spl_list() replaces the old function lsPlaylists() from ls.c.
2008-10-22stored_playlist: added spl_list()Max Kellermann3-73/+106
spl_list() provides an interface for enumerating all stored playlists. This separates the internal playlist logic from the protocol specific function lsPlaylists().
2008-10-22stored_playlist: spl_append_uri() returns enum playlist_resultMax Kellermann2-5/+4
The return value of spl_append_uri() was somewhat buggy: some branches returned ACK_* values, and some an enum playlist_result. Unify this.
2008-10-22stored_playlist: de-CamelCase moved functionMax Kellermann3-6/+6
Rename addToStoredPlaylist() to spl_append_uri(), and remove the clearStoredPlaylist() macro.
2008-10-22stored_playlist: moved functions from playlist.cMax Kellermann4-32/+26
The two functions clearStoredPlaylist() and addToStoredPlaylist() don't belong into playlist.c. clearStoredPlaylist() was a wrapper for spl_clear(), and is converted into a CPP macro for now.
2008-10-22stored_playlist: no CamelCaseMax Kellermann5-34/+39
Renamed all public functions, prefix is "spl_".
2008-10-22renamed storedPlaylist.c to stored_playlist.cMax Kellermann6-8/+8
No CamelCase in file names.
2008-10-22command: added "commands" array instead of registering manuallyMax Kellermann1-193/+145
The list of commands is known at compile time. Instead of creating a linked list on startup, we can just register all commands in a static sorted array.
2008-10-22command: make command pointers constantMax Kellermann1-12/+13
The command pointers which are passed around aren't being modified - in fact, no command pointer must be modified once it has been added to the commandList.
2008-10-22command: renamed CommandEntry to struct commandMax Kellermann1-12/+10
No CamelCase and no struct typedefs.
2008-10-21pcm_utils: added pcm_convert_init()Max Kellermann4-2/+9
Instead of manually calling memset(0) on the pcm_convert_state struct, client code should use a library function from pcm_utils.c. This way, we can change the semantics of the struct easily.
2008-10-21pcm_utils: no CamelCaseMax Kellermann5-88/+89
Renamed all functions which were still in CamelCase.
2008-10-21pcm_utils: renamed ConvState to struct pcm_convert_stateMax Kellermann5-9/+12
No CamelCase, and a struct instead of a typedef.
2008-10-21ffmpeg: don't pass pointer as hexadecimal stringMax Kellermann1-20/+27
Casting a pointer to some sort of integer and formatting it into a string isn't valid. A pointer derived from this hex string won't work reliably. Since ffmpeg doesn't provide a nice API for passing our pointer, we have to think of a different hack: ffmpeg passes the exact URL pointer to mpdurl_open(), and we can make this string part of a struct. This reduces the problem to casting the string back to the struct. This is still a workaround, but this is "sort of portable", unless the ffmpeg people start messing with the URL pointer (which would be valid according to the API definition).
2008-10-21ffmpeg: detect which ffmpeg headers should be includedMax Kellermann1-0/+6
Since ffmpeg svn r12865, you have to include libavcodec/avcodec.h instead of avcodec.h. This cannot be checked at compile time, instead we have to add a check to configure.ac. Viliam's original ffmpeg plugin was based on the newer ffmpeg library, while my Debian installation had the older version. My attempt to correct his include statements wasn't correct after all.
2008-10-21update: fix multiple deletes from *vec iteratorsEric Wong2-2/+10
{song,dir}vec_for_each each failed to gracefully handle deleted files when iterating through. While we were thread-safe, we were not safe within the calling thread. If a callback we passed caused sv->nr to shring, our index would still increment; causing files to stay in the database. A way to test this is to remove 10 or so contiguous songs from a >10 song directory.
2008-10-21dirvec: introduce locking for all iteratorsEric Wong1-6/+25
Like the songvec nr_lock, only one lock is used for all traversals since they're rarely changed. This only projects traversals, but not the individual structures themselves.
2008-10-21{dir,song}vec: these structs are constEric Wong2-2/+2
We definitely don't modify them here.
2008-10-21dirvec: add dirvec_for_each iteratorEric Wong2-0/+19
This will make it easier to introduce locking
2008-10-20path: removed pathcpy_trunc()Max Kellermann3-24/+2
There was only one user of pathcpy_trunc(), which can be eliminated.
2008-10-20path: replaced parent_path() with g_path_get_dirname()Max Kellermann3-42/+7
Again, GLib's version is more robust than ours.
2008-10-20path: replaced mpd_basename() with g_path_get_basename()Max Kellermann6-29/+30
GLib's g_path_get_basename() is much more reliable than mpd_basename(). The latter could be tricked into an assertion failure.
2008-10-20signal_check.c: don't use leading underscoresMax Kellermann1-8/+8
Identifiers with two leading underscores are reserved for the C compiler's internal use. Don't use them in the source.
2008-10-19mapper: don't return database path with leading slashMax Kellermann1-1/+1
Due to an off-by-one bug in map_fs_to_utf8(), the function returned database paths with a leading slash.
2008-10-18listen: fix "struct ucred" checkAndrzej Rybczak1-3/+3
The macro name is HAVE_STRUCT_UCRED, not HAVE_UCRED.
2008-10-18input_stream: don't declare method typedefsMax Kellermann1-14/+8
The typedefs aren't using by anybody but struct input_stream. Remove them and declare the method type within struct input_stream.
2008-10-18ffmpeg: make internal functions staticMax Kellermann1-22/+12
The mpdurl_* code is internal, don't expose them. Also don't initialize struct members with NULL.
2008-10-17client: converted permissions to unsignedMax Kellermann5-22/+22
client->permission is a bit set, and should be unsigned.
2008-10-17client: eliminate variable "left" in client_write()Max Kellermann1-5/+5
Reduce two temporary variables to only one.
2008-10-17client: fixed send bufferMax Kellermann1-49/+4
There is no sense in using the kernel's send buffer size (SO_SNDBUF) for MPD's send buffer. Convert it into a static buffer of 4 kB.
2008-10-17client: removed CLIENT_MAX_BUFFER_LENGTHMax Kellermann1-3/+2
Use a literal in the struct declaration, and sizeof(client->buffer) everywhere else. Also shrink the buffer from 40 kB to 4 kB. The buffer must only be large enough to hold one line of input, and 4 kB is still more than enough.
2008-10-17client: added assertions on the buffer pointersMax Kellermann1-0/+6
The buffer pointers must not exceed the buffer size.