From 58e96671dcb9a558401ed19056121604c12bc996 Mon Sep 17 00:00:00 2001 From: kramm Date: Sun, 13 Apr 2003 21:02:39 +0000 Subject: [PATCH] videoframes: bugfix in width/height parsing, display quantizer. --- src/swfdump.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/swfdump.c b/src/swfdump.c index 157c18c..fe3cb3c 100644 --- a/src/swfdump.c +++ b/src/swfdump.c @@ -398,7 +398,7 @@ void handleVideoFrame(TAG*tag, char*prefix) U16 id = swf_GetU16(tag); U16 frame = swf_GetU16(tag); U8 deblock,flags, tmp, bit; - U32 quantizer, extrainfo; + U32 quantizer; char*types[] = {"I-frame", "P-frame", "disposable P-frame", ""}; printf(" (frame %d) ", frame); @@ -410,7 +410,7 @@ void handleVideoFrame(TAG*tag, char*prefix) sizeflags = swf_GetBits(tag, 3); switch(sizeflags) { - case 0: width = swf_GetU8(tag); height = swf_GetU8(tag); break; + case 0: width = swf_GetBits(tag, 8); height = swf_GetBits(tag, 8); break; case 1: width = swf_GetBits(tag, 16); height = swf_GetBits(tag, 16); break; case 2: width = 352; height = 288; break; case 3: width = 176; height = 144; break; @@ -423,6 +423,11 @@ void handleVideoFrame(TAG*tag, char*prefix) type = swf_GetBits(tag, 2); printf("%s", types[type]); + deblock = swf_GetBits(tag, 1); + if(deblock) + printf(" deblock ", deblock); + quantizer = swf_GetBits(tag, 5); + printf(" quant: %d ", quantizer); } void handlePlaceObject2(TAG*tag, char*prefix) -- 1.7.10.4