decoder/{dsdiff,dsf,mpg123,wavpack}: avoid exceptions in scan methods

The scan methods must be "noexcept".
This commit is contained in:
Max Kellermann
2018-01-25 13:01:39 +01:00
parent 47fa8c4cf6
commit fd0a5a1116
4 changed files with 33 additions and 13 deletions

View File

@@ -460,14 +460,15 @@ dsdiff_scan_stream(InputStream &is,
if (!dsdiff_read_metadata(nullptr, is, &metadata, &chunk_header))
return false;
auto audio_format = CheckAudioFormat(metadata.sample_rate / 8,
SampleFormat::DSD,
metadata.channels);
const auto sample_rate = metadata.sample_rate / 8;
if (!audio_valid_sample_rate(sample_rate) ||
!audio_valid_channel_count(metadata.channels))
return false;
/* calculate song time and add as tag */
uint64_t n_frames = metadata.chunk_size / audio_format.channels;
uint64_t n_frames = metadata.chunk_size / metadata.channels;
auto songtime = SongTime::FromScale<uint64_t>(n_frames,
audio_format.sample_rate);
sample_rate);
tag_handler_invoke_duration(handler, handler_ctx, songtime);
/* Read additional metadata and created tags if available */