fixed graphics bug
[swftools.git] / avi2swf / v2swf.h
1 /*  v2swf.h 
2     header file for v2swf.h - part of SWFTools
3
4     Copyright (C) 2003 Matthias Kramm <kramm@quiss.org>
5
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.
10
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.
15
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 */
19
20 #ifndef __video_h__
21 #define __video_h__
22
23 #ifdef __cplusplus
24 extern "C" {
25 #else
26 typedef unsigned char bool;
27 #endif
28
29 typedef struct _videoreader_t
30 {
31     void*internal;
32
33     /* video */
34     int width;
35     int height;
36     double fps;
37
38     /* audio */
39     int channels;
40     int rate;
41
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*);
50 } videoreader_t;
51
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))
58
59 typedef struct _v2swf_t
60 {
61     void*internal;
62 } v2swf_t;
63
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);
69
70 #ifdef __cplusplus
71 }
72 #endif
73
74 #endif