Skip to content

Commit

Permalink
Fix shifting of rows by 0 pixels in pixs0r filter
Browse files Browse the repository at this point in the history
Resolves #162
  • Loading branch information
rrrapha authored and jaromil committed May 1, 2023
1 parent 73a6e3f commit d597c9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/filter/pixs0r/pixs0r.cc
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ struct pixshift0r
}
else
{
std::copy (inframe, inframe + m_width, outframe);
std::copy (inrow, inrow + m_width, outrow);
}
}

Expand Down Expand Up @@ -215,4 +215,4 @@ void f0r_destruct (f0r_instance_t instance)
{
delete static_cast<pixshift0r*>(instance);
}
}
}

0 comments on commit d597c9a

Please # to comment.