]> granicus.if.org Git - libvpx/commitdiff
vp8 idct: remove return
authorJohann <johannkoenig@google.com>
Tue, 8 Jan 2019 04:38:13 +0000 (20:38 -0800)
committerJohann <johannkoenig@google.com>
Tue, 8 Jan 2019 04:38:13 +0000 (20:38 -0800)
Change-Id: Ib1648e1f6559e65ddf11cb54266c7eeff37a6ea6

vp8/common/arm/neon/idct_blk_neon.c

index af35b848c81c29e1d1324ac959637c376dd6ed95..5c26ce67a4343f45f86ad5178890079cb889c170 100644 (file)
@@ -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,