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

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

Issue 1542013004: Switch to standard integer types in media/, take 2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more stddef Created 5 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 | « media/base/simd/linear_scale_yuv_to_rgb_mmx_x64.asm ('k') | media/base/simd/scale_yuv_to_rgb_mmx.asm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/simd/linear_scale_yuv_to_rgb_sse.asm
diff --git a/media/base/simd/linear_scale_yuv_to_rgb_sse.asm b/media/base/simd/linear_scale_yuv_to_rgb_sse.asm
index 0d6685f18c560699a713e961bf1bee91669f019b..62ee9ac08fb8a9dbf4fcc6d6a517ca4d1f483d90 100644
--- a/media/base/simd/linear_scale_yuv_to_rgb_sse.asm
+++ b/media/base/simd/linear_scale_yuv_to_rgb_sse.asm
@@ -13,10 +13,10 @@
; Use movq to save the output.
%define MOVQ movntq
-; void LinearScaleYUVToRGB32Row_SSE(const uint8* y_buf,
-; const uint8* u_buf,
-; const uint8* v_buf,
-; uint8* rgb_buf,
+; void LinearScaleYUVToRGB32Row_SSE(const uint8_t* y_buf,
+; const uint8_t* u_buf,
+; const uint8_t* v_buf,
+; uint8_t* rgb_buf,
; ptrdiff_t width,
; ptrdiff_t source_dx);
%define SYMBOL LinearScaleYUVToRGB32Row_SSE
« no previous file with comments | « media/base/simd/linear_scale_yuv_to_rgb_mmx_x64.asm ('k') | media/base/simd/scale_yuv_to_rgb_mmx.asm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698