From 95ece85516811819bcf9e97e60846115ff6571f7 Mon Sep 17 00:00:00 2001 From: wgw Date: Mon, 31 Dec 2007 05:44:19 -0600 Subject: [PATCH] optres bug fix Signed-off-by: wgw --- plugins/video/transcode.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/video/transcode.py b/plugins/video/transcode.py index 384bafa..15db0f1 100644 --- a/plugins/video/transcode.py +++ b/plugins/video/transcode.py @@ -80,8 +80,8 @@ def select_aspect(inFile, tsn = ''): debug_write(['optres:', optres, '\n']) if optres: - optHeight = Config.nearestTivoHeight(height) - optWidth = Config.nearestTivoWidth(width) + optHeight = config.nearestTivoHeight(height) + optWidth = config.nearestTivoWidth(width) if optHeight < TIVO_HEIGHT: TIVO_HEIGHT = optHeight if optWidth < TIVO_WIDTH: -- 2.11.4.GIT