Browse Source

Remove useless code.

flags can never be any other kind of scaling algorithm inside this if().

Originally committed as revision 29449 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
tags/v0.6
Ramiro Polla 16 years ago
parent
commit
571d9587cf
1 changed files with 1 additions and 3 deletions
  1. +1
    -3
      libswscale/swscale.c

+ 1
- 3
libswscale/swscale.c View File

@@ -1450,9 +1450,7 @@ static inline int initFilter(int16_t **outFilter, int16_t **filterPos, int *outF
{
int i;
int xDstInSrc;
if (flags&SWS_BICUBIC) filterSize= 4;
else if (flags&SWS_X ) filterSize= 4;
else filterSize= 2; // SWS_BILINEAR / SWS_AREA
filterSize= 2;
filter= av_malloc(dstW*sizeof(*filter)*filterSize);

xDstInSrc= xInc/2 - 0x8000;


Loading…
Cancel
Save