/* * Copyright (c) 2015 The WebM project authors. All Rights Reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source * tree. An additional intellectual property rights grant can be found * in the file PATENTS. All contributing project authors may * be found in the AUTHORS file in the root of the source tree. */ #ifndef VPX_VPX_DSP_VPX_DSP_COMMON_H_ #define VPX_VPX_DSP_VPX_DSP_COMMON_H_ #include <limits.h> #include "./vpx_config.h" #include "vpx/vpx_integer.h" #include "vpx_ports/mem.h" #ifdef __cplusplus extern "C" { #endif #define VPXMIN(x, y) … #define VPXMAX(x, y) … #define VPX_SWAP(type, a, b) … #if CONFIG_VP9_HIGHBITDEPTH // Note: // tran_low_t is the datatype used for final transform coefficients. // tran_high_t is the datatype used for intermediate transform stages. tran_high_t; tran_low_t; #else // Note: // tran_low_t is the datatype used for final transform coefficients. // tran_high_t is the datatype used for intermediate transform stages. typedef int32_t tran_high_t; typedef int16_t tran_low_t; #endif // CONFIG_VP9_HIGHBITDEPTH tran_coef_t; // Visual Studio 2022 (cl.exe) targeting AArch64 with optimizations enabled // produces invalid code for clip_pixel() when the return type is uint8_t. // See: // https://developercommunity.visualstudio.com/t/Misoptimization-for-ARM64-in-VS-2022-17/10363361 // TODO(jzern): check the compiler version after a fix for the issue is // released. #if defined(_MSC_VER) && defined(_M_ARM64) && !defined(__clang__) static INLINE int clip_pixel(int val) { return (val > 255) ? 255 : (val < 0) ? 0 : val; } #else static INLINE uint8_t clip_pixel(int val) { … } #endif static INLINE int clamp(int value, int low, int high) { … } static INLINE double fclamp(double value, double low, double high) { … } static INLINE int64_t lclamp(int64_t value, int64_t low, int64_t high) { … } static INLINE uint16_t clip_pixel_highbd(int val, int bd) { … } // Returns the saturating cast of a double value to int. static INLINE int saturate_cast_double_to_int(double d) { … } #ifdef __cplusplus } // extern "C" #endif #endif // VPX_VPX_DSP_VPX_DSP_COMMON_H_