Merge commit 'release-0.16.5'

Conflicts:
	NEWS
	configure.ac
This commit is contained in:
Max Kellermann 2011-10-09 16:32:36 +02:00
commit b9e99575ce
3 changed files with 3 additions and 3 deletions

2
NEWS
View File

@ -27,7 +27,7 @@ ver 0.17 (2011/??/??)
* allow port specification in "bind_to_address" settings
ver 0.16.5 (2010/??/??)
ver 0.16.5 (2010/10/09)
* configure.ac
- disable assertions in the non-debugging build
- show solaris plugin result correctly

View File

@ -176,7 +176,7 @@ wavpack_decode(struct decoder *decoder, WavpackContext *wpc, bool can_seek)
return;
}
if ((WavpackGetMode(wpc) & MODE_FLOAT) == MODE_FLOAT) {
if (is_float) {
format_samples = format_samples_float;
} else {
format_samples = format_samples_int;

View File

@ -222,7 +222,7 @@ pcm_convert_32(struct pcm_convert_state *state,
src_buffer, src_size, &len);
if (buf == NULL) {
g_set_error(error_r, pcm_convert_quark(), 0,
"Conversion from %s to 24 bit is not implemented",
"Conversion from %s to 32 bit is not implemented",
sample_format_to_string(src_format->format));
return NULL;
}