av1 inv txfm: remove unused function

dct_const_round_shift_low_8_dual was obviated in d4f25b6

Change-Id: I8ef8d07ff455fa6c7263489460ee74ff8e02a9b0
diff --git a/av1/common/arm/av1_inv_txfm_neon.c b/av1/common/arm/av1_inv_txfm_neon.c
index 626e294..bad4117 100644
--- a/av1/common/arm/av1_inv_txfm_neon.c
+++ b/av1/common/arm/av1_inv_txfm_neon.c
@@ -104,14 +104,6 @@
     a[i] = vdupq_n_s16((int16_t)value);
   }
 }
-static INLINE void dct_const_round_shift_low_8_dual(const int32x4_t *t32,
-                                                    int16x8_t *d0,
-                                                    int16x8_t *d1) {
-  *d0 = vcombine_s16(vrshrn_n_s32(t32[0], INV_COS_BIT),
-                     vrshrn_n_s32(t32[1], INV_COS_BIT));
-  *d1 = vcombine_s16(vrshrn_n_s32(t32[2], INV_COS_BIT),
-                     vrshrn_n_s32(t32[3], INV_COS_BIT));
-}
 
 static INLINE void btf_16_lane_0_1_neon(const int16x8_t in0,
                                         const int16x8_t in1, const int16x4_t c,