mirror of
https://github.com/mpv-player/mpv
synced 2024-12-12 01:46:16 +00:00
2a59fbf120
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1992 b3059339-0415-0410-9bf9-f77b7e298cf2
22 lines
355 B
C
22 lines
355 B
C
|
|
#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
|