Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
ff0a4b6a
Commit
ff0a4b6a
authored
Nov 04, 1991
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed to understand new file format; and cosmetics.
parent
d9ff06b1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
5 deletions
+21
-5
Demo/sgi/video/v2i.c
Demo/sgi/video/v2i.c
+21
-5
No files found.
Demo/sgi/video/v2i.c
View file @
ff0a4b6a
/* Convert the first image of a CMIF video movie file to SGI .rgb format.
usage: v2i videofile imagefile [planemask]
link with -limage
*/
#include <stdio.h>
#include <stdio.h>
#include <gl/image.h>
#include <gl/image.h>
long
bm
[
1280
];
long
bm
[
1280
];
short
rb
[
1280
],
gb
[
1280
],
bb
[
1280
];
short
rb
[
1280
],
gb
[
1280
],
bb
[
1280
];
long
h
,
w
;
long
w
,
h
,
pf
;
#define R(comp) ((comp) & 0xff)
#define R(comp) ((comp) & 0xff)
#define G(comp) (((comp)>>8) & 0xff)
#define G(comp) (((comp)>>8) & 0xff)
...
@@ -20,7 +25,7 @@ main(argc, argv)
...
@@ -20,7 +25,7 @@ main(argc, argv)
if
(
argc
!=
3
&&
argc
!=
4
)
{
if
(
argc
!=
3
&&
argc
!=
4
)
{
fprintf
(
stderr
,
"Usage: v2i videofile imgfile [planemask]
\n
"
);
fprintf
(
stderr
,
"Usage: v2i videofile imgfile [planemask]
\n
"
);
exit
(
1
);
exit
(
2
);
}
}
if
(
argc
==
4
)
if
(
argc
==
4
)
pmask
=
atoi
(
argv
[
3
]);
pmask
=
atoi
(
argv
[
3
]);
...
@@ -30,12 +35,23 @@ main(argc, argv)
...
@@ -30,12 +35,23 @@ main(argc, argv)
perror
(
argv
[
1
]);
perror
(
argv
[
1
]);
exit
(
1
);
exit
(
1
);
}
}
gets
(
lbuf
);
if
(
fgets
(
lbuf
,
sizeof
lbuf
,
stdin
)
==
NULL
)
{
if
(
sscanf
(
lbuf
,
"(%d,%d)"
,
&
w
,
&
h
)
!=
2
)
{
fprintf
(
stderr
,
"Immediate EOF
\n
"
);
exit
(
1
);
}
if
(
strncmp
(
lbuf
,
"CMIF"
,
4
)
==
0
)
{
/* Skip optional header line */
if
(
fgets
(
lbuf
,
sizeof
lbuf
,
stdin
)
==
NULL
)
{
fprintf
(
stderr
,
"Immediate EOF after header
\n
"
);
exit
(
1
);
}
}
pf
=
2
;
/* Default */
if
(
sscanf
(
lbuf
,
"(%d,%d,%d)"
,
&
w
,
&
h
,
&
pf
)
<
2
)
{
fprintf
(
stderr
,
"%s: bad size spec: %s
\n
"
,
argv
[
0
],
lbuf
);
fprintf
(
stderr
,
"%s: bad size spec: %s
\n
"
,
argv
[
0
],
lbuf
);
exit
(
1
);
exit
(
1
);
}
}
gets
(
lbuf
);
/* Skip time info */
fgets
(
lbuf
,
sizeof
lbuf
,
stdin
);
/* Skip time info */
if
(
w
>
1280
)
{
if
(
w
>
1280
)
{
fprintf
(
stderr
,
"%s: Sorry, too wide
\n
"
,
argv
[
0
]);
fprintf
(
stderr
,
"%s: Sorry, too wide
\n
"
,
argv
[
0
]);
exit
(
1
);
exit
(
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