38f1fbbb75
The following quantization functions were moved: vp9_quantize_b vp9_quantize_b_32x32 vp9_highbd_quantize_b vp9_highbd_quantize_b_32x32 vp9_quantize_dc vp9_quantize_dc_32x32 vp9_highbd_quantize_dc vp9_highbd_quantize_dc_32x32 The purpose of doing that was to allow these functions to be shared by multiple codecs. Change-Id: Id8ab939f283353cdd07bd930d47db3d932a5d87f
58 lines
1.6 KiB
C
58 lines
1.6 KiB
C
/*
|
|
* 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_DSP_COMMON_H_
|
|
#define VPX_DSP_COMMON_H_
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "./vpx_config.h"
|
|
#include "vpx/vpx_integer.h"
|
|
#include "vpx_ports/mem.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define MIN(x, y) (((x) < (y)) ? (x) : (y))
|
|
#define MAX(x, y) (((x) > (y)) ? (x) : (y))
|
|
|
|
#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.
|
|
typedef int64_t tran_high_t;
|
|
typedef int32_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
|
|
|
|
static INLINE uint8_t clip_pixel(int val) {
|
|
return (val > 255) ? 255 : (val < 0) ? 0 : val;
|
|
}
|
|
|
|
static INLINE int clamp(int value, int low, int high) {
|
|
return value < low ? low : (value > high ? high : value);
|
|
}
|
|
|
|
static INLINE double fclamp(double value, double low, double high) {
|
|
return value < low ? low : (value > high ? high : value);
|
|
}
|
|
|
|
#ifdef __cplusplus
|
|
} // extern "C"
|
|
#endif
|
|
|
|
#endif // VPX_DSP_COMMON_H_
|