summaryrefslogtreecommitdiff
path: root/vpx_dsp/mips/itrans32_dspr2.c
diff options
context:
space:
mode:
authorLinfeng Zhang <linfengz@google.com>2016-12-12 15:13:22 -0800
committerLinfeng Zhang <linfengz@google.com>2016-12-12 15:13:22 -0800
commit5d4aa325a6be1be3688eb893aa64b0f91b4ff07a (patch)
tree41599ab23f3f3ed6843fd1830e10176eb65d403e /vpx_dsp/mips/itrans32_dspr2.c
parent282f3b3d783da20dd9d2a896ec773ef61b54bbc6 (diff)
downloadlibvpx-5d4aa325a6be1be3688eb893aa64b0f91b4ff07a.tar
libvpx-5d4aa325a6be1be3688eb893aa64b0f91b4ff07a.tar.gz
libvpx-5d4aa325a6be1be3688eb893aa64b0f91b4ff07a.tar.bz2
libvpx-5d4aa325a6be1be3688eb893aa64b0f91b4ff07a.zip
Cosmetics by unifying dest_stride to stride in idct
Change-Id: Ie9336a808a3c3592bb4fd5d4ad3839028bfcafba
Diffstat (limited to 'vpx_dsp/mips/itrans32_dspr2.c')
-rw-r--r--vpx_dsp/mips/itrans32_dspr2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vpx_dsp/mips/itrans32_dspr2.c b/vpx_dsp/mips/itrans32_dspr2.c
index d71c5ffed..33e07f22a 100644
--- a/vpx_dsp/mips/itrans32_dspr2.c
+++ b/vpx_dsp/mips/itrans32_dspr2.c
@@ -836,7 +836,7 @@ static void idct32_rows_dspr2(const int16_t *input, int16_t *output,
}
void vpx_idct32x32_1024_add_dspr2(const int16_t *input, uint8_t *dest,
- int dest_stride) {
+ int stride) {
DECLARE_ALIGNED(32, int16_t, out[32 * 32]);
int16_t *outptr = out;
uint32_t pos = 45;
@@ -850,7 +850,7 @@ void vpx_idct32x32_1024_add_dspr2(const int16_t *input, uint8_t *dest,
idct32_rows_dspr2(input, outptr, 32);
// Columns
- vpx_idct32_cols_add_blk_dspr2(out, dest, dest_stride);
+ vpx_idct32_cols_add_blk_dspr2(out, dest, stride);
}
void vpx_idct32x32_34_add_dspr2(const int16_t *input, uint8_t *dest,