Rev 1085 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1085 | pj | 1 | /* |
2 | * |
||
3 | * |
||
4 | */ |
||
5 | |||
6 | #ifndef __GVIDEO_H |
||
7 | #define __GVIDEO_H |
||
8 | |||
9 | struct gvideoinfo { |
||
10 | int x,y; |
||
11 | int h,w; /* no fill */ |
||
12 | |||
13 | char *pathname; |
||
14 | |||
15 | int bitrate; /* bytes/sec */ |
||
16 | int framerate; /* frames/sec */ |
||
17 | int band; /* CPU band in percent */ |
||
18 | }; |
||
19 | |||
20 | int gvideo_init(char *title, struct gvideoinfo *info); |
||
21 | |||
22 | #endif |