Mercurial > mplayer.hg
annotate libmpdemux/mf.h @ 24860:324dd17d4aaa
Remove unused functions, fixes the warnings:
pnm.c:853: warning: 'pnm_peek_header' defined but not used
pnm.c:859: warning: 'pnm_close' defined but not used
author | diego |
---|---|
date | Tue, 30 Oct 2007 08:14:41 +0000 |
parents | 3f0d00abc073 |
children | 3baf6a2283da |
rev | line source |
---|---|
19300 | 1 |
23689
3f0d00abc073
Do not use leading underscores in multiple inclusion guards, they are reserved.
diego
parents:
19300
diff
changeset
|
2 #ifndef MF_H |
3f0d00abc073
Do not use leading underscores in multiple inclusion guards, they are reserved.
diego
parents:
19300
diff
changeset
|
3 #define MF_H |
19300 | 4 |
5 extern int mf_w; | |
6 extern int mf_h; | |
7 extern float mf_fps; | |
8 extern char * mf_type; | |
9 | |
10 typedef struct | |
11 { | |
12 int curr_frame; | |
13 int nr_of_files; | |
14 char ** names; | |
15 } mf_t; | |
16 | |
17 mf_t* open_mf(char * filename); | |
18 | |
19 #endif |