Skip to content

Commit d5338f6

Browse files
committed
Use speex_resampler_process_interleaved_float in the testresample2
1 parent 7a7246e commit d5338f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libspeexdsp/testresample2.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ int main()
6868

6969
fprintf (stderr, "%d %d %d %d -> ", rate, off, in_len, out_len);
7070

71-
speex_resampler_process_float(st, 0, fin + off, &in_len, fout, &out_len);
71+
speex_resampler_process_interleaved_float(st, fin + off, &in_len, fout, &out_len);
7272

7373
fprintf (stderr, "%d %d\n", in_len, out_len);
7474
off += in_len;

0 commit comments

Comments
 (0)