view libmpdemux/mf.h @ 20966:dc1a02e98cb6

clarify syncpoint placement recommanditions (note i would also like to add a "there MUST be 1 syncpoint per second" rule)
author michael
date Fri, 17 Nov 2006 13:32:45 +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