summaryrefslogtreecommitdiff
path: root/vp9/common/vp9_thread_common.c
diff options
context:
space:
mode:
authorHarish Mahendrakar <harish.mahendrakar@ittiam.com>2018-12-21 05:48:12 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2018-12-21 05:48:12 +0000
commit4bab0eca075eb672c9b6ec03a92fcbf06b06720a (patch)
treecf9e7451fa655f3174abf62d1e872a41571e098f /vp9/common/vp9_thread_common.c
parent3e852ff6eea7a634a350f7a9815ec7b393a65ba6 (diff)
parent02b3ef7faee5be5ee519856fbb3523d3ab49f6e7 (diff)
downloadlibvpx-4bab0eca075eb672c9b6ec03a92fcbf06b06720a.tar
libvpx-4bab0eca075eb672c9b6ec03a92fcbf06b06720a.tar.gz
libvpx-4bab0eca075eb672c9b6ec03a92fcbf06b06720a.tar.bz2
libvpx-4bab0eca075eb672c9b6ec03a92fcbf06b06720a.zip
Merge "Add Tile-SB-Row based Multi-threading in Decoder"
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) {