1 #ifdef __cplusplus
2 extern "C" {
3 #endif
4
5 struct H263_STATE {
6 int width,height;
7 unsigned char **frame;
8
9 /* internal state */
10 int framenum;
11 int conf;
12 char conf_data[512];
13 };
14
15 struct H263_STATE* h263_start();
16 void h263_stop(struct H263_STATE *state);
17
18 int h263_decode_frame(struct H263_STATE *state, char *packet);
19
20 #ifdef __cplusplus
21 }
22 #endif
23