Mercurial > mplayer.hg
view libmpdemux/mf.h @ 22701:3c95443b39a2
Move fast cmov detection code from the PPC section into the x86 section
where it has a chance of actually being executed and fix the obvious
syntax errors it contained in the process.
author | diego |
---|---|
date | Sun, 18 Mar 2007 16:30:11 +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