Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(19)

Unified Diff: third_party/libjpeg_turbo/simd/jsimd_i386.c

Issue 5862001: Integrate premultiply/unpremultiply operations into libjpeg-turbo.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/
Patch Set: Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/libjpeg_turbo/simd/jsimd.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/libjpeg_turbo/simd/jsimd_i386.c
===================================================================
--- third_party/libjpeg_turbo/simd/jsimd_i386.c (revision 69212)
+++ third_party/libjpeg_turbo/simd/jsimd_i386.c (working copy)
@@ -138,6 +138,10 @@
sse2fct=jsimd_extxrgb_ycc_convert_sse2;
mmxfct=jsimd_extxrgb_ycc_convert_mmx;
break;
+ case JCS_EXT_BGRA:
+ sse2fct=jsimd_extbgra_ycc_convert_sse2;
+ mmxfct=jsimd_extbgrx_ycc_convert_mmx;
+ break;
default:
sse2fct=jsimd_rgb_ycc_convert_sse2;
mmxfct=jsimd_rgb_ycc_convert_mmx;
@@ -953,4 +957,3 @@
jsimd_idct_float_3dnow(compptr->dct_table, coef_block,
output_buf, output_col);
}
-
« no previous file with comments | « third_party/libjpeg_turbo/simd/jsimd.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698