[FFmpeg-cvslog] avfilter/vf_v360: replace deprecated FF_CEIL_RSHIFT()
Paul B Mahol
git at videolan.org
Sun Oct 24 15:09:13 EEST 2021
ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Sun Oct 24 14:00:49 2021 +0200| [9353d1a60ffbb1031ba36c0a53d0e2085389b601] | committer: Paul B Mahol
avfilter/vf_v360: replace deprecated FF_CEIL_RSHIFT()
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=9353d1a60ffbb1031ba36c0a53d0e2085389b601
---
libavfilter/vf_v360.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavfilter/vf_v360.c b/libavfilter/vf_v360.c
index c252a2057a..8a27e0fab2 100644
--- a/libavfilter/vf_v360.c
+++ b/libavfilter/vf_v360.c
@@ -4254,9 +4254,9 @@ static void fov_from_dfov(int format, float d_fov, float w, float h, float *h_fo
static void set_dimensions(int *outw, int *outh, int w, int h, const AVPixFmtDescriptor *desc)
{
- outw[1] = outw[2] = FF_CEIL_RSHIFT(w, desc->log2_chroma_w);
+ outw[1] = outw[2] = AV_CEIL_RSHIFT(w, desc->log2_chroma_w);
outw[0] = outw[3] = w;
- outh[1] = outh[2] = FF_CEIL_RSHIFT(h, desc->log2_chroma_h);
+ outh[1] = outh[2] = AV_CEIL_RSHIFT(h, desc->log2_chroma_h);
outh[0] = outh[3] = h;
}
More information about the ffmpeg-cvslog
mailing list