Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
gst-plugins-good
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
George Kiagiadakis
gst-plugins-good
Commits
1f545da9
Commit
1f545da9
authored
Jun 16, 2010
by
Sebastian Dröge
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
warptv: Don't use floats as loop counters
parent
f06b1050
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
gst/effectv/gstwarp.c
gst/effectv/gstwarp.c
+5
-5
No files found.
gst/effectv/gstwarp.c
View file @
1f545da9
...
...
@@ -118,7 +118,7 @@ static void
initSinTable
(
void
)
{
gint32
*
tptr
,
*
tsinptr
;
double
i
;
gint
i
;
tsinptr
=
tptr
=
sintable
;
...
...
@@ -132,7 +132,7 @@ initSinTable (void)
static
void
initOffsTable
(
GstWarpTV
*
filter
)
{
int
y
;
g
int
y
;
for
(
y
=
0
;
y
<
filter
->
height
;
y
++
)
{
filter
->
offstable
[
y
]
=
y
*
filter
->
width
;
...
...
@@ -143,11 +143,11 @@ static void
initDistTable
(
GstWarpTV
*
filter
)
{
gint32
halfw
,
halfh
,
*
distptr
;
gint
x
,
y
;
#ifdef PS2
float
x
,
y
,
m
;
float
m
;
#else
double
x
,
y
,
m
;
float
m
;
#endif
halfw
=
filter
->
width
>>
1
;
...
...
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