summaryrefslogtreecommitdiff
path: root/vpx_dsp/postproc.h
diff options
context:
space:
mode:
authorJim Bankoski <jimbankoski@google.com>2016-07-13 07:35:25 -0700
committerJim Bankoski <jimbankoski@google.com>2016-07-13 07:35:25 -0700
commit2ca24b0075df0623fe44e07ea000e182a1317d33 (patch)
treedd18a1b86133e6390d25383b2d3d925b4751f2eb /vpx_dsp/postproc.h
parent6f424a768e1ccd7775adc9273c3a7de7dda54bc4 (diff)
downloadlibvpx-2ca24b0075df0623fe44e07ea000e182a1317d33.tar
libvpx-2ca24b0075df0623fe44e07ea000e182a1317d33.tar.gz
libvpx-2ca24b0075df0623fe44e07ea000e182a1317d33.tar.bz2
libvpx-2ca24b0075df0623fe44e07ea000e182a1317d33.zip
postproc - move filling of noise buffer to vpx_dsp.
Change-Id: I63ba35dc0ae9286c9812367a531e01d79a4c1635
Diffstat (limited to 'vpx_dsp/postproc.h')
-rw-r--r--vpx_dsp/postproc.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/vpx_dsp/postproc.h b/vpx_dsp/postproc.h
new file mode 100644
index 000000000..389b0eed7
--- /dev/null
+++ b/vpx_dsp/postproc.h
@@ -0,0 +1,24 @@
+/*
+ * Copyright (c) 2016 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_POSTPROC_H_
+#define VPX_DSP_POSTPROC_H_
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+int vpx_setup_noise(int size, double sigma, char *noise);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif // VPX_DSP_POSTPROC_H_