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

Unified Diff: media/base/simd/convert_rgb_to_yuv_ssse3.asm

Issue 12211067: Change prototypes to yuv_convert_simd_x86 yasm and equivalent C to portably sign extend int args (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove extra line Created 7 years, 10 months 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 | « media/base/simd/convert_rgb_to_yuv_ssse3.h ('k') | media/base/simd/convert_yuv_to_rgb.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/simd/convert_rgb_to_yuv_ssse3.asm
diff --git a/media/base/simd/convert_rgb_to_yuv_ssse3.asm b/media/base/simd/convert_rgb_to_yuv_ssse3.asm
index 201f5585cef4a3695ab93d1eaf7bc45e972bf951..b59362bd5ce704626fe910a85a87d900ee0c24c7 100644
--- a/media/base/simd/convert_rgb_to_yuv_ssse3.asm
+++ b/media/base/simd/convert_rgb_to_yuv_ssse3.asm
@@ -243,7 +243,7 @@
; uint8* y,
; uint8* u,
; uint8* v,
-; int width);
+; ptrdiff_t width);
;
%define SYMBOL ConvertARGBToYUVRow_SSSE3
%define PIXELSIZE 4
@@ -256,7 +256,7 @@
; uint8* y,
; uint8* u,
; uint8* v,
-; int width);
+; ptrdiff_t width);
;
%define SYMBOL ConvertRGBToYUVRow_SSSE3
%define PIXELSIZE 3
@@ -269,7 +269,7 @@
; uint8* y,
; uint8* u,
; uint8* v,
-; int width);
+; ptrdiff_t width);
;
%define SYMBOL ConvertARGBToYUVEven_SSSE3
%define PIXELSIZE 4
@@ -282,7 +282,7 @@
; uint8* y,
; uint8* u,
; uint8* v,
-; int width);
+; ptrdiff_t width);
;
%define SYMBOL ConvertARGBToYUVOdd_SSSE3
%define PIXELSIZE 4
@@ -295,7 +295,7 @@
; uint8* y,
; uint8* u,
; uint8* v,
-; int width);
+; ptrdiff_t width);
;
%define SYMBOL ConvertRGBToYUVEven_SSSE3
%define PIXELSIZE 3
@@ -308,7 +308,7 @@
; uint8* y,
; uint8* u,
; uint8* v,
-; int width);
+; ptrdiff_t width);
;
%define SYMBOL ConvertRGBToYUVOdd_SSSE3
%define PIXELSIZE 3
« no previous file with comments | « media/base/simd/convert_rgb_to_yuv_ssse3.h ('k') | media/base/simd/convert_yuv_to_rgb.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698