avfilter/vf_v360: do not use mod where it is not needed

This commit is contained in:
Paul B Mahol 2019-09-24 11:26:46 +02:00
parent 3104100a12
commit a214c17414
1 changed files with 2 additions and 2 deletions

View File

@ -1635,7 +1635,7 @@ static void xyz_to_ball(const V360Context *s,
for (int i = -1; i < 3; i++) {
for (int j = -1; j < 3; j++) {
us[i + 1][j + 1] = mod(ui + j, width);
us[i + 1][j + 1] = av_clip(ui + j, 0, width - 1);
vs[i + 1][j + 1] = av_clip(vi + i, 0, height - 1);
}
}
@ -1743,7 +1743,7 @@ static void xyz_to_hammer(const V360Context *s,
for (int i = -1; i < 3; i++) {
for (int j = -1; j < 3; j++) {
us[i + 1][j + 1] = mod(ui + j, width);
us[i + 1][j + 1] = av_clip(ui + j, 0, width - 1);
vs[i + 1][j + 1] = av_clip(vi + i, 0, height - 1);
}
}