summaryrefslogtreecommitdiff
path: root/vpx_dsp/vpx_dsp_common.h
diff options
context:
space:
mode:
authorJingning Han <jingning@google.com>2015-07-15 13:02:01 -0700
committerJingning Han <jingning@google.com>2015-07-15 13:03:23 -0700
commitdb8e731b8d5a9e15e369e3921d4326e32b9efa10 (patch)
tree207d15462643380e43150cd2934eeb2000f805fd /vpx_dsp/vpx_dsp_common.h
parent3fe83cdf81cf039391dc9cc4c4e7d27ce5085e55 (diff)
downloadlibvpx-db8e731b8d5a9e15e369e3921d4326e32b9efa10.tar
libvpx-db8e731b8d5a9e15e369e3921d4326e32b9efa10.tar.gz
libvpx-db8e731b8d5a9e15e369e3921d4326e32b9efa10.tar.bz2
libvpx-db8e731b8d5a9e15e369e3921d4326e32b9efa10.zip
Add vpx_dsp_common.h file
Move the clamp functions to vpx_dsp_common.h file. Clear out the dependency of vp9_loopfilter_filters.c on vp9_common.h file. Change-Id: I9c4b928bcd7f597106b5aa96354356d3775a3431
Diffstat (limited to 'vpx_dsp/vpx_dsp_common.h')
-rw-r--r--vpx_dsp/vpx_dsp_common.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/vpx_dsp/vpx_dsp_common.h b/vpx_dsp/vpx_dsp_common.h
new file mode 100644
index 000000000..c7bac9599
--- /dev/null
+++ b/vpx_dsp/vpx_dsp_common.h
@@ -0,0 +1,43 @@
+/*
+ * 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))
+
+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_