Merge branch 'v0.16.x'
Conflicts: NEWS configure.ac
This commit is contained in:
@@ -192,7 +192,8 @@ audio_format_parse(struct audio_format *dest, const char *src,
|
||||
}
|
||||
|
||||
audio_format_init(dest, rate, sample_format, channels);
|
||||
assert(audio_format_valid(dest));
|
||||
assert(mask ? audio_format_mask_valid(dest)
|
||||
: audio_format_valid(dest));
|
||||
|
||||
return true;
|
||||
}
|
||||
|
@@ -467,7 +467,7 @@ handle_currentsong(struct client *client,
|
||||
G_GNUC_UNUSED int argc, G_GNUC_UNUSED char *argv[])
|
||||
{
|
||||
playlist_print_current(client, &g_playlist);
|
||||
return PLAYLIST_RESULT_SUCCESS;
|
||||
return COMMAND_RETURN_OK;
|
||||
}
|
||||
|
||||
static enum command_return
|
||||
|
@@ -81,7 +81,7 @@ flac_tell_cb(G_GNUC_UNUSED const FLAC__StreamDecoder *fd,
|
||||
struct flac_data *data = (struct flac_data *) fdata;
|
||||
|
||||
if (!data->input_stream->seekable)
|
||||
return FLAC__STREAM_DECODER_SEEK_STATUS_UNSUPPORTED;
|
||||
return FLAC__STREAM_DECODER_TELL_STATUS_UNSUPPORTED;
|
||||
|
||||
*offset = (long)(data->input_stream->offset);
|
||||
|
||||
|
Reference in New Issue
Block a user