# HG changeset patch # User ramiro # Date 1248207435 0 # Node ID 853373376acbeca31da48b692c811fa8c665f095 # Parent cd3ec59296a0281c02d9858eb17a531ee951dbd8 Remove unused variables. diff -r cd3ec59296a0 -r 853373376acb libswscale/swscale.c --- a/libswscale/swscale.c Tue Jul 21 08:20:22 2009 +0000 +++ b/libswscale/swscale.c Tue Jul 21 20:17:15 2009 +0000 @@ -2683,9 +2683,6 @@ 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); diff -r cd3ec59296a0 -r 853373376acb libswscale/swscale_internal.h --- a/libswscale/swscale_internal.h Tue Jul 21 08:20:22 2009 +0000 +++ b/libswscale/swscale_internal.h Tue Jul 21 20:17:15 2009 +0000 @@ -82,7 +82,6 @@ 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;