[FFmpeg-cvslog] avfilter/vf_lenscorrection: remove unused elements

Paul B Mahol git at videolan.org
Tue Jan 26 21:09:16 EET 2021


ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Tue Jan 26 20:05:01 2021 +0100| [199d9e705a076606e3f86b01ae2927b48cd5a098] | committer: Paul B Mahol

avfilter/vf_lenscorrection: remove unused elements

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=199d9e705a076606e3f86b01ae2927b48cd5a098
---

 libavfilter/vf_lenscorrection.c | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/libavfilter/vf_lenscorrection.c b/libavfilter/vf_lenscorrection.c
index a74adea4a6..9386f795da 100644
--- a/libavfilter/vf_lenscorrection.c
+++ b/libavfilter/vf_lenscorrection.c
@@ -38,8 +38,6 @@
 
 typedef struct LenscorrectionCtx {
     const AVClass *av_class;
-    int width;
-    int height;
     int planewidth[4];
     int planeheight[4];
     int depth;
@@ -262,8 +260,6 @@ static int config_output(AVFilterLink *outlink)
     rect->planeheight[0] = rect->planeheight[3] = inlink->h;
     rect->planewidth[1]  = rect->planewidth[2]  = AV_CEIL_RSHIFT(inlink->w, pixdesc->log2_chroma_w);
     rect->planewidth[0]  = rect->planewidth[3]  = inlink->w;
-    outlink->w = rect->width = inlink->w;
-    outlink->h = rect->height = inlink->h;
     rect->nb_planes = av_pix_fmt_count_planes(inlink->format);
     rect->filter_slice = rect->depth <= 8 ? filter8_slice : filter16_slice;
     if (rect->interpolation)



More information about the ffmpeg-cvslog mailing list