view libmpdemux/mf.h @ 20895:798356663969

Move endpos handling from page flip code to a saner location, change < to <= If the shown frame was already at exactly the end pos we don't want to show one more frame after it.
author uau
date Tue, 14 Nov 2006 06:35:55 +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