Skip to content
Snippets Groups Projects
Commit faaf9460 authored by Adrien Béraud's avatar Adrien Béraud
Browse files

audiofile, resampler: cleanup

Change-Id: I33d2b5575afc78df2fd35b03e197b5d59a3a0bf7
parent c62675b0
No related branches found
No related tags found
No related merge requests found
......@@ -125,15 +125,13 @@ Resampler::resample(const AVFrame* input, AVFrame* output)
// indicative of an underlying problem in the code. This check is so the backtrace
// doesn't get mangled with a bunch of calls to Resampler::resample
if (initCount_ > 1) {
std::string msg = "Infinite loop detected in audio resampler, please open an issue on "
"https://git.jami.net";
JAMI_ERR() << msg;
throw std::runtime_error(msg);
JAMI_ERROR("Infinite loop detected in audio resampler, please open an issue on https://git.jami.net");
throw std::runtime_error("Resampler");
}
reinit(input, output);
return resample(input, output);
} else if (ret < 0) {
JAMI_ERR() << "Failed to resample frame";
JAMI_ERROR("Failed to resample frame");
return -1;
}
......
......@@ -66,7 +66,7 @@ AudioFile::AudioFile(const std::string& fileName, unsigned int sampleRate, AVSam
Resampler r {};
auto decoder = std::make_unique<MediaDecoder>(
[&r, this, &buf, &total_samples](const std::shared_ptr<MediaFrame>& frame) mutable {
auto resampled = r.resample(std::move(std::static_pointer_cast<AudioFrame>(frame)), format_);
auto resampled = r.resample(std::static_pointer_cast<AudioFrame>(frame), format_);
total_samples += resampled->getFrameSize();
buf.emplace_back(std::move(resampled));
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment