annotate libmpdemux/mf.h @ 28501:a8a945fe6b09
Bump micro version, related to r28491.
See the thread:
"[FFmpeg-devel] [PATCH] Explicitely declare {dst, src}Format sws_get*Context() params as enum PixelFormat".
author |
stefano |
date |
Thu, 12 Feb 2009 00:07:44 +0000 |
parents |
4129c8cfa742 |
children |
d643e4643313 |
rev |
line source |
19300
|
1
|
26029
|
2 #ifndef MPLAYER_MF_H
|
|
3 #define MPLAYER_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
|
26029
|
19 #endif /* MPLAYER_MF_H */
|