mirror of
https://github.com/mpv-player/mpv
synced 2025-05-07 02:31:02 +00:00
Make functions and variables not used outside bitmap.c static
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23214 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
4b0fd35ac2
commit
14fc62d117
14
gui/bitmap.c
14
gui/bitmap.c
@ -12,7 +12,7 @@
|
|||||||
#endif
|
#endif
|
||||||
#include "libvo/fastmemcpy.h"
|
#include "libvo/fastmemcpy.h"
|
||||||
|
|
||||||
int pngRead( unsigned char * fname,txSample * bf )
|
static int pngRead( unsigned char * fname,txSample * bf )
|
||||||
{
|
{
|
||||||
int decode_ok;
|
int decode_ok;
|
||||||
void *data;
|
void *data;
|
||||||
@ -64,7 +64,7 @@ int pngRead( unsigned char * fname,txSample * bf )
|
|||||||
return !(decode_ok && bf->BPP);
|
return !(decode_ok && bf->BPP);
|
||||||
}
|
}
|
||||||
|
|
||||||
int conv24to32( txSample * bf )
|
static int conv24to32( txSample * bf )
|
||||||
{
|
{
|
||||||
unsigned char * tmpImage;
|
unsigned char * tmpImage;
|
||||||
int i,c;
|
int i,c;
|
||||||
@ -91,7 +91,7 @@ int conv24to32( txSample * bf )
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void bgr2rgb( txSample * bf )
|
static void bgr2rgb( txSample * bf )
|
||||||
{
|
{
|
||||||
unsigned char c;
|
unsigned char c;
|
||||||
int i;
|
int i;
|
||||||
@ -104,7 +104,7 @@ void bgr2rgb( txSample * bf )
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void Normalize( txSample * bf )
|
static void Normalize( txSample * bf )
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
#ifndef WORDS_BIGENDIAN
|
#ifndef WORDS_BIGENDIAN
|
||||||
@ -114,9 +114,9 @@ void Normalize( txSample * bf )
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned char tmp[512];
|
static unsigned char tmp[512];
|
||||||
|
|
||||||
unsigned char * fExist( unsigned char * fname )
|
static unsigned char * fExist( unsigned char * fname )
|
||||||
{
|
{
|
||||||
FILE * fl;
|
FILE * fl;
|
||||||
unsigned char ext[][6] = { ".png\0",".PNG\0" };
|
unsigned char ext[][6] = { ".png\0",".PNG\0" };
|
||||||
@ -187,7 +187,7 @@ void Convert32to1( txSample * in,txSample * out,int adaptivlimit )
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void Convert1to32( txSample * in,txSample * out )
|
static void Convert1to32( txSample * in,txSample * out )
|
||||||
{
|
{
|
||||||
if ( in->Image == NULL ) return;
|
if ( in->Image == NULL ) return;
|
||||||
out->Width=in->Width;
|
out->Width=in->Width;
|
||||||
|
@ -11,8 +11,6 @@ typedef struct _txSample
|
|||||||
} txSample;
|
} txSample;
|
||||||
|
|
||||||
int bpRead( char * fname, txSample * bf );
|
int bpRead( char * fname, txSample * bf );
|
||||||
int conv24to32( txSample * bf );
|
|
||||||
void Convert32to1( txSample * in,txSample * out,int adaptivlimit );
|
void Convert32to1( txSample * in,txSample * out,int adaptivlimit );
|
||||||
void Convert1to32( txSample * in,txSample * out );
|
|
||||||
|
|
||||||
#endif /* __BITMAP_H */
|
#endif /* __BITMAP_H */
|
||||||
|
Loading…
Reference in New Issue
Block a user