summaryrefslogtreecommitdiff
path: root/vp9/common/vp9_thread_common.c
diff options
context:
space:
mode:
authorRitu Baldwa <ritu.baldwa@ittiam.com>2019-01-02 11:58:34 +0530
committerRitu Baldwa <ritu.baldwa@ittiam.com>2019-01-19 10:20:32 +0530
commit5818014b691c1dc20f3597bbcbf165782b54eacb (patch)
treed5bbe5ebaebde85b614a467777307260f6ef73a0 /vp9/common/vp9_thread_common.c
parent06983668cf41f66765528db044419f954e5a5d64 (diff)
downloadlibvpx-5818014b691c1dc20f3597bbcbf165782b54eacb.tar
libvpx-5818014b691c1dc20f3597bbcbf165782b54eacb.tar.gz
libvpx-5818014b691c1dc20f3597bbcbf165782b54eacb.tar.bz2
libvpx-5818014b691c1dc20f3597bbcbf165782b54eacb.zip
Revert "Revert "Add Tile-SB-Row based Multi-threading in Decoder""
This reverts commit 06983668cf41f66765528db044419f954e5a5d64. Fixes Visual Studio build errors introduced by earlier row mt commit BUG=webm:1587 Change-Id: I792df86e8254cd6b2a511955b691af619a569cd0
Diffstat (limited to 'vp9/common/vp9_thread_common.c')
-rw-r--r--vp9/common/vp9_thread_common.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/vp9/common/vp9_thread_common.c b/vp9/common/vp9_thread_common.c
index b008ed5cf..00882a5f9 100644
--- a/vp9/common/vp9_thread_common.c
+++ b/vp9/common/vp9_thread_common.c
@@ -475,6 +475,12 @@ void vp9_set_row(VP9LfSync *lf_sync, int num_tiles, int row, int is_last_row,
#endif // CONFIG_MULTITHREAD
}
+void vp9_loopfilter_job(LFWorkerData *lf_data, VP9LfSync *lf_sync) {
+ thread_loop_filter_rows(lf_data->frame_buffer, lf_data->cm, lf_data->planes,
+ lf_data->start, lf_data->stop, lf_data->y_only,
+ lf_sync);
+}
+
// Accumulate frame counts.
void vp9_accumulate_frame_counts(FRAME_COUNTS *accum,
const FRAME_COUNTS *counts, int is_dec) {