Skip to content

Commit

Permalink
move up 2/3d split areas
Browse files Browse the repository at this point in the history
  • Loading branch information
happycube committed Oct 23, 2018
1 parent 8f818db commit bea37dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions comb-ntsc.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -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];
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit bea37dc

Please sign in to comment.