diff options
author | Paul B Mahol <onemda@gmail.com> | 2019-09-22 14:01:14 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2019-09-22 14:12:51 +0200 |
commit | 51a2f02117df54a78a3ccde65ff6b09d10503843 (patch) | |
tree | c0feb92e0d52b2236e3956c993946f2a2105193a /libavfilter/v360.h | |
parent | 79d14a3cc8e9105385044dbe2c4f696f0c9c1c07 (diff) | |
download | ffmpeg-51a2f02117df54a78a3ccde65ff6b09d10503843.tar.gz |
avfilter/vf_v360: add fixed pixel padding options
Diffstat (limited to 'libavfilter/v360.h')
-rw-r--r-- | libavfilter/v360.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavfilter/v360.h b/libavfilter/v360.h index aa0bb948d5..031c1924f1 100644 --- a/libavfilter/v360.h +++ b/libavfilter/v360.h @@ -114,6 +114,7 @@ typedef struct V360Context { int in_stereo, out_stereo; float in_pad, out_pad; + int fin_pad, fout_pad; float yaw, pitch, roll; @@ -129,6 +130,9 @@ typedef struct V360Context { float input_mirror_modifier[2]; float output_mirror_modifier[3]; + int in_width, in_height; + int out_width, out_height; + int pr_width[4], pr_height[4]; int in_offset_w[4], in_offset_h[4]; |