changeset 117:a02f3088b0cf libavcodec

negative black bugfix
author michael
date Tue, 23 Oct 2001 00:03:19 +0000
parents 1895a8fa81ea
children 3dd1950ac98d
files libpostproc/postprocess.c libpostproc/postprocess_template.c
diffstat 2 files changed, 20 insertions(+), 22 deletions(-) [+]
line wrap: on
line diff
--- a/libpostproc/postprocess.c	Mon Oct 22 23:36:35 2001 +0000
+++ b/libpostproc/postprocess.c	Tue Oct 23 00:03:19 2001 +0000
@@ -136,7 +136,6 @@
 double maxClippedThreshold= 0.01;
 
 int maxAllowedY=234;
-//FIXME can never make a movie´s black brighter (anyone needs that?)
 int minAllowedY=16;
 
 static struct PPFilter filters[]=
@@ -2507,13 +2506,13 @@
 #define SCALED_CPY					\
 						"movq (%0), %%mm0	\n\t"\
 						"movq (%0,%2), %%mm1	\n\t"\
-						"psubusb %%mm2, %%mm0	\n\t"\
-						"psubusb %%mm2, %%mm1	\n\t"\
 						"movq %%mm0, %%mm5	\n\t"\
 						"punpcklbw %%mm4, %%mm0 \n\t"\
 						"punpckhbw %%mm4, %%mm5 \n\t"\
-						"psllw $7, %%mm0	\n\t"\
-						"psllw $7, %%mm5	\n\t"\
+						"psubw %%mm2, %%mm0	\n\t"\
+						"psubw %%mm2, %%mm5	\n\t"\
+						"psllw $6, %%mm0	\n\t"\
+						"psllw $6, %%mm5	\n\t"\
 						"pmulhw %%mm3, %%mm0	\n\t"\
 						"pmulhw %%mm3, %%mm5	\n\t"\
 						"packuswb %%mm5, %%mm0	\n\t"\
@@ -2521,8 +2520,10 @@
 						"movq %%mm1, %%mm5	\n\t"\
 						"punpcklbw %%mm4, %%mm1 \n\t"\
 						"punpckhbw %%mm4, %%mm5 \n\t"\
-						"psllw $7, %%mm1	\n\t"\
-						"psllw $7, %%mm5	\n\t"\
+						"psubw %%mm2, %%mm1	\n\t"\
+						"psubw %%mm2, %%mm5	\n\t"\
+						"psllw $6, %%mm1	\n\t"\
+						"psllw $6, %%mm5	\n\t"\
 						"pmulhw %%mm3, %%mm1	\n\t"\
 						"pmulhw %%mm3, %%mm5	\n\t"\
 						"packuswb %%mm5, %%mm1	\n\t"\
@@ -2685,15 +2686,13 @@
 			clipped-= yHistogram[white];
 		}
 
-		// we cant handle negative correctures
-		packedYOffset= MAX(black - minAllowedY, 0);
+		packedYOffset= (black - minAllowedY) & 0xFFFF;
 		packedYOffset|= packedYOffset<<32;
 		packedYOffset|= packedYOffset<<16;
-		packedYOffset|= packedYOffset<<8;
 
 		scale= (double)(maxAllowedY - minAllowedY) / (double)(white-black);
 
-		packedYScale= (uint16_t)(scale*512.0 + 0.5);
+		packedYScale= (uint16_t)(scale*1024.0 + 0.5);
 		packedYScale|= packedYScale<<32;
 		packedYScale|= packedYScale<<16;
 	}
--- a/libpostproc/postprocess_template.c	Mon Oct 22 23:36:35 2001 +0000
+++ b/libpostproc/postprocess_template.c	Tue Oct 23 00:03:19 2001 +0000
@@ -136,7 +136,6 @@
 double maxClippedThreshold= 0.01;
 
 int maxAllowedY=234;
-//FIXME can never make a movie´s black brighter (anyone needs that?)
 int minAllowedY=16;
 
 static struct PPFilter filters[]=
@@ -2507,13 +2506,13 @@
 #define SCALED_CPY					\
 						"movq (%0), %%mm0	\n\t"\
 						"movq (%0,%2), %%mm1	\n\t"\
-						"psubusb %%mm2, %%mm0	\n\t"\
-						"psubusb %%mm2, %%mm1	\n\t"\
 						"movq %%mm0, %%mm5	\n\t"\
 						"punpcklbw %%mm4, %%mm0 \n\t"\
 						"punpckhbw %%mm4, %%mm5 \n\t"\
-						"psllw $7, %%mm0	\n\t"\
-						"psllw $7, %%mm5	\n\t"\
+						"psubw %%mm2, %%mm0	\n\t"\
+						"psubw %%mm2, %%mm5	\n\t"\
+						"psllw $6, %%mm0	\n\t"\
+						"psllw $6, %%mm5	\n\t"\
 						"pmulhw %%mm3, %%mm0	\n\t"\
 						"pmulhw %%mm3, %%mm5	\n\t"\
 						"packuswb %%mm5, %%mm0	\n\t"\
@@ -2521,8 +2520,10 @@
 						"movq %%mm1, %%mm5	\n\t"\
 						"punpcklbw %%mm4, %%mm1 \n\t"\
 						"punpckhbw %%mm4, %%mm5 \n\t"\
-						"psllw $7, %%mm1	\n\t"\
-						"psllw $7, %%mm5	\n\t"\
+						"psubw %%mm2, %%mm1	\n\t"\
+						"psubw %%mm2, %%mm5	\n\t"\
+						"psllw $6, %%mm1	\n\t"\
+						"psllw $6, %%mm5	\n\t"\
 						"pmulhw %%mm3, %%mm1	\n\t"\
 						"pmulhw %%mm3, %%mm5	\n\t"\
 						"packuswb %%mm5, %%mm1	\n\t"\
@@ -2685,15 +2686,13 @@
 			clipped-= yHistogram[white];
 		}
 
-		// we cant handle negative correctures
-		packedYOffset= MAX(black - minAllowedY, 0);
+		packedYOffset= (black - minAllowedY) & 0xFFFF;
 		packedYOffset|= packedYOffset<<32;
 		packedYOffset|= packedYOffset<<16;
-		packedYOffset|= packedYOffset<<8;
 
 		scale= (double)(maxAllowedY - minAllowedY) / (double)(white-black);
 
-		packedYScale= (uint16_t)(scale*512.0 + 0.5);
+		packedYScale= (uint16_t)(scale*1024.0 + 0.5);
 		packedYScale|= packedYScale<<32;
 		packedYScale|= packedYScale<<16;
 	}