summaryrefslogtreecommitdiff
path: root/vpx_dsp/mips/itrans4_dspr2.c
diff options
context:
space:
mode:
authorJingning Han <jingning@google.com>2015-08-03 14:51:10 -0700
committerJingning Han <jingning@google.com>2015-08-04 13:46:11 -0700
commit08a453b9de37c796f52e439da98364923726d095 (patch)
tree4ceea9ae4b52a2abc0a714f81946d91fc2e3f5db /vpx_dsp/mips/itrans4_dspr2.c
parentbfad9d2fe6e3a17e1deff19977c8c0907828bb6f (diff)
downloadlibvpx-08a453b9de37c796f52e439da98364923726d095.tar
libvpx-08a453b9de37c796f52e439da98364923726d095.tar.gz
libvpx-08a453b9de37c796f52e439da98364923726d095.tar.bz2
libvpx-08a453b9de37c796f52e439da98364923726d095.zip
Replace vp9_ prefix with vpx_ prefix in vpx_dsp function names
This commit clears the function naming convention in vpx_dsp. It replaces vp9_ prefix of global functions with vpx_ prefix. It also removes the vp9_ prefix from static functions. Change-Id: I6394359a63b71a51dda01342eec6a3cc08dfeedf
Diffstat (limited to 'vpx_dsp/mips/itrans4_dspr2.c')
-rw-r--r--vpx_dsp/mips/itrans4_dspr2.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/vpx_dsp/mips/itrans4_dspr2.c b/vpx_dsp/mips/itrans4_dspr2.c
index b48e73bba..ecb8bd3de 100644
--- a/vpx_dsp/mips/itrans4_dspr2.c
+++ b/vpx_dsp/mips/itrans4_dspr2.c
@@ -14,7 +14,7 @@
#include "vpx_dsp/txfm_common.h"
#if HAVE_DSPR2
-void vp9_idct4_rows_dspr2(const int16_t *input, int16_t *output) {
+void vpx_idct4_rows_dspr2(const int16_t *input, int16_t *output) {
int16_t step_0, step_1, step_2, step_3;
int Temp0, Temp1, Temp2, Temp3;
const int const_2_power_13 = 8192;
@@ -99,7 +99,7 @@ void vp9_idct4_rows_dspr2(const int16_t *input, int16_t *output) {
}
}
-void vp9_idct4_columns_add_blk_dspr2(int16_t *input, uint8_t *dest,
+void vpx_idct4_columns_add_blk_dspr2(int16_t *input, uint8_t *dest,
int dest_stride) {
int16_t step_0, step_1, step_2, step_3;
int Temp0, Temp1, Temp2, Temp3;
@@ -221,7 +221,7 @@ void vp9_idct4_columns_add_blk_dspr2(int16_t *input, uint8_t *dest,
}
}
-void vp9_idct4x4_16_add_dspr2(const int16_t *input, uint8_t *dest,
+void vpx_idct4x4_16_add_dspr2(const int16_t *input, uint8_t *dest,
int dest_stride) {
DECLARE_ALIGNED(32, int16_t, out[4 * 4]);
int16_t *outptr = out;
@@ -235,13 +235,13 @@ void vp9_idct4x4_16_add_dspr2(const int16_t *input, uint8_t *dest,
);
// Rows
- vp9_idct4_rows_dspr2(input, outptr);
+ vpx_idct4_rows_dspr2(input, outptr);
// Columns
- vp9_idct4_columns_add_blk_dspr2(&out[0], dest, dest_stride);
+ vpx_idct4_columns_add_blk_dspr2(&out[0], dest, dest_stride);
}
-void vp9_idct4x4_1_add_dspr2(const int16_t *input, uint8_t *dest,
+void vpx_idct4x4_1_add_dspr2(const int16_t *input, uint8_t *dest,
int dest_stride) {
int a1, absa1;
int r;