summaryrefslogtreecommitdiff
path: root/vp8/common/arm
diff options
context:
space:
mode:
authorJohann <johannkoenig@google.com>2019-01-07 20:38:13 -0800
committerJohann <johannkoenig@google.com>2019-01-07 20:38:13 -0800
commitdf755d55b0b221dcc3d1c972b525e2007b6266f9 (patch)
treea4e2c5c7b3bf48a2290d98d28c7612d54614b3a9 /vp8/common/arm
parent16664b539eac0d46aa9d0e4c06e8bbc9edae2ddd (diff)
downloadlibvpx-df755d55b0b221dcc3d1c972b525e2007b6266f9.tar
libvpx-df755d55b0b221dcc3d1c972b525e2007b6266f9.tar.gz
libvpx-df755d55b0b221dcc3d1c972b525e2007b6266f9.tar.bz2
libvpx-df755d55b0b221dcc3d1c972b525e2007b6266f9.zip
vp8 idct: remove return
Change-Id: Ib1648e1f6559e65ddf11cb54266c7eeff37a6ea6
Diffstat (limited to 'vp8/common/arm')
-rw-r--r--vp8/common/arm/neon/idct_blk_neon.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/vp8/common/arm/neon/idct_blk_neon.c b/vp8/common/arm/neon/idct_blk_neon.c
index af35b848c..5c26ce67a 100644
--- a/vp8/common/arm/neon/idct_blk_neon.c
+++ b/vp8/common/arm/neon/idct_blk_neon.c
@@ -57,7 +57,6 @@ static void idct_dequant_0_2x_neon(int16_t *q, int16_t dq, unsigned char *dst,
dst0 += stride;
vst1_lane_s32((int32_t *)dst0, d4s32, 1);
}
- return;
}
static const int16_t cospi8sqrt2minus1 = 20091;
@@ -228,7 +227,6 @@ static void idct_dequant_full_2x_neon(int16_t *q, int16_t *dq,
dst1 += stride;
vst1_lane_s32((int32_t *)dst0, d31, 0);
vst1_lane_s32((int32_t *)dst1, d31, 1);
- return;
}
void vp8_dequant_idct_add_y_block_neon(short *q, short *dq, unsigned char *dst,