moved into ../rfxswf.h
authorkramm <kramm>
Sun, 4 May 2003 16:30:06 +0000 (16:30 +0000)
committerkramm <kramm>
Sun, 4 May 2003 16:30:06 +0000 (16:30 +0000)
lib/h.263/swfvideo.h [deleted file]

diff --git a/lib/h.263/swfvideo.h b/lib/h.263/swfvideo.h
deleted file mode 100644 (file)
index f16834e..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-/* mkvideo.c
-   Create a video file.
-
-   Part of the swftools package.
-   
-   Copyright (c) 2003 Matthias Kramm <kramm@quiss.org> */
-
-#ifndef __swfvideo_h__
-#define __swfvideo_h__
-
-#include "../rfxswf.h"
-
-typedef struct _YUV
-{
-    unsigned char y,u,v;
-} YUV;
-
-typedef struct _VIDEOSTREAM
-{
-    int width;
-    int height;
-    int frame;
-    int linex;
-    int olinex;
-    YUV*oldpic;
-    YUV*current;
-    int bbx,bby;
-    int*mvdx;
-    int*mvdy;
-
-    /* modifyable: */
-    int do_motion; //enable motion compensation (slow!)
-
-} VIDEOSTREAM;
-
-void swf_SetVideoStreamDefine(TAG*tag, VIDEOSTREAM*stream, U16 frames, U16 width, U16 height);
-void swf_SetVideoStreamIFrame(TAG*tag, VIDEOSTREAM*s, RGBA*pic, int quant/* 1-31, 1=best quality, 31=best compression*/);
-void swf_SetVideoStreamPFrame(TAG*tag, VIDEOSTREAM*s, RGBA*pic, int quant/* 1-31, 1=best quality, 31=best compression*/);
-void swf_VideoStreamClear(VIDEOSTREAM*stream);
-
-#endif