- 19 Mar, 2012 3 commits
-
-
Max Kellermann authored
Some compilers are very picky, but we really aren't interested in the return value.
-
Jonathan Neuschäfer authored
This might break older versions, I didn't test.
-
Max Kellermann authored
Fixes endless loop when the last line of a text file was not terminated (bug 3470).
-
- 13 Feb, 2012 6 commits
-
-
Max Kellermann authored
This was disabled when compiled with a new ffmpeg version. Older ffmpeg versions used it explicitly, while newer ones may pass it through from the codec.
-
Max Kellermann authored
-
Max Kellermann authored
-
Max Kellermann authored
This fixes seeking in the vorbis decoder during MPD startup.
-
Max Kellermann authored
This fixes a bug when libsamplerate returns an empty buffer for a very small input buffer. The caller thinks this is an error, bug there is no GError object.
-
Max Kellermann authored
pcm_buffer_get() cannot ever return NULL.
-
- 04 Feb, 2012 4 commits
-
-
Avuton Olrich authored
-
Avuton Olrich authored
-
Max Kellermann authored
-
Max Kellermann authored
-
- 03 Feb, 2012 7 commits
-
-
Max Kellermann authored
Implements support for libavcodec 0.9, which removes the compatibility macros SAMPLE_FMT_*
-
Max Kellermann authored
Minor optimisation.
-
Max Kellermann authored
Use the tag_item_names table to look up the names of all MPD tags, and remove the duplicate entries from ffmpeg_tag_maps.
-
Max Kellermann authored
Allow using this function without the ffmpeg_tag_map struct.
-
Max Kellermann authored
Eliminate some duplicate code.
-
Max Kellermann authored
Move the #ifdefs out of _copy_metadata().
-
Max Kellermann authored
No interest in this return value.
-
- 12 Jan, 2012 2 commits
-
-
Max Kellermann authored
Require libavutil 51.5.0.
-
Max Kellermann authored
This function was added when the libavformat version was 53.2.0, but the actual release 53.2.0 did not have it.
-
- 04 Jan, 2012 9 commits
-
-
Max Kellermann authored
-
Max Kellermann authored
-
Max Kellermann authored
Needed for av_rescale_q() in ffmpeg 0.8.
-
Max Kellermann authored
-
Max Kellermann authored
avcodec_open() has been deprecated.
-
Max Kellermann authored
It's a no-op and deprecated.
-
Max Kellermann authored
-
Max Kellermann authored
URLContext is deprecated.
-
Max Kellermann authored
Support ancient ffmpeg versions.
-
- 24 Dec, 2011 2 commits
-
-
Max Kellermann authored
When we don't have enough data, generate some silence, hoping the input buffer will fill soon. Reducing the render buffer size is not legal.
-
Max Kellermann authored
Blocking inside the render callback is forbidden, and this sleep call didn't make any sense.
-
- 21 Dec, 2011 1 commit
-
-
Maarten Sebregts authored
Moving songs using either 'move' or 'moveid' to position -1 (after the current song) would fail for a song which is just before the current song. This patch corrects the check to see if the current song is in the range to be moved. Since the range is from `start` up to `end` (exclusive) the check was incorrect, but is now fixed.
-
- 13 Dec, 2011 5 commits
-
-
Max Kellermann authored
The OpenAL specification says that AL_FORMAT_MONO8 and AL_FORMAT_STEREO8 expect unsigned 8 bit samples, but MPD uses unsigned samples.
-
Max Kellermann authored
The local variable was already divided by 1000, and the return value was being divided by 1000 again - doh! This caused delays in the httpd output plugin that were too small by three orders of magnitude, and the buffer was filled too quickly.
-
Max Kellermann authored
-
Max Kellermann authored
Replace -I with -isystem in GLIB_CFLAGS.
-
Max Kellermann authored
This workaround leads to an infinite loop instead of an assertion failure, but hey, now it's libmp4ff's fault.
-
- 12 Dec, 2011 1 commit
-
-
Avuton Olrich authored
-