diff options
author | Mans Rullgard <mans@mansr.com> | 2012-05-17 15:55:14 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2012-05-29 08:27:19 +0100 |
commit | 7e5880e0cb041d0f1362bddd75130471ffc811ce (patch) | |
tree | d6f21c578766d7e26636a62a8f833dd407275376 | |
parent | e999b641df85c4e7fa89dde1c681ddd1d38b0090 (diff) | |
download | ffmpeg-7e5880e0cb041d0f1362bddd75130471ffc811ce.tar.gz |
fate: teach videogen/rotozoom to output a single raw video stream
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>
-rw-r--r-- | tests/Makefile | 2 | ||||
-rw-r--r-- | tests/rotozoom.c | 17 | ||||
-rw-r--r-- | tests/utils.c | 33 | ||||
-rw-r--r-- | tests/videogen.c | 15 |
4 files changed, 49 insertions, 18 deletions
diff --git a/tests/Makefile b/tests/Makefile index 79316b8d11..35099160a3 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -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)./$< $@ diff --git a/tests/rotozoom.c b/tests/rotozoom.c index 48c06b017e..683e070860 100644 --- a/tests/rotozoom.c +++ b/tests/rotozoom.c @@ -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); diff --git a/tests/utils.c b/tests/utils.c index 5310a114f5..2fdc491f49 100644 --- a/tests/utils.c +++ b/tests/utils.c @@ -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); diff --git a/tests/videogen.c b/tests/videogen.c index 8c3d53976e..7228bd551c 100644 --- a/tests/videogen.c +++ b/tests/videogen.c @@ -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); |