diff options
author | Carl Eugen Hoyos <ceffmpeg@gmail.com> | 2020-07-26 21:58:31 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <ceffmpeg@gmail.com> | 2020-08-25 01:29:24 +0200 |
commit | b61376bdee61c08732105fa331eb076497eface9 (patch) | |
tree | 0e8ab0e86d92e4e2ea639d55ee677b5bb8707fd8 /libavfilter/hflip.h | |
parent | 3092a53cbc48252d29007177205f599c9c6f8769 (diff) | |
download | ffmpeg-b61376bdee61c08732105fa331eb076497eface9.tar.gz |
lavfi/hflip: Support Bayer pixel formats.
Fixes part of ticket #8819.
Diffstat (limited to 'libavfilter/hflip.h')
-rw-r--r-- | libavfilter/hflip.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/hflip.h b/libavfilter/hflip.h index 204090dbb4..a40b98470b 100644 --- a/libavfilter/hflip.h +++ b/libavfilter/hflip.h @@ -27,6 +27,7 @@ typedef struct FlipContext { const AVClass *class; int max_step[4]; ///< max pixel step for each plane, expressed as a number of bytes + int bayer_plus1; ///< 1 .. not a Bayer input format, 2 .. Bayer input format int planewidth[4]; ///< width of each plane int planeheight[4]; ///< height of each plane |