summaryrefslogtreecommitdiff
path: root/vp8/common
diff options
context:
space:
mode:
authorJohann Koenig <johannkoenig@google.com>2019-01-08 15:39:10 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2019-01-08 15:39:10 +0000
commitc1d523d86080b1972ce17e290dae2acb06f990e6 (patch)
tree01954fc1df4da0f2b79cfc0f933d08a93a39170f /vp8/common
parente7aa3bcd955db09699eb4e493b8bed725b79394b (diff)
parentdf755d55b0b221dcc3d1c972b525e2007b6266f9 (diff)
downloadlibvpx-c1d523d86080b1972ce17e290dae2acb06f990e6.tar
libvpx-c1d523d86080b1972ce17e290dae2acb06f990e6.tar.gz
libvpx-c1d523d86080b1972ce17e290dae2acb06f990e6.tar.bz2
libvpx-c1d523d86080b1972ce17e290dae2acb06f990e6.zip
Merge "vp8 idct: remove return"
Diffstat (limited to 'vp8/common')
-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,