- 24 Sep, 2008 5 commits
-
-
Max Kellermann authored
To keep I/O nastiness and latencies away from the core, move the audio output code to a separate thread, one per output. The thread is created on demand, and currently runs until mpd exits.
-
Max Kellermann authored
With the macro NOTIFY_INITIALIZER, you can statically initialize a notify object.
-
Max Kellermann authored
Destroy the mutex when it is not used anymore.
-
Max Kellermann authored
When a mutex cannot be created, there must be something very wrong. Induce panic and abort MPD in this case.
-
Max Kellermann authored
"struct notify" is the same as the "Notify" typedef. It can be forward-declared and has a lower case name.
-
- 23 Sep, 2008 33 commits
-
-
Max Kellermann authored
-
Max Kellermann authored
With patch 8d2830b3, I broke "addid": it did not return the id of the new song, because of a typo in the return condition (== instead of !=).
-
Max Kellermann authored
chunk_length can be converted to a local variable, because it is always reset to 0 after it was used.
-
Max Kellermann authored
Since flacSendChunk() is a trivial function and is only used in one location, move the code there. The advantage is that calling decoder_data() directly returns the decoder_command value, so we can eliminate one decoder_get_command() call.
-
Max Kellermann authored
Support for bit rates except 16 bits (and 8 bits on little endian) has always been broken. Since we added optimized functions for 8, 16, 24/32 bits, we can remove the generic flac_convert() function. Instead of removing it, convert it to a wrapper function for flac_convert_*().
-
Max Kellermann authored
Same optimization for 8 and 32 bit files, like the previous patch for 16 bit. Along the way, this patch adds 24 bit FLAC support!
-
Max Kellermann authored
flac_convert_16() runs a lot faster than the generic (and quite buggy) function flac_convert(). flac_convert_16() is only used for non-stereo files, since there is already flac_convert_stereo16().
-
Max Kellermann authored
By mistake, I casted the sample value to uint16_t, which is wrong. This patch simplifies the code by using a int16_t pointer instead of casting to int16_t* every time.
-
Max Kellermann authored
There is still a lot of duplicated code in flac_plugin.c and oggflac_plugin.c. Move code from flac_plugin.c to _flac_common.c, and use the new function flac_common_write() also in oggflac_plugin.c, porting lots of optimizations over to it.
-
Max Kellermann authored
The previous patch on this topic was incomplete: it still added data->chunk_length when calling flac_convert(). Remove this, too.
-
Max Kellermann authored
The inline function audio_format_sample_size() calculates how many bytes each sample consumes. This function already takes into account that 24 bit samples are 4 bytes long, not 3.
-
Eric Wong authored
Instead of letting ALSA block for us (and potentially allowing something stupid on certain hardware or drivers), we do the sleeping ourselves. We calculate the sleep to be a fraction of period_time to avoid oversleeping (and thus audible skipping).
-
Max Kellermann authored
Add information about the M4 macro dir ./m4/ to both configure.ac and Makefile.am.
-
Eric Wong authored
Potentially broken free() implementations don't like it
-
Eric Wong authored
Use freeList() instead of free() to free all elements in the list.
-
Eric Wong authored
open(2) should only interrupt on "slow" devices, afaik... [mk: still using fopen()]
-
Eric Wong authored
-
Eric Wong authored
Any pruned files will be noticed during update and pruned from the live database, so this inefficient function can go away and never come back.
-
Eric Wong authored
A lot of the preparation was needed (and done in previous months) in making update thread-safe, but here it is. This was the first thing I made work inside a thread when I started mpd-uclinux many years ago, and also the last thing I've done in mainline mpd to work inside a thread, go figure.
-
Max Kellermann authored
Converted some more functions and their callers to enum update_return.
-
Eric Wong authored
This way we avoid having to document -1, 0, 1
-
Eric Wong authored
Pruning is very expensive and we won't need it in the future anyways. This brings startup back to previous speeds (before songvec changes).
-
Eric Wong authored
pthreads with our existing signal blocking/handling is broken, for now just sleep a bit in the child to prevent the CHLD handler from being called too early. Also, improve error reporting when handling SIGCHLD by storing the status to be called in the main task (which can be logged, since we can't do logging inside the sig handler).
-
Eric Wong authored
Our linked-list implementation is wasteful and the SongList isn't modified enough to benefit from being a linked list. So use a more compact array of song pointers which saves ~200K on a library with ~9K songs (on x86-32).
-
Eric Wong authored
LOC reduction and less noise makes things easier for tired old folks to follow.
-
Eric Wong authored
This allows us to avoid the nasty repetition in strncmp(foo, bar, strlen(foo)). We'll miss out on the compiler optimizing strlen() into sizeof() - 1 for string literals for this; but we don't use this it for performance-critical functions anyways...
-
Eric Wong authored
-
Eric Wong authored
Noticed-by: Courtney Cavin
-
Eric Wong authored
This should save a few thousand ops. Not worth it to malloc for such a small (3-words on 32-bit ARM and x86) structures. Signed-off-by: Eric Wong <normalperson@yhbt.net>
-
Eric Wong authored
-
Max Kellermann authored
It is legal to call wakeup_main_task() from within the main thread, e.g. from within a signal handler. Remove the assertion.
-
Max Kellermann authored
Remove duplicated code.
-
- 17 Sep, 2008 2 commits
-
-
Max Kellermann authored
The function decodeFirstFrame() allocates memory based on data from the mp3 header. This can make the buffer size allocation overflow, or lead to a DoS attack with a very large buffer. Cap this buffer at 8 million frames, which should really be enough for reasonable files.
-
Max Kellermann authored
The assertion on "!client_is_expired(client)" was wrong, because writing the command response may cause the client to become expired. Replace that assertion with a check.
-