view libmpdemux/mf.h @ 25640:a51e1bd9ba4f

Add an extra check to avoid a case that cause black lines in scaled vobsubs due to an overflow in the multiplication.
author reimar
date Thu, 10 Jan 2008 21:47:33 +0000
parents 3baf6a2283da
children cb07fc632de1
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 /* MF_H */