summaryrefslogtreecommitdiff
path: root/vpx_dsp/mips/itrans8_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/itrans8_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/itrans8_dspr2.c')
-rw-r--r--vpx_dsp/mips/itrans8_dspr2.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/vpx_dsp/mips/itrans8_dspr2.c b/vpx_dsp/mips/itrans8_dspr2.c
index d3baba936..823e845d5 100644
--- a/vpx_dsp/mips/itrans8_dspr2.c
+++ b/vpx_dsp/mips/itrans8_dspr2.c
@@ -442,7 +442,7 @@ void idct8_columns_add_blk_dspr2(int16_t *input, uint8_t *dest,
}
}
-void vp9_idct8x8_64_add_dspr2(const int16_t *input, uint8_t *dest,
+void vpx_idct8x8_64_add_dspr2(const int16_t *input, uint8_t *dest,
int dest_stride) {
DECLARE_ALIGNED(32, int16_t, out[8 * 8]);
int16_t *outptr = out;
@@ -462,7 +462,7 @@ void vp9_idct8x8_64_add_dspr2(const int16_t *input, uint8_t *dest,
idct8_columns_add_blk_dspr2(&out[0], dest, dest_stride);
}
-void vp9_idct8x8_12_add_dspr2(const int16_t *input, uint8_t *dest,
+void vpx_idct8x8_12_add_dspr2(const int16_t *input, uint8_t *dest,
int dest_stride) {
DECLARE_ALIGNED(32, int16_t, out[8 * 8]);
int16_t *outptr = out;
@@ -507,7 +507,7 @@ void vp9_idct8x8_12_add_dspr2(const int16_t *input, uint8_t *dest,
idct8_columns_add_blk_dspr2(&out[0], dest, dest_stride);
}
-void vp9_idct8x8_1_add_dspr2(const int16_t *input, uint8_t *dest,
+void vpx_idct8x8_1_add_dspr2(const int16_t *input, uint8_t *dest,
int dest_stride) {
uint32_t pos = 45;
int32_t out;