mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
scaletempo: Explicitely cast to signed integers to fix a segfault
Fixes bug #585660.
This commit is contained in:
parent
1b1f6f56d6
commit
2fe7a97f1c
1 changed files with 1 additions and 1 deletions
|
@ -230,7 +230,7 @@ best_overlap_offset_s16 (GstScaletempo * scaletempo)
|
|||
ppc = p->buf_pre_corr;
|
||||
ppc += p->samples_overlap - p->samples_per_frame;
|
||||
ps += p->samples_overlap - p->samples_per_frame;
|
||||
i = -(p->samples_overlap - p->samples_per_frame);
|
||||
i = -((glong) p->samples_overlap - (glong) p->samples_per_frame);
|
||||
do {
|
||||
corr += ppc[i + 0] * ps[i + 0];
|
||||
corr += ppc[i + 1] * ps[i + 1];
|
||||
|
|
Loading…
Reference in a new issue