SoundPlayer: Cast Audio::Sample to float for fabsf()

This commit is contained in:
joshua stein 2020-02-16 10:57:00 -06:00 committed by Andreas Kling
parent 7e6ac544f7
commit 61340c12d6
Notes: sideshowbarker 2024-07-19 09:04:16 +09:00

View file

@ -54,7 +54,7 @@ void SampleWidget::paint_event(GUI::PaintEvent& event)
if (m_buffer) {
int samples_per_pixel = m_buffer->sample_count() / frame_inner_rect().width();
for (int sample_index = 0; sample_index < m_buffer->sample_count() && (x - x_offset) < frame_inner_rect().width(); ++sample_index) {
float sample = fabsf(m_buffer->samples()[sample_index].left);
float sample = fabsf((float)m_buffer->samples()[sample_index].left);
sample_max = max(sample, sample_max);
++count;