Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
aom-rav1e
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Xiph.Org
aom-rav1e
Commits
f87b0f9c
Commit
f87b0f9c
authored
May 02, 2016
by
Yaowu Xu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make some type conversions explicit
Change-Id: I35e1126e567a949267898bb0fc95c518db98999a
parent
606f01d4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
aom_dsp/fastssim.c
aom_dsp/fastssim.c
+4
-4
No files found.
aom_dsp/fastssim.c
View file @
f87b0f9c
...
...
@@ -345,11 +345,11 @@ static void fs_calc_structure(fs_ctx *_ctx, int _l, int bit_depth) {
unsigned
g2
;
unsigned
gx
;
unsigned
gy
;
g1
=
abs
(
im1
[(
j
+
1
)
*
w
+
i
+
1
]
-
im1
[
j
*
w
+
i
]);
g2
=
abs
(
im1
[(
j
+
1
)
*
w
+
i
]
-
im1
[
j
*
w
+
i
+
1
]);
g1
=
abs
(
(
int
)
im1
[(
j
+
1
)
*
w
+
i
+
1
]
-
(
int
)
im1
[
j
*
w
+
i
]);
g2
=
abs
(
(
int
)
im1
[(
j
+
1
)
*
w
+
i
]
-
(
int
)
im1
[
j
*
w
+
i
+
1
]);
gx
=
4
*
FS_MAXI
(
g1
,
g2
)
+
FS_MINI
(
g1
,
g2
);
g1
=
abs
(
im2
[(
j
+
1
)
*
w
+
i
+
1
]
-
im2
[
j
*
w
+
i
]);
g2
=
abs
(
im2
[(
j
+
1
)
*
w
+
i
]
-
im2
[
j
*
w
+
i
+
1
]);
g1
=
abs
(
(
int
)
im2
[(
j
+
1
)
*
w
+
i
+
1
]
-
(
int
)
im2
[
j
*
w
+
i
]);
g2
=
abs
(
(
int
)
im2
[(
j
+
1
)
*
w
+
i
]
-
(
int
)
im2
[
j
*
w
+
i
+
1
]);
gy
=
4
*
FS_MAXI
(
g1
,
g2
)
+
FS_MINI
(
g1
,
g2
);
gx_buf
[(
j
&
7
)
*
stride
+
i
+
4
]
=
gx
;
gy_buf
[(
j
&
7
)
*
stride
+
i
+
4
]
=
gy
;
...
...
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