summaryrefslogtreecommitdiff
path: root/scriptc
diff options
context:
space:
mode:
authorTim Murray <timmurray@google.com>2014-04-23 21:15:56 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2014-04-23 21:15:56 +0000
commit087fa6e19968b55e5fae7aa38971c8ec63b616c6 (patch)
treedb373b62a87699bf5b093b0478957d20d40619b0 /scriptc
parent70fe08dd27dc8fa682275a7057e8baafa6aa9369 (diff)
parent531ee4ef10f54dab0ba1d5f7248073da06907425 (diff)
downloadrs-087fa6e19968b55e5fae7aa38971c8ec63b616c6.tar.gz
Merge "Remove VP9-related runtime functions."
Diffstat (limited to 'scriptc')
-rw-r--r--scriptc/rs_dct.rsh14
-rw-r--r--scriptc/rs_fadst.rsh14
-rw-r--r--scriptc/rs_iadst.rsh14
-rw-r--r--scriptc/rs_idct.rsh13
-rw-r--r--scriptc/rs_vp9.rsh29
-rw-r--r--scriptc/rs_walsh.rsh11
6 files changed, 0 insertions, 95 deletions
diff --git a/scriptc/rs_dct.rsh b/scriptc/rs_dct.rsh
deleted file mode 100644
index d7289dd8..00000000
--- a/scriptc/rs_dct.rsh
+++ /dev/null
@@ -1,14 +0,0 @@
-#ifndef __RS_DCT_RSH__
-#define __RS_DCT_RSH__
-
-#if RS_VERSION > 19
-
-extern void rsDct4x4(rs_allocation input, rs_allocation output, int xoff, int yoff);
-extern void rsDct8x8(rs_allocation input, rs_allocation output, int xoff, int yoff);
-extern void rsDct16x16(rs_allocation input, rs_allocation output, int xoff, int yoff);
-extern void rsDct32x32(rs_allocation input, rs_allocation out, int xoff, int yoff);
-extern void rsDct32x32_rd(rs_allocation input, rs_allocation out, int xoff, int yoff);
-
-#endif
-
-#endif
diff --git a/scriptc/rs_fadst.rsh b/scriptc/rs_fadst.rsh
deleted file mode 100644
index 1dfe58fb..00000000
--- a/scriptc/rs_fadst.rsh
+++ /dev/null
@@ -1,14 +0,0 @@
-#ifndef __RS_FADST_RSH__
-#define __RS_FADST_RSH__
-
-#if RS_VERSION > 19
-
-extern void rsFadst4(const rs_allocation input, rs_allocation output, int32_t xoff);
-
-extern void rsFadst8(const rs_allocation input, rs_allocation output, int32_t xoff);
-
-extern void rsFadst16(const rs_allocation input, rs_allocation output, int32_t xoff);
-
-#endif
-
-#endif \ No newline at end of file
diff --git a/scriptc/rs_iadst.rsh b/scriptc/rs_iadst.rsh
deleted file mode 100644
index 32088148..00000000
--- a/scriptc/rs_iadst.rsh
+++ /dev/null
@@ -1,14 +0,0 @@
-#ifndef __RS_IADST_RSH__
-#define __RS_IADST_RSH__
-
-#if RS_VERSION > 19
-
-extern void rsIadst4(const rs_allocation input, rs_allocation output, int32_t xoff);
-
-extern void rsIadst8(const rs_allocation input, rs_allocation output, int32_t xoff);
-
-extern void rsIadst16(const rs_allocation input, rs_allocation output, int32_t xoff);
-
-#endif
-
-#endif \ No newline at end of file
diff --git a/scriptc/rs_idct.rsh b/scriptc/rs_idct.rsh
deleted file mode 100644
index d602e348..00000000
--- a/scriptc/rs_idct.rsh
+++ /dev/null
@@ -1,13 +0,0 @@
-#ifndef __RS_IDCT_RSH__
-#define __RS_IDCT_RSH__
-
-#if RS_VERSION > 19
-
-extern void rsIdct4x4(const rs_allocation input, rs_allocation dest, int eob, int xoff, int yoff);
-extern void rsIdct8x8(const rs_allocation input, rs_allocation dest, int eob, int xoff, int yoff);
-extern void rsIdct16x16(const rs_allocation input, rs_allocation dest, int eob, int xoff, int yoff);
-extern void rsIdct32x32(const rs_allocation input, rs_allocation dest, int eob, int xoff, int yoff);
-
-#endif
-
-#endif
diff --git a/scriptc/rs_vp9.rsh b/scriptc/rs_vp9.rsh
deleted file mode 100644
index 52fbe810..00000000
--- a/scriptc/rs_vp9.rsh
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
- * Copyright (C) 2014 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-
-#ifndef __RS_VP9_RSH__
-#define __RS_VP9_RSH__
-
-
-#include "rs_idct.rsh"
-#include "rs_dct.rsh"
-#include "rs_iadst.rsh"
-#include "rs_fadst.rsh"
-#include "rs_walsh.rsh"
-
-#endif
-
diff --git a/scriptc/rs_walsh.rsh b/scriptc/rs_walsh.rsh
deleted file mode 100644
index 6f7445d3..00000000
--- a/scriptc/rs_walsh.rsh
+++ /dev/null
@@ -1,11 +0,0 @@
-#ifndef __RS_WALSH_RSH__
-#define __RS_WALSH_RSH__
-
-#if RS_VERSION > 19
-
-extern void rsWalsh4x4(rs_allocation input, rs_allocation dest, int xoff, int yoff);
-extern void rsWalsh4x4_1(rs_allocation input, rs_allocation dest, int xoff, int yoff);
-
-#endif
-
-#endif