Mercurial > mplayer.hg
view libmpdemux/mf.h @ 21521:b210a229fbcb
General reformatting round:
- fix some " -> "
- reindent with more consistency
- visual markup of <sect?> tags
- break overly long lines
- add missing <replaceable> tags in examples
- cola truck standing by
author | torinthiel |
---|---|
date | Fri, 08 Dec 2006 11:38:06 +0000 |
parents | 0c7ad1c632cc |
children | 3f0d00abc073 |
line wrap: on
line source
#ifndef _MF_H #define _MF_H extern int mf_w; extern int mf_h; extern float mf_fps; extern char * mf_type; typedef struct { int curr_frame; int nr_of_files; char ** names; } mf_t; mf_t* open_mf(char * filename); #endif