diff options
author | Paul B Mahol <onemda@gmail.com> | 2019-09-24 11:26:46 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2019-09-24 11:28:11 +0200 |
commit | a214c17414bd453086aa2b530af300bd2087052b (patch) | |
tree | 1ef4e036c375d56ada0e199269724c7b54440014 | |
parent | 3104100a1270693673be9a7eec386cfe3ab5554d (diff) | |
download | ffmpeg-a214c17414bd453086aa2b530af300bd2087052b.tar.gz |
avfilter/vf_v360: do not use mod where it is not needed
-rw-r--r-- | libavfilter/vf_v360.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/vf_v360.c b/libavfilter/vf_v360.c index 9596a75c0d..71500e7e3b 100644 --- a/libavfilter/vf_v360.c +++ b/libavfilter/vf_v360.c @@ -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); } } |