- 03 Nov, 2008 18 commits
-
-
Max Kellermann authored
dc.error wasn't updated when the input stream failed to initialize.
-
Max Kellermann authored
The function curl_multi_info_read() provides access to errors from the curl easy interface.
-
Max Kellermann authored
-
Max Kellermann authored
Removed the "volatile" attributes from several variables which are not important for synchronization.
-
Max Kellermann authored
Renamed variables and internal functions. Most of the player_control.h API remains in CamelCase for now.
-
Max Kellermann authored
-
Max Kellermann authored
The variable "next_song" is already protected by a memory barrier. "total_time" is not important for synchronization, and we don't need "volatile" here.
-
Max Kellermann authored
Renamed variables and functions.
-
Max Kellermann authored
Before passing the first chunk to the audio output device, send the current song's tag.
-
Max Kellermann authored
If an input stream provides tags (e.g. from an icecast server), send them in the decoder_data() and decoder_tag() methods. Removed the according code from the mp3 and oggvorbis plugins - decoders shouldn't have to care about stream tags. This patch also adds the missing decoder_tag() invocation to the mp3 plugin.
-
Max Kellermann authored
tag_has_type() checks whether the tag contains one or more items with the specified type.
-
Max Kellermann authored
Renamed variables.
-
Avuton Olrich authored
The configure flag "--disable-oggflac" disabled only liboggflac.
-
Max Kellermann authored
The AC_SUBST() call was missing in the previous patch.
-
Max Kellermann authored
MPD used to have a copy of the mp4ff library. Since that has been removed, AAC suport was disabled when there was no libmp4ff. Separate the libmp4ff test, and enable AAC support no matter if libmp4ff is available.
-
Max Kellermann authored
When using autodetection, AlsaData.device wasn't properly initialized with NULL. This broke autodetection randomly.
-
Max Kellermann authored
The variables mod_mikModInitiated and mod_mikModInitError were used to control lazy initialization, but they are superfluous now.
-
Max Kellermann authored
The "mod" decoder plugin was being initialized lazily, but was deinitialized unconditionally. That led to segmentation faults. Convert mod_initMikMod() to be the global module initialization method. The MPD core should care about lazy initialization.
-
- 02 Nov, 2008 22 commits
-
-
Max Kellermann authored
Nobody should call playAudio() with an empty chunk. Add some assertions on that.
-
Max Kellermann authored
An empty chunk may happen when it only contains a tag, but no PCM data. Don't call playAudio() then.
-
Max Kellermann authored
ffmpeg_tag() deleted the tag when ffmpeg_helper() returned success. The return value was interpreted incorrectly, it should return the tag on success.
-
Max Kellermann authored
Cleaning up artifacts from a merge gone wrong. Also remove the ringbuf library, which is not being used.
-
Max Kellermann authored
Non-local songs used to have no tags. If the decoder sends us a tag, we should incorporate it into the song struct. This way, clients can always show the correct song name (if provided by the server).
-
Max Kellermann authored
Always remember which song is currently being sent to the audio device.
-
Max Kellermann authored
Rewinding the stream here is not useful, but may consume valuable resources (and time).
-
Max Kellermann authored
The try_decode() method may have read some data from the stream, which is now lost. To make this data available to other methods, get it back by rewinding the input stream after each try_decode() invocation. The ogg and wavpack plugins did this manually and inconsistently; this code can now be removed.
-
Max Kellermann authored
-
Max Kellermann authored
If a chunk contains a tag, send it to the audio output device. Few output plugins support this, e.g. shout has support for sending tags.
-
Max Kellermann authored
If the source chunk has a tag, merge it into the destination chunk. The source chunk gets deleted after that, and this is our last chance to grab the tag.
-
Max Kellermann authored
decoder_read() checks the decoder command. Without this patch, the ffmpeg plugin could become unresponsive.
-
Max Kellermann authored
Ogg and ffmpeg detection was disabled when the stream was not seekable, because the detection was too expensive. Since the curl input stream can now rewind the stream cheaply, we can re-enable detection on streams.
-
Max Kellermann authored
During codec detection, the beginning of the stream is consumed. This is a common operation, which takes a lot of time when handling remote resources. To optimize this, remember the first 64 kB of a stream. This way, we can rewind the stream without actually fetching the start of the stream again.
-
Max Kellermann authored
Provide an API for submitting additional tags from the stream.
-
Max Kellermann authored
Avoid while(true) loops, and convert them to a loop with a proper condition.
-
Max Kellermann authored
Since the aac and mod plugins have told MPD that they cannot seek, MPD will never send a SEEK command to them. Removed the SEEK comand checks from both plugins.
-
Max Kellermann authored
Don't pass the "seekable" flag with every decoder_data() invocation. Since that flag won't change within the file, it is enough to pass it to decoder_initialized() once per file.
-
Max Kellermann authored
Each music chunk can now carry a tag object. Decoder plugins which support it (e.g. oggvorbis) may use this to inject decoded tags into their output.
-
Max Kellermann authored
These two functions will care about memory allocation and deallocation in the future.
-
Max Kellermann authored
Add doxygen compatible comments.
-
Max Kellermann authored
The "volatile" keyword doesn't help here, because we have proper memory barriers, but it disables some optimizations. Remove it.
-