summaryrefslogtreecommitdiff
path: root/vp9
diff options
context:
space:
mode:
authorChi Yo Tsai <chiyotsai@google.com>2019-01-30 17:52:41 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2019-01-30 17:52:41 +0000
commit735ac5547ff5331fa0e2eb8ea975b249d3c56e6a (patch)
tree20182edf2cd1672c9318f150b62aad5b27afaea3 /vp9
parentbf59fb119eef062e35b01121d63f9eb94f6cd7eb (diff)
parent9c3557e6d525e44ff5aa8d1f4d631f0782e48b30 (diff)
downloadlibvpx-735ac5547ff5331fa0e2eb8ea975b249d3c56e6a.tar
libvpx-735ac5547ff5331fa0e2eb8ea975b249d3c56e6a.tar.gz
libvpx-735ac5547ff5331fa0e2eb8ea975b249d3c56e6a.tar.bz2
libvpx-735ac5547ff5331fa0e2eb8ea975b249d3c56e6a.zip
Merge "Reland "Enable SSE4 version of apply temporal filter""
Diffstat (limited to 'vp9')
-rw-r--r--vp9/encoder/vp9_temporal_filter.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vp9/encoder/vp9_temporal_filter.c b/vp9/encoder/vp9_temporal_filter.c
index c9060ad58..ee5f0e56c 100644
--- a/vp9/encoder/vp9_temporal_filter.c
+++ b/vp9/encoder/vp9_temporal_filter.c
@@ -779,7 +779,7 @@ void vp9_temporal_filter_iterate_row_c(VP9_COMP *cpi, ThreadData *td,
count + (BLK_PELS << 1));
} else {
// Apply the filter (YUV)
- vp9_apply_temporal_filter_c(
+ vp9_apply_temporal_filter(
f->y_buffer + mb_y_offset, f->y_stride, predictor, BW,
f->u_buffer + mb_uv_offset, f->v_buffer + mb_uv_offset,
f->uv_stride, predictor + BLK_PELS, predictor + (BLK_PELS << 1),
@@ -790,7 +790,7 @@ void vp9_temporal_filter_iterate_row_c(VP9_COMP *cpi, ThreadData *td,
}
#else
// Apply the filter (YUV)
- vp9_apply_temporal_filter_c(
+ vp9_apply_temporal_filter(
f->y_buffer + mb_y_offset, f->y_stride, predictor, BW,
f->u_buffer + mb_uv_offset, f->v_buffer + mb_uv_offset,
f->uv_stride, predictor + BLK_PELS, predictor + (BLK_PELS << 1),