OSDN Git Service

fate: teach videogen/rotozoom to output a single raw video stream
authorMans Rullgard <mans@mansr.com>
Thu, 17 May 2012 14:55:14 +0000 (15:55 +0100)
committerMans Rullgard <mans@mansr.com>
Tue, 29 May 2012 07:27:19 +0000 (08:27 +0100)
This makes videogen/rotozoom output a raw video stream on stdout
if no output directory is specified.

Signed-off-by: Mans Rullgard <mans@mansr.com>
tests/Makefile
tests/rotozoom.c
tests/utils.c
tests/videogen.c

index 79316b8..3509916 100644 (file)
@@ -14,7 +14,7 @@ tests/vsynth1/00.pgm: tests/videogen$(HOSTEXESUF) | tests/vsynth1
        $(M)./$< 'tests/vsynth1/'
 
 tests/vsynth2/00.pgm: tests/rotozoom$(HOSTEXESUF) | tests/vsynth2
-       $(M)./$< 'tests/vsynth2/' $(SRC_PATH)/tests/lena.pnm
+       $(M)./$< $(SRC_PATH)/tests/lena.pnm 'tests/vsynth2/'
 
 tests/data/asynth1.sw: tests/audiogen$(HOSTEXESUF) | tests/data
        $(M)./$< $@
index 48c06b0..683e070 100644 (file)
@@ -159,12 +159,15 @@ int main(int argc, char **argv)
     int w, h, i;
     char buf[1024];
 
-    if (argc != 3) {
-        printf("usage: %s directory/ image.pnm\n"
+    if (argc > 3) {
+        printf("usage: %s image.pnm [directory/]\n"
                "generate a test video stream\n", argv[0]);
         return 1;
     }
 
+    if (argc < 3)
+        err_if(!freopen(NULL, "wb", stdout));
+
     w = DEFAULT_WIDTH;
     h = DEFAULT_HEIGHT;
 
@@ -173,13 +176,17 @@ int main(int argc, char **argv)
     width   = w;
     height  = h;
 
-    if (init_demo(argv[2]))
+    if (init_demo(argv[1]))
         return 1;
 
     for (i = 0; i < DEFAULT_NB_PICT; i++) {
-        snprintf(buf, sizeof(buf), "%s%02d.pgm", argv[1], i);
         gen_image(i, w, h);
-        pgmyuv_save(buf, w, h, rgb_tab);
+        if (argc > 2) {
+            snprintf(buf, sizeof(buf), "%s%02d.pgm", argv[2], i);
+            pgmyuv_save(buf, w, h, rgb_tab);
+        } else {
+            pgmyuv_save(NULL, w, h, rgb_tab);
+        }
     }
 
     free(rgb_tab);
index 5310a11..2fdc491 100644 (file)
@@ -115,20 +115,37 @@ static void pgmyuv_save(const char *filename, int w, int h,
 
     rgb24_to_yuv420p(lum_tab, cb_tab, cr_tab, rgb_tab, w, h);
 
-    f = fopen(filename, "wb");
-    fprintf(f, "P5\n%d %d\n%d\n", w, h * 3 / 2, 255);
+    if (filename) {
+        f = fopen(filename, "wb");
+        fprintf(f, "P5\n%d %d\n%d\n", w, h * 3 / 2, 255);
+    } else {
+        f = stdout;
+    }
+
     err_if(fwrite(lum_tab, 1, w * h, f) != w * h);
     h2 = h / 2;
     w2 = w / 2;
     cb = cb_tab;
     cr = cr_tab;
-    for (i = 0; i < h2; i++) {
-        err_if(fwrite(cb, 1, w2, f) != w2);
-        err_if(fwrite(cr, 1, w2, f) != w2);
-        cb += w2;
-        cr += w2;
+
+    if (filename) {
+        for (i = 0; i < h2; i++) {
+            err_if(fwrite(cb, 1, w2, f) != w2);
+            err_if(fwrite(cr, 1, w2, f) != w2);
+            cb += w2;
+            cr += w2;
+        }
+        fclose(f);
+    } else {
+        for (i = 0; i < h2; i++) {
+            err_if(fwrite(cb, 1, w2, f) != w2);
+            cb += w2;
+        }
+        for (i = 0; i < h2; i++) {
+            err_if(fwrite(cr, 1, w2, f) != w2);
+            cr += w2;
+        }
     }
-    fclose(f);
 
     free(lum_tab);
     free(cb_tab);
index 8c3d539..7228bd5 100644 (file)
@@ -146,12 +146,15 @@ int main(int argc, char **argv)
     int w, h, i;
     char buf[1024];
 
-    if (argc != 2) {
-        printf("usage: %s file\n"
+    if (argc > 2) {
+        printf("usage: %s [file]\n"
                "generate a test video stream\n", argv[0]);
         exit(1);
     }
 
+    if (argc < 2)
+        err_if(!freopen(NULL, "wb", stdout));
+
     w = DEFAULT_WIDTH;
     h = DEFAULT_HEIGHT;
 
@@ -161,9 +164,13 @@ int main(int argc, char **argv)
     height  = h;
 
     for (i = 0; i < DEFAULT_NB_PICT; i++) {
-        snprintf(buf, sizeof(buf), "%s%02d.pgm", argv[1], i);
         gen_image(i, w, h);
-        pgmyuv_save(buf, w, h, rgb_tab);
+        if (argc > 1) {
+            snprintf(buf, sizeof(buf), "%s%02d.pgm", argv[1], i);
+            pgmyuv_save(buf, w, h, rgb_tab);
+        } else {
+            pgmyuv_save(NULL, w, h, rgb_tab);
+        }
     }
 
     free(rgb_tab);