summaryrefslogtreecommitdiff
path: root/vpx_dsp
diff options
context:
space:
mode:
authorJerome Jiang <jianj@google.com>2019-03-21 22:24:20 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2019-03-21 22:24:20 +0000
commitdc3b508f573de77abe8ec15d0644d9ad87898699 (patch)
tree278e4c4c91afc12b9641a9da5201a630d4919185 /vpx_dsp
parent674b2cb40cd03e2ec4f1022fbab71f3c8a315a37 (diff)
parentf4828c1512ec118972448401dd15b9c2c992ad79 (diff)
downloadlibvpx-dc3b508f573de77abe8ec15d0644d9ad87898699.tar
libvpx-dc3b508f573de77abe8ec15d0644d9ad87898699.tar.gz
libvpx-dc3b508f573de77abe8ec15d0644d9ad87898699.tar.bz2
libvpx-dc3b508f573de77abe8ec15d0644d9ad87898699.zip
Merge "vp9 postproc neon: Remove the condition on mb cols."
Diffstat (limited to 'vpx_dsp')
-rw-r--r--vpx_dsp/arm/deblock_neon.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/vpx_dsp/arm/deblock_neon.c b/vpx_dsp/arm/deblock_neon.c
index 1fb41d299..7efce3273 100644
--- a/vpx_dsp/arm/deblock_neon.c
+++ b/vpx_dsp/arm/deblock_neon.c
@@ -91,11 +91,6 @@ void vpx_post_proc_down_and_across_mb_row_neon(uint8_t *src_ptr,
int row;
int col;
- // Process a stripe of macroblocks. The stripe will be a multiple of 16 (for
- // Y) or 8 (for U/V) wide (cols) and the height (size) will be 16 (for Y) or 8
- // (for U/V).
- assert((size == 8 || size == 16) && cols % 8 == 0);
-
// While columns of length 16 can be processed, load them.
for (col = 0; col < cols - 8; col += 16) {
uint8x16_t a0, a1, a2, a3, a4, a5, a6, a7;