summaryrefslogtreecommitdiff
path: root/tests/videogen.c
diff options
context:
space:
mode:
authorMans Rullgard <mans@mansr.com>2012-06-06 17:12:29 +0100
committerMans Rullgard <mans@mansr.com>2012-06-07 11:28:39 +0100
commitd0e9415d234f701bed8837f4e315131ea4e84482 (patch)
treeba27266099df653546bc8efc7e7e132857e2a393 /tests/videogen.c
parentecf79c4d3e8baaf2f303278ef81db6f8407656bc (diff)
fate: avoid freopen(NULL) in videogen/rotozoom
A number of systems do not implement freopen() with a NULL filename correctly. This changes these programs to output individual images if opening a named output argument as a file fails, in this case assuming it is a directory. Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'tests/videogen.c')
-rw-r--r--tests/videogen.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/tests/videogen.c b/tests/videogen.c
index 7228bd551c..0b7f67eb18 100644
--- a/tests/videogen.c
+++ b/tests/videogen.c
@@ -145,15 +145,16 @@ int main(int argc, char **argv)
{
int w, h, i;
char buf[1024];
+ int isdir = 0;
- if (argc > 2) {
- printf("usage: %s [file]\n"
+ if (argc != 2) {
+ printf("usage: %s file|dir\n"
"generate a test video stream\n", argv[0]);
exit(1);
}
- if (argc < 2)
- err_if(!freopen(NULL, "wb", stdout));
+ if (!freopen(argv[1], "wb", stdout))
+ isdir = 1;
w = DEFAULT_WIDTH;
h = DEFAULT_HEIGHT;
@@ -165,7 +166,7 @@ int main(int argc, char **argv)
for (i = 0; i < DEFAULT_NB_PICT; i++) {
gen_image(i, w, h);
- if (argc > 1) {
+ if (isdir) {
snprintf(buf, sizeof(buf), "%s%02d.pgm", argv[1], i);
pgmyuv_save(buf, w, h, rgb_tab);
} else {