summaryrefslogtreecommitdiffstats
path: root/libao2
diff options
context:
space:
mode:
authorsteve <steve@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-12-24 18:54:58 +0000
committersteve <steve@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-12-24 18:54:58 +0000
commit664039bd2fc110aed15817454fa6178da924da7f (patch)
tree1d8d5560bf0614e88c20d3744bd44c093c68039f /libao2
parent7f51f5adbd5f19bc872fd8880886511135e1fb13 (diff)
downloadmpv-664039bd2fc110aed15817454fa6178da924da7f.tar.bz2
mpv-664039bd2fc110aed15817454fa6178da924da7f.tar.xz
error for non-stereo surrounds
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3719 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libao2')
-rw-r--r--libao2/pl_surround.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libao2/pl_surround.c b/libao2/pl_surround.c
index 1d2fdeaccb..1d832776e0 100644
--- a/libao2/pl_surround.c
+++ b/libao2/pl_surround.c
@@ -229,7 +229,7 @@ static int play(){
pl_surround.Rs_delaybuf[pl_surround.delaybuf_pos++] =
matrix[8]*in[0] + matrix[9]*in[1];
#else
- pl_surround.Ls_delaybuf[pl_surround.delaybuf_pos] =
+ pl_surround.Ls_delaybuf[pl_surround.delaybuf_pos++] =
matrix[4]*in[0] + matrix[5]*in[1];
#endif
pl_surround.delaybuf_pos %= pl_surround.delaybuf_len;