summaryrefslogtreecommitdiff
path: root/vp9/decoder/vp9_dthread.c
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2014-08-31 12:21:42 -0700
committerJames Zern <jzern@google.com>2014-10-16 17:27:57 +0200
commiteb3fdfba0932bc4f563c71106f7645c1b43d7d39 (patch)
tree0630f8f761f0c1ad4bade89003545fb37949cee1 /vp9/decoder/vp9_dthread.c
parentff3ae42d8ce434dd23cb6544b53a3afce9408565 (diff)
downloadlibvpx-eb3fdfba0932bc4f563c71106f7645c1b43d7d39.tar
libvpx-eb3fdfba0932bc4f563c71106f7645c1b43d7d39.tar.gz
libvpx-eb3fdfba0932bc4f563c71106f7645c1b43d7d39.tar.bz2
libvpx-eb3fdfba0932bc4f563c71106f7645c1b43d7d39.zip
vp9_loop_filter_frame_mt: pass VP9LfSync directly
a step towards removing the pbi dependency Change-Id: I10747b325e81c172f5e67031ea5159159fc26e91
Diffstat (limited to 'vp9/decoder/vp9_dthread.c')
-rw-r--r--vp9/decoder/vp9_dthread.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vp9/decoder/vp9_dthread.c b/vp9/decoder/vp9_dthread.c
index 69e4fde85..982d58aec 100644
--- a/vp9/decoder/vp9_dthread.c
+++ b/vp9/decoder/vp9_dthread.c
@@ -133,11 +133,11 @@ static int loop_filter_row_worker(TileWorkerData *const tile_data,
// VP9 decoder: Implement multi-threaded loopfilter that uses the tile
// threads.
-void vp9_loop_filter_frame_mt(YV12_BUFFER_CONFIG *frame,
+void vp9_loop_filter_frame_mt(VP9LfSync *lf_sync,
+ YV12_BUFFER_CONFIG *frame,
VP9Decoder *pbi, VP9_COMMON *cm,
int frame_filter_level,
int y_only) {
- VP9LfSync *const lf_sync = &pbi->lf_row_sync;
const VP9WorkerInterface *const winterface = vp9_get_worker_interface();
// Number of superblock rows and cols
const int sb_rows = mi_cols_aligned_to_sb(cm->mi_rows) >> MI_BLOCK_SIZE_LOG2;