From bea37dc41b9fc83b8865cd7936d37a7a11c6836e Mon Sep 17 00:00:00 2001 From: Chad Page Date: Mon, 22 Oct 2018 22:29:34 -0700 Subject: [PATCH] move up 2/3d split areas --- comb-ntsc.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/comb-ntsc.cxx b/comb-ntsc.cxx index ed760c41a..f9241cbd8 100644 --- a/comb-ntsc.cxx +++ b/comb-ntsc.cxx @@ -293,7 +293,7 @@ class Comb void Split2D(int f) { - for (int l = 44; l < in_y; l++) { + for (int l = 40; l < in_y; l++) { uint16_t *pline = &Frame[f].rawbuffer[(l - 2) * in_x]; uint16_t *line = &Frame[f].rawbuffer[l * in_x]; uint16_t *nline = &Frame[f].rawbuffer[(l + 2) * in_x]; @@ -368,7 +368,7 @@ class Comb void Split3D(int f, bool opt_flow = false) { - for (int l = 44; l < in_y; l++) { + for (int l = 40; l < in_y; l++) { uint16_t *line = &Frame[f].rawbuffer[l * in_x]; // shortcuts for previous/next 1D/pixel lines