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
This commit is contained in:
fbarchard@google.com 2014-12-30 22:26:10 +00:00
parent 16338ba85f
commit 8723fc1109
3 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
Name: libyuv
URL: http://code.google.com/p/libyuv/
Version: 1214
Version: 1215
License: BSD
License File: LICENSE

View File

@ -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

View File

@ -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