Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
c1b663bc
Commit
c1b663bc
authored
Aug 20, 2014
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/vf_lenscorrection: get rid of some floats
parent
50a35f0d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
12 deletions
+12
-12
vf_lenscorrection.c
libavfilter/vf_lenscorrection.c
+12
-12
No files found.
libavfilter/vf_lenscorrection.c
View file @
c1b663bc
...
...
@@ -56,9 +56,9 @@ AVFILTER_DEFINE_CLASS(lenscorrection);
typedef
struct
ThreadData
{
AVFrame
*
in
,
*
out
;
floa
t
w
,
h
;
in
t
w
,
h
;
int
plane
;
floa
t
xcenter
,
ycenter
;
in
t
xcenter
,
ycenter
;
float
k1
,
k2
;
}
ThreadData
;
...
...
@@ -68,9 +68,9 @@ static int filter_slice(AVFilterContext *ctx, void *arg, int job, int nb_jobs)
AVFrame
*
in
=
td
->
in
;
AVFrame
*
out
=
td
->
out
;
const
floa
t
w
=
td
->
w
,
h
=
td
->
h
;
const
floa
t
xcenter
=
td
->
xcenter
;
const
floa
t
ycenter
=
td
->
ycenter
;
const
in
t
w
=
td
->
w
,
h
=
td
->
h
;
const
in
t
xcenter
=
td
->
xcenter
;
const
in
t
ycenter
=
td
->
ycenter
;
const
float
r2inv
=
4
.
0
/
(
w
*
w
+
h
*
h
);
const
float
k1
=
td
->
k1
;
const
float
k2
=
td
->
k2
;
...
...
@@ -83,12 +83,12 @@ static int filter_slice(AVFilterContext *ctx, void *arg, int job, int nb_jobs)
uint8_t
*
outrow
=
out
->
data
[
plane
]
+
start
*
outlinesize
;
int
i
;
for
(
i
=
start
;
i
<
end
;
i
++
,
outrow
+=
outlinesize
)
{
const
floa
t
off_y
=
i
-
ycenter
;
const
floa
t
off_y2
=
off_y
*
off_y
;
const
in
t
off_y
=
i
-
ycenter
;
const
in
t
off_y2
=
off_y
*
off_y
;
uint8_t
*
out
=
outrow
;
int
j
;
for
(
j
=
0
;
j
<
w
;
j
++
)
{
const
floa
t
off_x
=
j
-
xcenter
;
const
in
t
off_x
=
j
-
xcenter
;
const
float
r2
=
(
off_x
*
off_x
+
off_y2
)
*
r2inv
;
const
float
radius_mult
=
1
.
0
f
+
r2
*
k1
+
r2
*
r2
*
k2
;
const
int
x
=
xcenter
+
radius_mult
*
off_x
+
0
.
5
f
;
...
...
@@ -147,10 +147,10 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
for
(
plane
=
0
;
plane
<
rect
->
nb_planes
;
++
plane
)
{
int
hsub
=
plane
==
1
||
plane
==
2
?
rect
->
hsub
:
0
;
int
vsub
=
plane
==
1
||
plane
==
2
?
rect
->
vsub
:
0
;
floa
t
hdiv
=
1
<<
hsub
;
floa
t
vdiv
=
1
<<
vsub
;
floa
t
w
=
rect
->
width
/
hdiv
;
floa
t
h
=
rect
->
height
/
vdiv
;
in
t
hdiv
=
1
<<
hsub
;
in
t
vdiv
=
1
<<
vsub
;
in
t
w
=
rect
->
width
/
hdiv
;
in
t
h
=
rect
->
height
/
vdiv
;
ThreadData
td
=
{
.
in
=
in
,
.
out
=
out
,
...
...
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