git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4708 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
arpi 2002-02-14 22:33:29 +00:00
parent 1423711deb
commit 047a7a067f
1 changed files with 2 additions and 2 deletions

4
mpng.c
View File

@ -7,9 +7,9 @@
#include "mp_msg.h"
#include "png.h"
int pngPointer;
static int pngPointer;
void pngReadFN( png_structp pngstr,png_bytep buffer,png_size_t size )
static void pngReadFN( png_structp pngstr,png_bytep buffer,png_size_t size )
{
char * p = pngstr->io_ptr;
memcpy( buffer,(char *)&p[pngPointer],size );