From b5d428d9c141300c7183f76995a8d632d8c1d421 Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Sat, 20 Aug 2016 12:13:56 +0900 Subject: [PATCH] adjust a little what rage thinks is a movie for thumbnailing --- src/bin/thumb.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/thumb.c b/src/bin/thumb.c index f36cd65..683bea6 100644 --- a/src/bin/thumb.c +++ b/src/bin/thumb.c @@ -64,8 +64,8 @@ _cb_loaded(void *data, Evas_Object *obj, void *info EINA_UNUSED) if (ratio > 0.0) iw = (ih * ratio); else ratio = iw / ih; if ((ratio >= (4.0 / 3.0)) && - (ratio <= (3.0 / 1.0)) && - (len >= (75.0 * 60.0)) && + (ratio <= (4.0 / 1.0)) && + (len >= (60.0 * 60.0)) && (len <= (5.0 * 60.0 * 60.0))) is_movie = EINA_TRUE; }