Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
aom-rav1e
Commits
9aa4fad7
Commit
9aa4fad7
authored
Jun 29, 2014
by
Jim Bankoski
Browse files
silence unused parm warning for worker thread in loop filter
Change-Id: Id51468f99f8970b8795ce2d254344f4b8d7817d0
parent
a13bf653
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/decoder/vp9_dthread.c
View file @
9aa4fad7
...
...
@@ -124,7 +124,7 @@ static void loop_filter_rows_mt(const YV12_BUFFER_CONFIG *const frame_buffer,
static
int
loop_filter_row_worker
(
void
*
arg1
,
void
*
arg2
)
{
TileWorkerData
*
const
tile_data
=
(
TileWorkerData
*
)
arg1
;
LFWorkerData
*
const
lf_data
=
&
tile_data
->
lfdata
;
(
void
)
arg2
;
loop_filter_rows_mt
(
lf_data
->
frame_buffer
,
lf_data
->
cm
,
lf_data
->
planes
,
lf_data
->
start
,
lf_data
->
stop
,
lf_data
->
y_only
,
lf_data
->
lf_sync
,
lf_data
->
num_lf_workers
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment