Commit 8723fc11 authored by fbarchard@google.com's avatar fbarchard@google.com

Syntax fix for change 24 bit conversions to use single asm block instead of 2,…

Syntax fix for change 24 bit conversions to use single asm block instead of 2, but with memory counter
BUG=389, 378
TESTED=out\release\libyuv_unittest --gtest_catch_exceptions=0 --gtest_filter=*420ToRGB24_Opt | sortms
R=harryjin@google.com

Review URL: https://webrtc-codereview.appspot.com/39399004

git-svn-id: http://libyuv.googlecode.com/svn/trunk@1215 16f28f9a-4ce2-e073-06de-1de4eb20be90
parent 16338ba8
Name: libyuv
URL: http://code.google.com/p/libyuv/
Version: 1214
Version: 1215
License: BSD
License File: LICENSE
......
......@@ -11,6 +11,6 @@
#ifndef INCLUDE_LIBYUV_VERSION_H_ // NOLINT
#define INCLUDE_LIBYUV_VERSION_H_
#define LIBYUV_VERSION 1214
#define LIBYUV_VERSION 1215
#endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT
......@@ -1716,8 +1716,8 @@ void OMITFP I422ToRGB24Row_SSSE3(const uint8* y_buf,
[v_buf]"+r"(v_buf), // %[v_buf]
[dst_rgb24]"+r"(dst_rgb24), // %[dst_rgb24]
// TODO(fbarchard): Make width a register for 32 bit.
#if defined(__APPLE__) && defined(__i386__))
[width]"+m"(width) // %[width]
#if defined(__APPLE__) && defined(__i386__)
[width]"+m"(width) // %[width]
#else
[width]"+rm"(width) // %[width]
#endif
......@@ -1766,8 +1766,8 @@ void OMITFP I422ToRAWRow_SSSE3(const uint8* y_buf,
[v_buf]"+r"(v_buf), // %[v_buf]
[dst_raw]"+r"(dst_raw), // %[dst_raw]
// TODO(fbarchard): Make width a register for 32 bit.
#if defined(__APPLE__) && defined(__i386__))
[width]"+m"(width) // %[width]
#if defined(__APPLE__) && defined(__i386__)
[width]"+m"(width) // %[width]
#else
[width]"+rm"(width) // %[width]
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment