| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
| |
This plugin's use of the "Timer" library was wrong; it added the same
amount of virtual data in every iteration in _play(), but did not
actually play something. This created an artificial, but useless,
delay. This patch implements the method _cancel(), and implements
hard-coded sleep values. This is only slightly better, but does not
attempt to look sane.
|
| |
|
|
|
|
|
|
|
|
| |
The implementation of cancel() did not work well: you cannot use
alSourceUnqueueBuffers() to unqueue queued buffers, and our function
openal_unqueue_buffers() left the OpenAL library in a rather undefined
state; nothing was supposed to be queued, but the "filled" variable
was not reset.
|
| |
|
|
|
|
| |
The expression "!format" does not make sense, and cannot occur.
|
| |
|
| |
|
|
|
|
| |
Unnecessary overhead.
|
|\
| |
| |
| |
| |
| | |
Conflicts:
NEWS
configure.ac
|
| |
| |
| |
| |
| |
| | |
The OpenAL specification says that AL_FORMAT_MONO8 and
AL_FORMAT_STEREO8 expect unsigned 8 bit samples, but MPD uses unsigned
samples.
|
| |
| |
| |
| |
| |
| |
| | |
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.
|
| | |
|
| |
| |
| |
| |
| | |
This workaround leads to an infinite loop instead of an assertion
failure, but hey, now it's libmp4ff's fault.
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| | |
Make valgrind find more buffer misuses. Buffer contents are not
persistent, they get invalidated by pcm_buffer_get(), because this
function may allocate a new buffer, but will not copy old data.
|
| | |
|
| | |
|
| |
| |
| |
| |
| | |
Silently choosing default is misleading and can cause hours of investigation.
It's better to fail immediately telling user what is wrong with config.
|
| |
| |
| |
| |
| |
| | |
If output plugin fails to init it will try to call ao_base_finish() immediately,
which segfaults because replay gain filters are not initialized yet and contain
garbage values.
|
| | |
|
|\|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Conflicts:
Makefile.am
NEWS
configure.ac
src/encoder/flac_encoder.c
src/log.c
src/pcm_buffer.c
|
| |
| |
| |
| |
| | |
Initialize the audio_format before calling avcodec_open(), because
avcodec_open() will fill bogus values.
|
| |
| |
| |
| | |
Yet another common support case.
|
| |
| |
| |
| |
| | |
This is a common support case, and hopefully, the new error message
will allow the user to understand the error without requiring support.
|
| |
| |
| |
| |
| | |
Use stat() instead of g_file_test() to detect other types of errors,
such as "permission denied".
|
| | |
|
| | |
|
| |
| |
| |
| | |
Convert to padded 24 bit samples, instead of falling back to 16 bit.
|
| |
| |
| |
| |
| |
| | |
This fixes a buffer corruption bug; pcm_buffer is not designed to be a
persistent buffers, and will discard anything between two consecutive
calls.
|
| |
| |
| |
| |
| |
| | |
This fixes a buffer corruption bug; pcm_buffer is not designed to be a
persistent buffers, and will discard anything between two consecutive
calls.
|
| |
| |
| |
| |
| |
| | |
This fixes a buffer corruption bug; pcm_buffer is not designed to be a
persistent buffers, and will discard anything between two consecutive
calls.
|
| | |
|
| |
| |
| |
| | |
For growing FIFO buffers.
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| | |
This method is too complex for inlining.
|
| |
| |
| |
| |
| | |
"stat" is a macro on mingw32, which is a pretty stupid thing, and this
commit works around this build failure.
|
| | |
|
| |
| |
| |
| | |
Fixes warning on mingw32.
|
| |
| |
| |
| | |
Fixes assertion failure.
|
| |
| |
| |
| |
| |
| |
| | |
WinAPI explicitly declares filesystem encoding.
It can be determined by GetACP().
Use that instead of Glib routine that always "detects" UTF-8 on Win32,
which is incorrect for MPD case.
|
| |
| |
| |
| |
| |
| | |
Ensure that WINVER is defined early enough, so other system headers
won't fall back to their default value. Specifically, this solves a
build failure (-Werror) with mingw-w64 ("WINVER redefined").
|
| | |
|
| |
| |
| |
| |
| | |
The event pipe is not a socket, and the patch that introduced
g_io_channel_new_socket() to the event pipe library was wrong.
|
| |
| |
| |
| |
| | |
Ensure that the io.thread variable is set before entering the event
loop.
|
| |
| |
| |
| |
| | |
Eliminate the conversion to integer samples, the MPD core can do this
now.
|
| |
| |
| |
| |
| | |
For MPD's new floating point support: when a decoded wavpack file
needs to be resampled, don't convert float to int and back to float.
|
| | |
|