0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

error for non-stereo surrounds

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3719 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
steve 2001-12-24 18:54:58 +00:00
parent 7f51f5adbd
commit 664039bd2f

View File

@ -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;