diff options
-rw-r--r-- | utils/wbm2m.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/utils/wbm2m.cpp b/utils/wbm2m.cpp index b69bb28..07074e5 100644 --- a/utils/wbm2m.cpp +++ b/utils/wbm2m.cpp @@ -101,9 +101,14 @@ int main(int argc, char** argv) exit(-1); } + printf("%ux%u-%s -> %ux%u-%s\n", src_width, src_height, PixelFormatToFourCC(src_fmt).c_str(), + dst_width, dst_height, PixelFormatToFourCC(dst_fmt).c_str()); + const string filename = sformat("wb-out-%ux%u_%4.4s.raw", dst_width, dst_height, PixelFormatToFourCC(dst_fmt).c_str()); + printf("writing to %s\n", filename.c_str()); + VideoDevice vid("/dev/video10"); Card card; |