Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
aom-rav1e
Commits
e0fc9201
Commit
e0fc9201
authored
Apr 23, 2013
by
Ronald S. Bultje
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor indent changes in loopfilter code.
Change-Id: I0cdc951558e4d7748f63df8c03b1c9dce086acb0
parent
94297863
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
vp9/common/vp9_loopfilter.c
vp9/common/vp9_loopfilter.c
+5
-4
No files found.
vp9/common/vp9_loopfilter.c
View file @
e0fc9201
...
...
@@ -354,25 +354,26 @@ static void lpf_sb64(VP9_COMMON *cm, const MODE_INFO *mode_info_context,
uint8_t
*
y_ptr
,
uint8_t
*
u_ptr
,
uint8_t
*
v_ptr
,
int
y_stride
,
int
uv_stride
,
int
y_only
,
int
dering
)
{
lpf_sb32
(
cm
,
mode_info_context
,
mb_row
,
mb_col
,
lpf_sb32
(
cm
,
mode_info_context
,
mb_row
,
mb_col
,
y_ptr
,
u_ptr
,
v_ptr
,
y_stride
,
uv_stride
,
y_only
,
dering
);
lpf_sb32
(
cm
,
mode_info_context
+
2
,
mb_row
,
mb_col
+
2
,
lpf_sb32
(
cm
,
mode_info_context
+
2
,
mb_row
,
mb_col
+
2
,
y_ptr
+
32
,
u_ptr
+
16
,
v_ptr
+
16
,
y_stride
,
uv_stride
,
y_only
,
dering
);
lpf_sb32
(
cm
,
mode_info_context
+
cm
->
mode_info_stride
*
2
,
lpf_sb32
(
cm
,
mode_info_context
+
cm
->
mode_info_stride
*
2
,
mb_row
+
2
,
mb_col
,
y_ptr
+
32
*
y_stride
,
u_ptr
+
16
*
uv_stride
,
v_ptr
+
16
*
uv_stride
,
y_stride
,
uv_stride
,
y_only
,
dering
);
lpf_sb32
(
cm
,
mode_info_context
+
cm
->
mode_info_stride
*
2
+
2
,
lpf_sb32
(
cm
,
mode_info_context
+
cm
->
mode_info_stride
*
2
+
2
,
mb_row
+
2
,
mb_col
+
2
,
y_ptr
+
32
*
y_stride
+
32
,
u_ptr
+
16
*
uv_stride
+
16
,
v_ptr
+
16
*
uv_stride
+
16
,
y_stride
,
uv_stride
,
y_only
,
dering
);
}
void
vp9_loop_filter_frame
(
VP9_COMMON
*
cm
,
MACROBLOCKD
*
xd
,
int
frame_filter_level
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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