diff options
author | Paul B Mahol <onemda@gmail.com> | 2019-11-18 17:15:29 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2019-11-18 17:15:29 +0100 |
commit | 410f81f822de0d0189dab5b7ea08e1ffd73dfa20 (patch) | |
tree | 274208304616cefaffaa5f2f410711ba1168b495 /libavfilter/vf_lut2.c | |
parent | a50bd3a50e498f2068b9c360e88c64929ce8ce81 (diff) | |
download | ffmpeg-410f81f822de0d0189dab5b7ea08e1ffd73dfa20.tar.gz |
avfilter/vf_lut2: add 12bit depth alpha formats
Diffstat (limited to 'libavfilter/vf_lut2.c')
-rw-r--r-- | libavfilter/vf_lut2.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/vf_lut2.c b/libavfilter/vf_lut2.c index 647420c2f1..7a204f5f1d 100644 --- a/libavfilter/vf_lut2.c +++ b/libavfilter/vf_lut2.c @@ -125,6 +125,7 @@ static av_cold void uninit(AVFilterContext *ctx) #define BIT12_FMTS \ AV_PIX_FMT_YUV420P12, AV_PIX_FMT_YUV422P12, AV_PIX_FMT_YUV444P12, AV_PIX_FMT_YUV440P12, \ + AV_PIX_FMT_YUVA422P12, AV_PIX_FMT_YUVA444P12, \ AV_PIX_FMT_GRAY12, AV_PIX_FMT_GBRAP12, AV_PIX_FMT_GBRP12, #define BIT14_FMTS \ |