|
Message
From: cvs at opencores.org<cvs@o...>
Date: Fri Oct 21 14:43:40 CEST 2005
Subject: [cvs-checkins] MODIFIED: jop ...
Date: 00/05/10 21:14:43 Modified: jop/java/target/src/app/dsp Example.java Log: more volume Revision Changes Path 1.2 jop/java/target/src/app/dsp/Example.java http://www.opencores.org/cvsweb.shtml/jop/java/target/src/app/dsp/Example.java.diff?r1=1.1&r2=1.2 (In the diff below, changes in quantity of whitespace are not shown.) Index: Example.java =================================================================== RCS file: /cvsroot/martin/jop/java/target/src/app/dsp/Example.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -b -r1.1 -r1.2 --- Example.java 21 Oct 2005 12:22:22 -0000 1.1 +++ Example.java 21 Oct 2005 12:43:39 -0000 1.2 @@ -59,8 +59,8 @@ int rec = (sig & 0x40)<<1; int saw = sig; - left = (rec*cnt + saw*(0xffff-cnt2))>>18; - right = (saw*cnt2 + rec*(0xffff-cnt))>>18; + left = (rec*cnt + saw*(0xffff-cnt2))>>16; + right = (saw*cnt2 + rec*(0xffff-cnt))>>16;
|