Mercurial > mplayer.hg
annotate libmpdemux/mf.h @ 7449:28785e6e6900
"One can cause a permanent hang on a seek, and the other just causes
general jerkiness because the writer thread was holding a lock
during the time it was writing to the network."
patch by Sidik Isani <lksi@cfht.hawaii.edu>
author | arpi |
---|---|
date | Fri, 20 Sep 2002 18:26:54 +0000 |
parents | 8780415baa87 |
children | 27fff718ede6 |
rev | line source |
---|---|
4549 | 1 |
2 #ifndef _MF_H | |
3 #define _MF_H | |
4 | |
5 extern int mf_support; | |
6 extern int mf_w; | |
7 extern int mf_h; | |
5352
cf2882606e72
Fileslist support for mf demuxer, delemited by ',' and change mf fps to float.
atmos4
parents:
4549
diff
changeset
|
8 extern float mf_fps; |
4549 | 9 extern char * mf_type; |
10 | |
11 typedef struct | |
12 { | |
7407 | 13 int curr_frame; |
14 int nr_of_files; | |
4549 | 15 char ** names; |
16 } mf_t; | |
17 | |
7407 | 18 mf_t* open_mf(char * filename); |
19 | |
5352
cf2882606e72
Fileslist support for mf demuxer, delemited by ',' and change mf fps to float.
atmos4
parents:
4549
diff
changeset
|
20 #endif |