2 header file for v2swf.h - part of SWFTools
4 Copyright (C) 2003 Matthias Kramm <kramm@quiss.org>
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
26 typedef unsigned char bool;
29 typedef struct _videoreader_t
42 int (*getsamples) (struct _videoreader_t*, void*buffer, int num);
43 /* buffer must be big enough to hold width*height*4 bytes: */
44 int (*getimage) (struct _videoreader_t*, void*buffer);
45 bool (*eof) (struct _videoreader_t*);
46 /* multi purpose functions */
47 void (*setparameter) (struct _videoreader_t*, char*name, char*value);
48 void* (*getinfo) (struct _videoreader_t*, char*name);
49 void (*close) (struct _videoreader_t*);
52 #define videoreader_getsamples(v, buffer, num) ((v)->getsamples((v),(buffer),(num)))
53 #define videoreader_getimage(v, buffer) ((v)->getimage((v),(buffer)))
54 #define videoreader_eof(v) ((v)->eof(v))
55 #define videoreader_setparameter(v,name,value) ((v)->setparameter((v),(name),(value)))
56 #define videoreader_getinfo(v,name) ((v)->getinfo((v),(name)))
57 #define videoreader_close(v) ((v)->close(v))
59 typedef struct _v2swf_t
64 int v2swf_init(v2swf_t*v2swf, videoreader_t * video);
65 int v2swf_read(v2swf_t*v2swf, void*buffer, int len);
66 void v2swf_setparameter(v2swf_t*v2swf, char*name, char*value);
67 void v2swf_close(v2swf_t*v2swf);
68 void v2swf_backpatch(v2swf_t*v2swf, char*filename);