OSDN Git Service

Remove unused variables.
authorRamiro Polla <ramiro.polla@gmail.com>
Tue, 21 Jul 2009 20:17:15 +0000 (20:17 +0000)
committerRamiro Polla <ramiro.polla@gmail.com>
Tue, 21 Jul 2009 20:17:15 +0000 (20:17 +0000)
Originally committed as revision 29435 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale

libswscale/swscale.c
libswscale/swscale_internal.h

index 31cf36a..64c4e2b 100644 (file)
@@ -2683,9 +2683,6 @@ SwsContext *sws_getContext(int srcW, int srcH, enum PixelFormat srcFormat, int d
         c->param[1] = SWS_PARAM_DEFAULT;
     }
 
-    c->chrIntHSubSample= c->chrDstHSubSample;
-    c->chrIntVSubSample= c->chrSrcVSubSample;
-
     // Note the -((-x)>>y) is so that we always round toward +inf.
     c->chrSrcW= -((-srcW) >> c->chrSrcHSubSample);
     c->chrSrcH= -((-srcH) >> c->chrSrcVSubSample);
index 871575e..50cf304 100644 (file)
@@ -82,7 +82,6 @@ typedef struct SwsContext{
     enum PixelFormat dstFormat, srcFormat;  ///< format 4:2:0 type is always YV12
     int origDstFormat, origSrcFormat;       ///< format
     int chrSrcHSubSample, chrSrcVSubSample;
-    int chrIntHSubSample, chrIntVSubSample;
     int chrDstHSubSample, chrDstVSubSample;
     int vChrDrop;
     int sliceDir;