From c01d52ba24fa34833cf07f6904beac9742f85be4 Mon Sep 17 00:00:00 2001 From: Steven Robertson Date: Tue, 31 Jan 2012 12:10:15 -0500 Subject: [PATCH] Fix scaling spatial std on output width --- cuburn/code/filtering.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cuburn/code/filtering.py b/cuburn/code/filtering.py index ff93ee0..6bcba88 100644 --- a/cuburn/code/filtering.py +++ b/cuburn/code/filtering.py @@ -372,7 +372,7 @@ class Filtering(HunkOCode): dstd=1.5, dpow=0.8, gspeed=4.0): # Scale spatial parameter so that a "pixel" is equivalent to an # actual pixel at 1080p - sstd *= 1920. / dim.w + sstd *= dim.w / 1920. tref.set_address_2d(bsrc, dsc, sb)