Fix typo in previous patch (av1_make_masked_inter_predictor)

With convolve round, tmp_buf32 should be set to tmp_buf rather than
tmp_dst because we want the actual pointer value rather than the funky
rescaled one when the frame is high bit depth.

Change-Id: I614ca1ebb4b6db8c4957fdced9dc2009a7ac107e
diff --git a/av1/common/reconinter.c b/av1/common/reconinter.c
index 6215c29..5a54f72 100644
--- a/av1/common/reconinter.c
+++ b/av1/common/reconinter.c
@@ -1012,7 +1012,7 @@
   const int is_conv_no_round = conv_params->round == CONVOLVE_OPT_NO_ROUND;
   CONV_BUF_TYPE *org_dst = conv_params->dst;
   int org_dst_stride = conv_params->dst_stride;
-  CONV_BUF_TYPE *tmp_buf32 = (CONV_BUF_TYPE *)tmp_dst;
+  CONV_BUF_TYPE *tmp_buf32 = (CONV_BUF_TYPE *)tmp_buf;
   if (is_conv_no_round) {
     conv_params->dst = tmp_buf32;
     conv_params->dst_stride = tmp_buf_stride;