ref: 041e2ada566d991e41dc0f626d1d20582276a6c0
parent: 81632462880f7ab51b5db93785c5fee576dbcd0e
author: Sigrid Solveig Haflínudóttir <[email protected]>
date: Tue Dec 15 09:34:32 EST 2020
ivf2raw: print size in hex
--- a/extra/ivf2raw.c
+++ b/extra/ivf2raw.c
@@ -109,7 +109,7 @@
if(hxsz < 1)
Bwrite(&out, buf, sz);
else
- Bprint(&out, "[%6llud %8llud %7ud] %.*H\n", framenum, timestamp, sz, sz > hxsz ? hxsz : sz, buf);
+ Bprint(&out, "[%6llud %8llud %#7ux] %.*H\n", framenum, timestamp, sz, sz > hxsz ? hxsz : sz, buf);
}
Bterm(&in);