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
863694a4
Commit
863694a4
authored
Dec 21, 2016
by
Jingning Han
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Avoid divisions at decoder side in supertx
Change-Id: I3c52a4759780d987d045bb7b34a27ee9f7f55117
parent
9353124f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
av1/decoder/decodeframe.c
av1/decoder/decodeframe.c
+2
-2
No files found.
av1/decoder/decodeframe.c
View file @
863694a4
...
...
@@ -832,7 +832,7 @@ static void dec_extend_dir(AV1Decoder *const pbi, MACROBLOCKD *const xd,
if
(
mi_width
>
unit
)
{
int
i
;
assert
(
!
b_sub8x8
);
for
(
i
=
0
;
i
<
mi_width
/
unit
-
1
;
i
++
)
{
for
(
i
=
0
;
i
<
mi_width
;
i
+=
unit
)
{
mi_col_pred
+=
unit
;
dec_predict_b_extend
(
pbi
,
xd
,
tile
,
block
,
mi_row
,
mi_col
,
mi_row_pred
,
mi_col_pred
,
mi_row_top
,
mi_col_top
,
dst_buf
,
...
...
@@ -853,7 +853,7 @@ static void dec_extend_dir(AV1Decoder *const pbi, MACROBLOCKD *const xd,
if
(
mi_height
>
unit
)
{
int
i
;
for
(
i
=
0
;
i
<
mi_height
/
unit
-
1
;
i
++
)
{
for
(
i
=
0
;
i
<
mi_height
;
i
+=
unit
)
{
mi_row_pred
+=
unit
;
dec_predict_b_extend
(
pbi
,
xd
,
tile
,
block
,
mi_row
,
mi_col
,
mi_row_pred
,
mi_col_pred
,
mi_row_top
,
mi_col_top
,
dst_buf
,
...
...
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