Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(774)

Unified Diff: source/libvpx/vpx_dsp/mips/itrans32_dspr2.c

Issue 1302353004: libvpx: Pull from upstream (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libvpx.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « source/libvpx/vpx_dsp/mips/itrans32_cols_dspr2.c ('k') | source/libvpx/vpx_dsp/mips/itrans4_dspr2.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: source/libvpx/vpx_dsp/mips/itrans32_dspr2.c
diff --git a/source/libvpx/vp9/common/mips/dspr2/vp9_itrans32_dspr2.c b/source/libvpx/vpx_dsp/mips/itrans32_dspr2.c
similarity index 99%
rename from source/libvpx/vp9/common/mips/dspr2/vp9_itrans32_dspr2.c
rename to source/libvpx/vpx_dsp/mips/itrans32_dspr2.c
index b4b0d248c696280c0b9a709fb1929e8c5ab8dffb..523da1df1bc7bb45e78b94f29041e4a7a990c114 100644
--- a/source/libvpx/vp9/common/mips/dspr2/vp9_itrans32_dspr2.c
+++ b/source/libvpx/vpx_dsp/mips/itrans32_dspr2.c
@@ -12,10 +12,7 @@
#include <stdio.h>
#include "./vpx_config.h"
-#include "./vp9_rtcd.h"
-#include "vp9/common/vp9_common.h"
-#include "vp9/common/vp9_blockd.h"
-#include "vp9/common/mips/dspr2/vp9_common_dspr2.h"
+#include "vpx_dsp/mips/inv_txfm_dspr2.h"
#include "vpx_dsp/txfm_common.h"
#if HAVE_DSPR2
@@ -868,7 +865,7 @@ static void idct32_rows_dspr2(const int16_t *input, int16_t *output,
}
}
-void vp9_idct32x32_1024_add_dspr2(const int16_t *input, uint8_t *dest,
+void vpx_idct32x32_1024_add_dspr2(const int16_t *input, uint8_t *dest,
int dest_stride) {
DECLARE_ALIGNED(32, int16_t, out[32 * 32]);
int16_t *outptr = out;
@@ -885,10 +882,10 @@ void vp9_idct32x32_1024_add_dspr2(const int16_t *input, uint8_t *dest,
idct32_rows_dspr2(input, outptr, 32);
// Columns
- vp9_idct32_cols_add_blk_dspr2(out, dest, dest_stride);
+ vpx_idct32_cols_add_blk_dspr2(out, dest, dest_stride);
}
-void vp9_idct32x32_34_add_dspr2(const int16_t *input, uint8_t *dest,
+void vpx_idct32x32_34_add_dspr2(const int16_t *input, uint8_t *dest,
int stride) {
DECLARE_ALIGNED(32, int16_t, out[32 * 32]);
int16_t *outptr = out;
@@ -947,10 +944,10 @@ void vp9_idct32x32_34_add_dspr2(const int16_t *input, uint8_t *dest,
}
// Columns
- vp9_idct32_cols_add_blk_dspr2(out, dest, stride);
+ vpx_idct32_cols_add_blk_dspr2(out, dest, stride);
}
-void vp9_idct32x32_1_add_dspr2(const int16_t *input, uint8_t *dest,
+void vpx_idct32x32_1_add_dspr2(const int16_t *input, uint8_t *dest,
int stride) {
int r, out;
int32_t a1, absa1;
« no previous file with comments | « source/libvpx/vpx_dsp/mips/itrans32_cols_dspr2.c ('k') | source/libvpx/vpx_dsp/mips/itrans4_dspr2.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698