emile: Remove unnecessary check in _emile_jpeg_head function

Summary: Already checked it by "else if ((opts->w > 0) && (opts->h > 0))"

Reviewers: cedric, Hermet

Reviewed By: Hermet

Subscribers: cedric

Differential Revision: https://phab.enlightenment.org/D2199
This commit is contained in:
jiin.moon 2015-03-20 14:02:58 +09:00 committed by ChunEon Park
parent 262dd3a139
commit 34d92d4d1e
1 changed files with 7 additions and 15 deletions

View File

@ -1441,23 +1441,15 @@ _emile_jpeg_head(Emile_Image *image,
opts->h = load_opts_w;
}
if (opts->w > 0)
{
w2 = opts->w;
h2 = (opts->w * prop->h) / prop->w;
if ((opts->h > 0) && (h2 > opts->h))
{
unsigned int w3;
h2 = opts->h;
w3 = (opts->h * prop->w) / prop->h;
if (w3 > w2)
w2 = w3;
}
}
else if (opts->h > 0)
w2 = opts->w;
h2 = (opts->w * prop->h) / prop->w;
if (h2 > opts->h)
{
unsigned int w3;
h2 = opts->h;
w2 = (opts->h * prop->w) / prop->h;
w3 = (opts->h * prop->w) / prop->h;
if (w3 > w2)
w2 = w3;
}
prop->w = w2;
prop->h = h2;