changeset 1095:dec5caa8768b trunk

[svn] - nevermind
author nenolod
date Sun, 21 May 2006 12:16:21 -0700
parents 0c43b993fc95
children 9b4e9be457f0
files Plugins/Input/mpg123/psycho.c
diffstat 1 files changed, 0 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- 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;