Mercurial > mplayer.hg
annotate libmpdemux/mf.h @ 26014:6e9c78324790
Fix r26032: wrong sub stream id assigned to dvdsub_id.
author | eugeni |
---|---|
date | Thu, 21 Feb 2008 09:47:03 +0000 |
parents | cb07fc632de1 |
children | 4129c8cfa742 |
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; | |
25964 | 7 extern double mf_fps; |
19300 | 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 | |
25535
3baf6a2283da
Add explanatory comments to the #endif part of multiple inclusion guards.
diego
parents:
23689
diff
changeset
|
19 #endif /* MF_H */ |