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
e1e0ca70
Commit
e1e0ca70
authored
May 09, 2011
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rotozoom: Eliminate French variable name.
parent
cbb0930f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
rotozoom.c
tests/rotozoom.c
+6
-6
No files found.
tests/rotozoom.c
View file @
e1e0ca70
...
...
@@ -241,18 +241,18 @@ static int init_demo(const char *filename)
int
radian
;
char
line
[
3
*
W
];
FILE
*
fichier
;
FILE
*
input_file
;
fichier
=
fopen
(
filename
,
"rb"
);
if
(
!
fichier
)
{
input_file
=
fopen
(
filename
,
"rb"
);
if
(
!
input_file
)
{
perror
(
filename
);
return
1
;
}
if
(
fread
(
line
,
1
,
15
,
fichier
)
!=
15
)
if
(
fread
(
line
,
1
,
15
,
input_file
)
!=
15
)
return
1
;
for
(
i
=
0
;
i
<
H
;
i
++
)
{
if
(
fread
(
line
,
1
,
3
*
W
,
fichier
)
!=
3
*
W
)
if
(
fread
(
line
,
1
,
3
*
W
,
input_file
)
!=
3
*
W
)
return
1
;
for
(
j
=
0
;
j
<
W
;
j
++
)
{
tab_r
[
W
*
i
+
j
]
=
line
[
3
*
j
];
...
...
@@ -260,7 +260,7 @@ static int init_demo(const char *filename)
tab_b
[
W
*
i
+
j
]
=
line
[
3
*
j
+
2
];
}
}
fclose
(
fichier
);
fclose
(
input_file
);
/* tables sin/cos */
for
(
i
=
0
;
i
<
360
;
i
++
)
{
...
...
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