Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
aom-rav1e
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Xiph.Org
aom-rav1e
Commits
8c48c943
Commit
8c48c943
authored
14 years ago
by
John Koleszar
Committed by
Code Review
14 years ago
Browse files
Options
Downloads
Plain Diff
Merge "Fix an unused variable warning."
parents
aa4a90c8
56efffdc
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
vp8/decoder/threading.c
+19
-25
19 additions, 25 deletions
vp8/decoder/threading.c
with
19 additions
and
25 deletions
vp8/decoder/threading.c
+
19
−
25
View file @
8c48c943
...
...
@@ -296,18 +296,6 @@ THREAD_FUNCTION vp8_thread_decoding_proc(void *p_data)
}
}
if
(
pbi
->
common
.
filter_level
)
{
/*update loopfilter info*/
Segment
=
(
alt_flt_enabled
)
?
xd
->
mode_info_context
->
mbmi
.
segment_id
:
0
;
filter_level
=
pbi
->
mt_baseline_filter_level
[
Segment
];
/* Distance of Mb to the various image edges.
* These are specified to 8th pel as they are always compared to values that are in 1/8th pel units
* Apply any context driven MB level adjustment
*/
filter_level
=
vp8_adjust_mb_lf_value
(
xd
,
filter_level
);
}
/* Distance of Mb to the various image edges.
* These are specified to 8th pel as they are always compared to values that are in 1/8th pel units
*/
...
...
@@ -362,7 +350,16 @@ THREAD_FUNCTION vp8_thread_decoding_proc(void *p_data)
}
}
/* loopfilter on this macroblock. */
/* update loopfilter info */
Segment
=
(
alt_flt_enabled
)
?
xd
->
mode_info_context
->
mbmi
.
segment_id
:
0
;
filter_level
=
pbi
->
mt_baseline_filter_level
[
Segment
];
/* Distance of Mb to the various image edges.
* These are specified to 8th pel as they are always compared to values that are in 1/8th pel units
* Apply any context driven MB level adjustment
*/
filter_level
=
vp8_adjust_mb_lf_value
(
xd
,
filter_level
);
/* loopfilter on this macroblock. */
if
(
filter_level
)
{
if
(
mb_col
>
0
)
...
...
@@ -778,18 +775,6 @@ void vp8mt_decode_mb_rows( VP8D_COMP *pbi, MACROBLOCKD *xd)
}
}
if
(
pbi
->
common
.
filter_level
)
{
/* update loopfilter info */
Segment
=
(
alt_flt_enabled
)
?
xd
->
mode_info_context
->
mbmi
.
segment_id
:
0
;
filter_level
=
pbi
->
mt_baseline_filter_level
[
Segment
];
/* Distance of Mb to the various image edges.
* These are specified to 8th pel as they are always compared to values that are in 1/8th pel units
* Apply any context driven MB level adjustment
*/
filter_level
=
vp8_adjust_mb_lf_value
(
xd
,
filter_level
);
}
/* Distance of Mb to the various image edges.
* These are specified to 8th pel as they are always compared to values that are in 1/8th pel units
*/
...
...
@@ -853,6 +838,15 @@ void vp8mt_decode_mb_rows( VP8D_COMP *pbi, MACROBLOCKD *xd)
}
}
/* update loopfilter info */
Segment
=
(
alt_flt_enabled
)
?
xd
->
mode_info_context
->
mbmi
.
segment_id
:
0
;
filter_level
=
pbi
->
mt_baseline_filter_level
[
Segment
];
/* Distance of Mb to the various image edges.
* These are specified to 8th pel as they are always compared to values that are in 1/8th pel units
* Apply any context driven MB level adjustment
*/
filter_level
=
vp8_adjust_mb_lf_value
(
xd
,
filter_level
);
/* loopfilter on this macroblock. */
if
(
filter_level
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment