From d89f4a2c1a773c0dc33cc7d94d475798fc0fee41 Mon Sep 17 00:00:00 2001 From: Damien Lespiau Date: Mon, 16 Sep 2013 17:52:41 +0100 Subject: [PATCH] intel_infoframe: Display the VIC in decimal It's not customary to display the VIC in hexadecimal and lead me to scratch my head for a couple of seconds. Print it in decimal instead. Signed-off-by: Damien Lespiau --- tools/intel_infoframes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/intel_infoframes.c b/tools/intel_infoframes.c index b25db9d..c60a87e 100644 --- a/tools/intel_infoframes.c +++ b/tools/intel_infoframes.c @@ -433,7 +433,7 @@ static void dump_avi_info(Transcoder transcoder) frame.avi.R, frame.avi.M, frame.avi.C); printf("- SC: %x, Q: %x, EC: %x, ITC: %x\n", frame.avi.SC, frame.avi.Q, frame.avi.EC, frame.avi.ITC); - printf("- VIC: %x, Rsvd1: %x\n", frame.avi.VIC, frame.avi.Rsvd1); + printf("- VIC: %d, Rsvd1: %x\n", frame.avi.VIC, frame.avi.Rsvd1); printf("- PR: %x, Rsvd2: %x\n", frame.avi.PR, frame.avi.Rsvd2); printf("- top: %x, bottom: %x, left: %x, right: %x\n", frame.avi.top, frame.avi.bottom, frame.avi.left, -- 2.7.4