# HG changeset patch # User nenolod # Date 1148238981 25200 # Node ID dec5caa8768be7d49ecaf273519bec1cd416cb83 # Parent 0c43b993fc950768f801919ae3e0b4162777730e [svn] - nevermind diff -r 0c43b993fc95 -r dec5caa8768b Plugins/Input/mpg123/psycho.c --- a/Plugins/Input/mpg123/psycho.c Sun May 21 12:13:55 2006 -0700 +++ b/Plugins/Input/mpg123/psycho.c Sun May 21 12:16:21 2006 -0700 @@ -439,18 +439,10 @@ lprev2 = left2; rprev2 = right2; -#if 0 if (left < -32768) left = -32768; else if (left > 32767) left = 32767; if (right < -32768) right = -32768; else if (right > 32767) right = 32767; -#endif - /* if we're going to clip, just throw back the original data */ - if (left < -32768 || left > 32767 || right < -32768 || right > 32767) - { - dataptr += 2; - continue; - } dataptr[0] = left; dataptr[1] = right;