summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkramm <kramm>2003-04-13 17:45:09 +0000
committerkramm <kramm>2003-04-13 17:45:09 +0000
commit73ad76d5e87558441fd67c1b48452a4d5f5a39af (patch)
treec09953a202c22d2dbe0d920ff2a25199b741474b
parenta7a60c127b70f891c5bb1ecf58b9e90dfbfb1e41 (diff)
moved to lib/h.263, bugfix in width/height parsing.
-rw-r--r--lib/h.263/video.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/h.263/video.c b/lib/h.263/video.c
index cd7d2c49..5200946c 100644
--- a/lib/h.263/video.c
+++ b/lib/h.263/video.c
@@ -5,13 +5,13 @@
Copyright (c) 2003 Matthias Kramm <kramm@quiss.org> */
-#include "../config.h"
+#include "../../config.h"
#include <unistd.h>
#include <stdio.h>
#include <fcntl.h>
#include <stdarg.h>
-#include "../lib/rfxswf.h"
-#include "../lib/args.h"
+#include "../rfxswf.h"
+#include "../args.h"
#include "h263tables.c"
static char * filename = 0;
@@ -400,7 +400,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;