commit | 6c270db74181e313bdbd602e1273e0ebd090366b | [log] [tgz] |
---|---|---|
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | Tue Jul 04 16:47:58 2006 +0000 |
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | Tue Jul 04 16:47:58 2006 +0000 |
tree | b6ccf6661cd0229fee4dc3edf8eaa59ae76966d6 | |
parent | 47378eb1ca3730d3c22ca741f8e72d74fd48f493 [diff] [blame] |
rate converter fix (malc) git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2038 c046a42c-6fe2-441c-8c8c-71466251a162
diff --git a/audio/rate_template.h b/audio/rate_template.h index 3e0e77c..398d305 100644 --- a/audio/rate_template.h +++ b/audio/rate_template.h
@@ -51,7 +51,7 @@ if (rate->opos_inc == (1ULL + UINT_MAX)) { int i, n = *isamp > *osamp ? *osamp : *isamp; for (i = 0; i < n; i++) { - OP (obuf[i].l, ibuf[i].r); + OP (obuf[i].l, ibuf[i].l); OP (obuf[i].r, ibuf[i].r); } *isamp = n;