From 49478321ac6b339f7b3a8fd9c66d730c9f860f06 Mon Sep 17 00:00:00 2001 From: Reinhard Pointner Date: Thu, 3 Aug 2017 11:11:40 +0800 Subject: [PATCH] Make sure that 748x574 resolution resolves to 576p --- source/net/filebot/format/MediaBindingBean.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/net/filebot/format/MediaBindingBean.java b/source/net/filebot/format/MediaBindingBean.java index 4a8ea6ef..a40cdef2 100644 --- a/source/net/filebot/format/MediaBindingBean.java +++ b/source/net/filebot/format/MediaBindingBean.java @@ -355,8 +355,8 @@ public class MediaBindingBean { int width = Integer.parseInt(getMediaInfo(StreamKind.Video, 0, "Width")); int height = Integer.parseInt(getMediaInfo(StreamKind.Video, 0, "Height")); - int[] ws = new int[] { 15360, 7680, 3840, 1920, 1280, 1024, 854, 852, 720, 688, 512, 320 }; - int[] hs = new int[] { 8640, 4320, 2160, 1080, 720, 576, 576, 480, 480, 360, 240, 240 }; + int[] ws = new int[] { 15360, 7680, 3840, 1920, 1280, 1024, 854, 720, 688, 512, 320 }; + int[] hs = new int[] { 8640, 4320, 2160, 1080, 720, 576, 576, 480, 360, 240, 240 }; int ns = 0;