diff options
author | Paul B Mahol <onemda@gmail.com> | 2019-09-09 18:36:56 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2019-09-09 18:40:39 +0200 |
commit | 558265d4bc1aa3c6569e6eeea23127b030b23501 (patch) | |
tree | 0601653a6e2c03c8c7fc2d06dea02228822f5ae4 /libavfilter/v360.h | |
parent | 29bde4b3b6d70ee404b1e2f059944f7025dd2186 (diff) | |
download | ffmpeg-558265d4bc1aa3c6569e6eeea23127b030b23501.tar.gz |
avfilter/vf_v360: add padding to u/v/ker
Fixes use of uninitialized variables.
Diffstat (limited to 'libavfilter/v360.h')
-rw-r--r-- | libavfilter/v360.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/v360.h b/libavfilter/v360.h index 93ac8034ef..85d87e7755 100644 --- a/libavfilter/v360.h +++ b/libavfilter/v360.h @@ -110,6 +110,7 @@ typedef struct V360Context { int planewidth[4], planeheight[4]; int inplanewidth[4], inplaneheight[4]; + int uv_linesize[4]; int nb_planes; int nb_allocated; |