view Gui/timer.h @ 2336:b2e0b131c1a7

Again changed logic: -screenw, -screenh - force user video mode -x, -y - force userdefined prescaling -bpp - forces userdefined bpp -zoom - enables prescaling (-x, -y) -fs - scales image to fullscreen (same as ATI's divx/dvd player) -zoom -fs - (together) scales userdefined prescaling to fullscreen So full command line should be: mplayer -vo vesa -screenw WWW -screenh HHH -bpp BPP -x XXX -y YYY -zoom -fs filename And you will be able to watch movies in 16:9 format with bold black border at top and bottom of screen.
author nick
date Sun, 21 Oct 2001 14:30:36 +0000
parents f91ad6d23ce9
children
line wrap: on
line source


#ifndef __MYTIMER
#define __MYTIMER

typedef void (* timerTSigHandler)( int signum );
extern timerTSigHandler timerSigHandler;

extern void timerSetHandler( timerTSigHandler handler );
extern void timerInit( void );
extern void timerDone( void );

#endif