Browse Source

Make reset_ptr() void.

Originally committed as revision 29229 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
tags/v0.6
Carl Eugen Hoyos 17 years ago
parent
commit
8e86dd1241
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libswscale/swscale.c

+ 1
- 1
libswscale/swscale.c View File

@@ -2911,7 +2911,7 @@ SwsContext *sws_getContext(int srcW, int srcH, enum PixelFormat srcFormat, int d
return c;
}

static int reset_ptr(uint8_t* src[], int format){
static void reset_ptr(uint8_t* src[], int format){
if(!isALPHA(format))
src[3]=NULL;
if(!isPlanarYUV(format)){


Loading…
Cancel
Save