From 5e653506fb3e47283563c044faccb2a00e537ed6 Mon Sep 17 00:00:00 2001 From: kramm Date: Sat, 2 Aug 2003 12:29:28 +0000 Subject: [PATCH] added quant parameter to VIDEOSTREAM struct. --- lib/rfxswf.h | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/lib/rfxswf.h b/lib/rfxswf.h index 673429a..ac8c936 100644 --- a/lib/rfxswf.h +++ b/lib/rfxswf.h @@ -850,16 +850,20 @@ typedef struct _VIDEOSTREAM { int width; int height; + int linex; + int owidth; int oheight; - int frame; - int linex; int olinex; + + int frame; YUV*oldpic; YUV*current; - int bbx,bby; + int bbx; + int bby; int*mvdx; int*mvdy; + int quant; /* modifyable: */ int do_motion; //enable motion compensation (slow!) -- 1.7.10.4