From: Josh B. <jj_...@ou...> - 2006-02-13 23:18:48
|
Is it possible to use the latest version of Javaclient from CVS with Player 1.6.4? It seems that I'd loose a lot of recent bug fixes by going back to an old version of Javaclient, but I don't know if this combination will cause me any problems. Also, I've noticed that the HEAD revision in CVS generates several "the field is never read locally" errors in Eclipse. A few of these are actually bugs cause by a trivial oversight when copying and pasting: Index: javaclient/AudioMixerInterface.java =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- javaclient/AudioMixerInterface.java +++ javaclient/AudioMixerInterface.java (working copy) @@ -148,11 +148,11 @@ public synchronized int getMasterLeft () { return masterLeft; } public synchronized int getMasterRight () { return masterRight; } public synchronized int getPCMLeft () { return pcmLeft; } - public synchronized int getPCMRight () { return pcmLeft; } + public synchronized int getPCMRight () { return pcmRight; } public synchronized int getLineLeft () { return lineLeft; } - public synchronized int getLineRight () { return lineLeft; } + public synchronized int getLineRight () { return lineRight; } public synchronized int getMicLeft () { return micLeft; } - public synchronized int getMicRight () { return micLeft; } + public synchronized int getMicRight () { return micRight; } public synchronized int getIGain () { return iGain; } public synchronized int getOGain () { return oGain; } } Thanks, Josh |