summaryrefslogtreecommitdiff
path: root/vpx_dsp/arm
diff options
context:
space:
mode:
authorJingning Han <jingning@google.com>2015-07-28 15:57:40 -0700
committerJingning Han <jingning@google.com>2015-07-28 16:06:44 -0700
commit4b5109cd73946835016550d8ec6cca13995e0ec7 (patch)
tree0f6472dda691faf7f91324874acc1529c7d16abc /vpx_dsp/arm
parenta7e9178d8000be0fe884275e8c8c1d4fc29dfc09 (diff)
downloadlibvpx-4b5109cd73946835016550d8ec6cca13995e0ec7.tar
libvpx-4b5109cd73946835016550d8ec6cca13995e0ec7.tar.gz
libvpx-4b5109cd73946835016550d8ec6cca13995e0ec7.tar.bz2
libvpx-4b5109cd73946835016550d8ec6cca13995e0ec7.zip
Replace vp9_ prefix in 2D-DCT functions with vpx_
Clean up the forward 2D-DCT function names in vpx_dsp. Change-Id: I3117978596d198b690036e7eb05fe429caf3bc25
Diffstat (limited to 'vpx_dsp/arm')
-rw-r--r--vpx_dsp/arm/fwd_txfm_neon.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vpx_dsp/arm/fwd_txfm_neon.c b/vpx_dsp/arm/fwd_txfm_neon.c
index 406b10d4c..79afc91b2 100644
--- a/vpx_dsp/arm/fwd_txfm_neon.c
+++ b/vpx_dsp/arm/fwd_txfm_neon.c
@@ -13,7 +13,7 @@
#include "./vpx_config.h"
#include "vpx_dsp/txfm_common.h"
-void vp9_fdct8x8_neon(const int16_t *input, int16_t *final_output, int stride) {
+void vpx_fdct8x8_neon(const int16_t *input, int16_t *final_output, int stride) {
int i;
// stage 1
int16x8_t input_0 = vshlq_n_s16(vld1q_s16(&input[0 * stride]), 2);
@@ -202,7 +202,7 @@ void vp9_fdct8x8_neon(const int16_t *input, int16_t *final_output, int stride) {
}
}
-void vp9_fdct8x8_1_neon(const int16_t *input, int16_t *output, int stride) {
+void vpx_fdct8x8_1_neon(const int16_t *input, int16_t *output, int stride) {
int r;
int16x8_t sum = vld1q_s16(&input[0]);
for (r = 1; r < 8; ++r) {