mirror of
https://chromium.googlesource.com/libyuv/libyuv
synced 2026-02-12 21:29:51 +08:00
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:
parent
16338ba85f
commit
8723fc1109
@ -1,6 +1,6 @@
|
|||||||
Name: libyuv
|
Name: libyuv
|
||||||
URL: http://code.google.com/p/libyuv/
|
URL: http://code.google.com/p/libyuv/
|
||||||
Version: 1214
|
Version: 1215
|
||||||
License: BSD
|
License: BSD
|
||||||
License File: LICENSE
|
License File: LICENSE
|
||||||
|
|
||||||
|
|||||||
@ -11,6 +11,6 @@
|
|||||||
#ifndef INCLUDE_LIBYUV_VERSION_H_ // NOLINT
|
#ifndef INCLUDE_LIBYUV_VERSION_H_ // NOLINT
|
||||||
#define INCLUDE_LIBYUV_VERSION_H_
|
#define INCLUDE_LIBYUV_VERSION_H_
|
||||||
|
|
||||||
#define LIBYUV_VERSION 1214
|
#define LIBYUV_VERSION 1215
|
||||||
|
|
||||||
#endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT
|
#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]
|
[v_buf]"+r"(v_buf), // %[v_buf]
|
||||||
[dst_rgb24]"+r"(dst_rgb24), // %[dst_rgb24]
|
[dst_rgb24]"+r"(dst_rgb24), // %[dst_rgb24]
|
||||||
// TODO(fbarchard): Make width a register for 32 bit.
|
// TODO(fbarchard): Make width a register for 32 bit.
|
||||||
#if defined(__APPLE__) && defined(__i386__))
|
#if defined(__APPLE__) && defined(__i386__)
|
||||||
[width]"+m"(width) // %[width]
|
[width]"+m"(width) // %[width]
|
||||||
#else
|
#else
|
||||||
[width]"+rm"(width) // %[width]
|
[width]"+rm"(width) // %[width]
|
||||||
#endif
|
#endif
|
||||||
@ -1766,8 +1766,8 @@ void OMITFP I422ToRAWRow_SSSE3(const uint8* y_buf,
|
|||||||
[v_buf]"+r"(v_buf), // %[v_buf]
|
[v_buf]"+r"(v_buf), // %[v_buf]
|
||||||
[dst_raw]"+r"(dst_raw), // %[dst_raw]
|
[dst_raw]"+r"(dst_raw), // %[dst_raw]
|
||||||
// TODO(fbarchard): Make width a register for 32 bit.
|
// TODO(fbarchard): Make width a register for 32 bit.
|
||||||
#if defined(__APPLE__) && defined(__i386__))
|
#if defined(__APPLE__) && defined(__i386__)
|
||||||
[width]"+m"(width) // %[width]
|
[width]"+m"(width) // %[width]
|
||||||
#else
|
#else
|
||||||
[width]"+rm"(width) // %[width]
|
[width]"+rm"(width) // %[width]
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user