Mercurial > mplayer.hg
view Gui/bitmap/bitmap.h @ 1881:d75b24bda7ce
Applied fix for mixercontrol w/alsa ossemu by Christian Ohm.
author | atmos4 |
---|---|
date | Tue, 11 Sep 2001 16:26:41 +0000 |
parents | d237c5d4b216 |
children | dee4b2ea5e5b |
line wrap: on
line source
#ifndef __MYSAMPLE #define __MYSAMPLE typedef struct _txSample { unsigned int Width; unsigned int Height; unsigned int BPP; unsigned long ImageSize; char * Image; } txSample; #include "tga/tga.h" #include "bmp/bmp.h" #include "png/png.h" extern int bpRead( char * fname, txSample * bf ); extern int conv24to32( txSample * bf ); #endif