view libmpdemux/mf.h @ 19927:51551ba076d9

remove some unbreakable lines roff errors. The remaining ones are a 1:1 copy of the English version, but somehow roff doesn't complain about them in that version Of well...
author gpoirier
date Fri, 22 Sep 2006 12:13:29 +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