Mercurial > mplayer.hg
view libmpdemux/mf.h @ 20879:8c029c5b800a
r20876: rename: XviD -> Xvid
r20866: Recommend gcc 3.4+.
r20870: Restore PowerPC gcc note that I mistakenly removed.
r20873: Misc issues noticed by Torinthiel.
r20878: [cosmetics]...
r20879: [small fixes]...
author | voroshil |
---|---|
date | Mon, 13 Nov 2006 19:24:02 +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