mirror of
				https://github.com/webmproject/libwebp.git
				synced 2025-10-31 02:15:42 +01:00 
			
		
		
		
	MIPS: MIPS32r1: rescaler bugfix
Change-Id: I6de6e2488bd5bd58c1f705739e4467feb211f8b4
This commit is contained in:
		| @@ -14,6 +14,7 @@ | ||||
| #include <assert.h> | ||||
| #include <stdlib.h> | ||||
| #include "./rescaler.h" | ||||
| #include "../dsp/dsp.h" | ||||
|  | ||||
| //------------------------------------------------------------------------------ | ||||
| // Implementations of critical functions ImportRow / ExportRow | ||||
| @@ -243,6 +244,8 @@ static void ExportRowMIPS(WebPRescaler* const wrk, int x_out) { | ||||
|         : [temp2]"r"(temp2), [yscale]"r"(yscale), [temp8]"r"(temp8) | ||||
|         : "memory", "hi", "lo" | ||||
|       ); | ||||
|       wrk->y_accum += wrk->y_add; | ||||
|       wrk->dst += wrk->dst_stride; | ||||
|     } else { | ||||
|       ExportRowC(wrk, x_out); | ||||
|     } | ||||
| @@ -281,6 +284,7 @@ void WebPRescalerInit(WebPRescaler* const wrk, int src_width, int src_height, | ||||
|   if (WebPRescalerImportRow == NULL) { | ||||
|     WebPRescalerImportRow = ImportRowC; | ||||
|     WebPRescalerExportRow = ExportRowC; | ||||
|     if (VP8GetCPUInfo) { | ||||
| #if defined(WEBP_USE_MIPS32) | ||||
|       if (VP8GetCPUInfo(kMIPS32)) { | ||||
|         WebPRescalerImportRow = ImportRowMIPS; | ||||
| @@ -288,6 +292,7 @@ void WebPRescalerInit(WebPRescaler* const wrk, int src_width, int src_height, | ||||
|       } | ||||
| #endif | ||||
|     } | ||||
|   } | ||||
| } | ||||
|  | ||||
| #undef MULT_FIX | ||||
|   | ||||
		Reference in New Issue
	
	Block a user