deobfuscate some very simple code...

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17216 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
ods15 2005-12-17 20:00:16 +00:00
parent ad18130764
commit 87b66affe9
1 changed files with 4 additions and 4 deletions

View File

@ -144,12 +144,12 @@ static int config(struct vf_instance_s* vf,
}
}
if (vf->priv->w < 0 && (-vf->priv->w & 8)) {
vf->priv->w = -(-vf->priv->w & ~8);
if (vf->priv->w <= -8) {
vf->priv->w += 8;
round_w = 1;
}
if (vf->priv->h < 0 && (-vf->priv->h & 8)) {
vf->priv->h = -(-vf->priv->h & ~8);
if (vf->priv->h <= -8) {
vf->priv->h += 8;
round_h = 1;
}