audio_core/time_stretch: Silence truncation warnings in Process()
The SoundTouch API only accepts uint amount of samples.
This commit is contained in:
parent
8e7497d5bb
commit
9969a5db1e
1 changed files with 2 additions and 2 deletions
|
@ -61,8 +61,8 @@ size_t TimeStretcher::Process(const s16* in, size_t num_in, s16* out, size_t num
|
||||||
LOG_DEBUG(Audio, "{:5}/{:5} ratio:{:0.6f} backlog:{:0.6f}", num_in, num_out, m_stretch_ratio,
|
LOG_DEBUG(Audio, "{:5}/{:5} ratio:{:0.6f} backlog:{:0.6f}", num_in, num_out, m_stretch_ratio,
|
||||||
backlog_fullness);
|
backlog_fullness);
|
||||||
|
|
||||||
m_sound_touch.putSamples(in, num_in);
|
m_sound_touch.putSamples(in, static_cast<u32>(num_in));
|
||||||
return m_sound_touch.receiveSamples(out, num_out);
|
return m_sound_touch.receiveSamples(out, static_cast<u32>(num_out));
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace AudioCore
|
} // namespace AudioCore
|
||||||
|
|
Loading…
Reference in a new issue