mirror of
https://chromium.googlesource.com/libyuv/libyuv
synced 2025-12-12 06:29:57 +08:00
move a macro and comment
BUG=49 TEST=untested Review URL: https://webrtc-codereview.appspot.com/668012 git-svn-id: http://libyuv.googlecode.com/svn/trunk@302 16f28f9a-4ce2-e073-06de-1de4eb20be90
This commit is contained in:
parent
942ad1f5f4
commit
05b5cf9610
@ -1,6 +1,6 @@
|
||||
Name: libyuv
|
||||
URL: http://code.google.com/p/libyuv/
|
||||
Version: 301
|
||||
Version: 302
|
||||
License: BSD
|
||||
License File: LICENSE
|
||||
|
||||
|
||||
@ -11,6 +11,6 @@
|
||||
#ifndef INCLUDE_LIBYUV_VERSION_H_ // NOLINT
|
||||
#define INCLUDE_LIBYUV_VERSION_H_
|
||||
|
||||
#define LIBYUV_VERSION 300
|
||||
#define LIBYUV_VERSION 302
|
||||
|
||||
#endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT
|
||||
|
||||
@ -23,6 +23,9 @@ namespace libyuv {
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
// Bilinear SSE2 is disabled.
|
||||
#define SSE2_DISABLED 1
|
||||
|
||||
// Note: Some SSE2 reference manuals
|
||||
// cpuvol1.pdf agner_instruction_tables.pdf 253666.pdf 253667.pdf
|
||||
|
||||
@ -31,7 +34,6 @@ extern "C" {
|
||||
// NOT the optimized versions. Useful for debugging and
|
||||
// when comparing the quality of the resulting YUV planes
|
||||
// as produced by the optimized and non-optimized versions.
|
||||
#define SSE2_DISABLED 1
|
||||
static bool use_reference_impl_ = false;
|
||||
|
||||
void SetUseReferenceImpl(bool use) {
|
||||
|
||||
@ -23,12 +23,13 @@ namespace libyuv {
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
// ARGB scaling uses bilinear or point, but not box filter.
|
||||
// Bilinear SSE2 is disabled.
|
||||
#define SSE2_DISABLED 1
|
||||
|
||||
// ARGB scaling uses bilinear or point, but not box filter.
|
||||
/**
|
||||
* SSE2 downscalers with bilinear interpolation.
|
||||
*/
|
||||
#define SSE2_DISABLED 1
|
||||
|
||||
#if !defined(YUV_DISABLE_ASM) && defined(_M_IX86)
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user