annotate libmpdemux/mf.h @ 24576:6704a924d4aa

According to MSDN a thread must call CoUninitialize once for each successful call it has made to CoInitialize or CoInitializeEx, including any call that returns S_FALSE. Only the CoUninitialize call corresponding to the CoInitialize or CoInitializeEx call that initialized the library can close it. patch by Gianluigi Tiesi, mplayer netfarm it
author diego
date Sun, 23 Sep 2007 20:37:33 +0000
parents 3f0d00abc073
children 3baf6a2283da
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
19300
0c7ad1c632cc mf.[hc] belong to libmpdemux
ben
parents:
diff changeset
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
0c7ad1c632cc mf.[hc] belong to libmpdemux
ben
parents:
diff changeset
4
0c7ad1c632cc mf.[hc] belong to libmpdemux
ben
parents:
diff changeset
5 extern int mf_w;
0c7ad1c632cc mf.[hc] belong to libmpdemux
ben
parents:
diff changeset
6 extern int mf_h;
0c7ad1c632cc mf.[hc] belong to libmpdemux
ben
parents:
diff changeset
7 extern float mf_fps;
0c7ad1c632cc mf.[hc] belong to libmpdemux
ben
parents:
diff changeset
8 extern char * mf_type;
0c7ad1c632cc mf.[hc] belong to libmpdemux
ben
parents:
diff changeset
9
0c7ad1c632cc mf.[hc] belong to libmpdemux
ben
parents:
diff changeset
10 typedef struct
0c7ad1c632cc mf.[hc] belong to libmpdemux
ben
parents:
diff changeset
11 {
0c7ad1c632cc mf.[hc] belong to libmpdemux
ben
parents:
diff changeset
12 int curr_frame;
0c7ad1c632cc mf.[hc] belong to libmpdemux
ben
parents:
diff changeset
13 int nr_of_files;
0c7ad1c632cc mf.[hc] belong to libmpdemux
ben
parents:
diff changeset
14 char ** names;
0c7ad1c632cc mf.[hc] belong to libmpdemux
ben
parents:
diff changeset
15 } mf_t;
0c7ad1c632cc mf.[hc] belong to libmpdemux
ben
parents:
diff changeset
16
0c7ad1c632cc mf.[hc] belong to libmpdemux
ben
parents:
diff changeset
17 mf_t* open_mf(char * filename);
0c7ad1c632cc mf.[hc] belong to libmpdemux
ben
parents:
diff changeset
18
0c7ad1c632cc mf.[hc] belong to libmpdemux
ben
parents:
diff changeset
19 #endif