diff options
author | Paul B Mahol <onemda@gmail.com> | 2019-10-23 09:44:08 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2019-10-23 09:44:08 +0200 |
commit | 7832e05c35eee0b272957ba7e7d5abcc0c1d9173 (patch) | |
tree | b22e25cd6cc8ae1220dda576a94a3ca85dcfaeff /libavfilter/vf_lut2.c | |
parent | 1f327f5d277ce119e027b2d31c260ccabfdbf23c (diff) | |
download | ffmpeg-7832e05c35eee0b272957ba7e7d5abcc0c1d9173.tar.gz |
avfilter/vf_lut2: fix typo, correctly support gray14
Diffstat (limited to 'libavfilter/vf_lut2.c')
-rw-r--r-- | libavfilter/vf_lut2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_lut2.c b/libavfilter/vf_lut2.c index 721de7d210..647420c2f1 100644 --- a/libavfilter/vf_lut2.c +++ b/libavfilter/vf_lut2.c @@ -129,7 +129,7 @@ static av_cold void uninit(AVFilterContext *ctx) #define BIT14_FMTS \ AV_PIX_FMT_YUV420P14, AV_PIX_FMT_YUV422P14, AV_PIX_FMT_YUV444P14, \ - AV_PIX_FMT_GRAY12, AV_PIX_FMT_GBRP14, + AV_PIX_FMT_GRAY14, AV_PIX_FMT_GBRP14, #define BIT16_FMTS \ AV_PIX_FMT_YUV420P16, AV_PIX_FMT_YUV422P16, AV_PIX_FMT_YUV444P16, \ |