summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmeric Grange <emeric.grange@gmail.com>2012-01-18 18:23:45 +0100
committerEmeric Grange <emeric.grange@gmail.com>2012-06-24 16:57:32 +0200
commit9561f678b2e4d3b8725af22b521a32efae17bb94 (patch)
tree8dccafce812bc448bca629263d0b6c9db1514183
parent28a7dc7d38526c5ac9fc0b5078eaf5a51562362d (diff)
g3dvl: vp8/decoder/dequantize.h was missing
Signed-off-by: Emeric Grange <emeric.grange@gmail.com>
-rw-r--r--src/gallium/auxiliary/vl/vp8/decoder/dequantize.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/vl/vp8/decoder/dequantize.h b/src/gallium/auxiliary/vl/vp8/decoder/dequantize.h
new file mode 100644
index 0000000000..2c03f08565
--- /dev/null
+++ b/src/gallium/auxiliary/vl/vp8/decoder/dequantize.h
@@ -0,0 +1,26 @@
+/*
+ * Copyright (c) 2010 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 DEQUANTIZE_H
+#define DEQUANTIZE_H
+
+#include "../common/blockd.h"
+
+void vp8_dequant_b_c(BLOCKD *d);
+
+void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *pred,
+ unsigned char *dest, int pitch, int stride);
+
+void vp8_dequant_dc_idct_add_c(short *input, short *dq, unsigned char *pred,
+ unsigned char *dest, int pitch, int stride,
+ int dc);
+
+#endif /* DEQUANTIZE_H */