]> granicus.if.org Git - libvpx/commitdiff
Fix a build issue
authorYaowu Xu <yaowu@google.com>
Thu, 31 Mar 2016 23:06:24 +0000 (16:06 -0700)
committerYaowu Xu <yaowu@google.com>
Thu, 31 Mar 2016 23:06:24 +0000 (16:06 -0700)
Change-Id: Ifdb32c487632098496bf59fcc76c518f8f0426d2

vp10/common/reconinter.c

index 547c202a468ad021fadbddcea9feea313dd7ba55..766ccf7994fccc9d1b5d09cedf0ae248586e282c 100644 (file)
@@ -1915,8 +1915,8 @@ static void build_intra_predictors_for_interintra(
                              0, 0, plane);
 #if CONFIG_VP9_HIGHBITDEPTH
     if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) {
-      uint16_t *src_216 = CONVERT_TO_SHORTPTR(src_2);
-      uint16_t *dst_216 = CONVERT_TO_SHORTPTR(dst_2);
+      uint16_t *src2_16 = CONVERT_TO_SHORTPTR(src_2);
+      uint16_t *dst2_16 = CONVERT_TO_SHORTPTR(dst_2);
       memcpy(src2_16 - ref_stride, dst2_16 - dst_stride,
              sizeof(*src2_16) * (4 << bhl));
     } else