shithub: libvpx

Download patch

ref: fa5083e8e21fe6aa85670a1406d4d41660a031dd
parent: 759d1de9d0d22bab78bc4946998af79ff8b2044d
author: Deepa K G <deepa.kg@ittiam.com>
date: Fri Jan 11 13:02:12 EST 2019

Fix segmentation fault in hbd path

When CONFIG_VP9_HIGHBITDEPTH is enabled,
lowbd modules were called in the hbd path.
This patch fixes the issue.

(cherry picked from commit 797ec1cd66c04fd335adba8ecc01dc93eab1898e)

BUG=webm:1589

Change-Id: I1caf701514dbf80eb75b953f40b1e7238f265a2c

--- a/vp9/encoder/vp9_temporal_filter.c
+++ b/vp9/encoder/vp9_temporal_filter.c
@@ -110,11 +110,16 @@
             CONVERT_TO_SHORTPTR(y_mb_ptr + y_offset), stride,
             CONVERT_TO_SHORTPTR(&pred[p_offset]), BW, &mv, scale, xs, ys,
             which_mv, kernel, MV_PRECISION_Q3, x, y, xd->bd);
+      } else {
+        vp9_build_inter_predictor(y_mb_ptr + y_offset, stride, &pred[p_offset],
+                                  BW, &mv, scale, xs, ys, which_mv, kernel,
+                                  MV_PRECISION_Q3, x, y);
       }
-#endif  // CONFIG_VP9_HIGHBITDEPTH
+#else
       vp9_build_inter_predictor(y_mb_ptr + y_offset, stride, &pred[p_offset],
                                 BW, &mv, scale, xs, ys, which_mv, kernel,
                                 MV_PRECISION_Q3, x, y);
+#endif  // CONFIG_VP9_HIGHBITDEPTH
       k++;
     }
   }
@@ -143,8 +148,18 @@
             CONVERT_TO_SHORTPTR(&pred[(BLK_PELS << 1) + p_offset]),
             uv_block_width, &mv, scale, xs, ys, which_mv, kernel,
             mv_precision_uv, x, y, xd->bd);
+      } else {
+        vp9_build_inter_predictor(u_mb_ptr + uv_offset, uv_stride,
+                                  &pred[BLK_PELS + p_offset], uv_block_width,
+                                  &mv, scale, xs, ys, which_mv, kernel,
+                                  mv_precision_uv, x, y);
+
+        vp9_build_inter_predictor(v_mb_ptr + uv_offset, uv_stride,
+                                  &pred[(BLK_PELS << 1) + p_offset],
+                                  uv_block_width, &mv, scale, xs, ys, which_mv,
+                                  kernel, mv_precision_uv, x, y);
       }
-#endif  // CONFIG_VP9_HIGHBITDEPTH
+#else
       vp9_build_inter_predictor(u_mb_ptr + uv_offset, uv_stride,
                                 &pred[BLK_PELS + p_offset], uv_block_width, &mv,
                                 scale, xs, ys, which_mv, kernel,
@@ -154,6 +169,7 @@
                                 &pred[(BLK_PELS << 1) + p_offset],
                                 uv_block_width, &mv, scale, xs, ys, which_mv,
                                 kernel, mv_precision_uv, x, y);
+#endif  // CONFIG_VP9_HIGHBITDEPTH
       k++;
     }
   }