Mercurial > mplayer.hg
view libmpdemux/mf.h @ 22379:6b245d6e56a9
winsocks expects an int in milliseconds instead of struct timeval to set
the timeout of a socket
patch by Zuxy Meng, zuxy dot meng ... gmailcom
author | ivo |
---|---|
date | Thu, 01 Mar 2007 14:57:44 +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