Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2018-09-09 20:05:56 +0300
committerPaul B Mahol <onemda@gmail.com>2018-09-09 20:10:44 +0300
commitbd6c57d532c5abf9cffa80bbf94ba3444588f6e8 (patch)
treefa11ee55238653e92d994522a8fae18fd5a0b538 /libavfilter/vf_threshold.c
parente70f6cb7e3d04984be7a694c75c30dbe50037c21 (diff)
avfilter: add support for gray14 format
Diffstat (limited to 'libavfilter/vf_threshold.c')
-rw-r--r--libavfilter/vf_threshold.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_threshold.c b/libavfilter/vf_threshold.c
index 58b5d14836..bd73392863 100644
--- a/libavfilter/vf_threshold.c
+++ b/libavfilter/vf_threshold.c
@@ -61,7 +61,7 @@ static int query_formats(AVFilterContext *ctx)
AV_PIX_FMT_GBRP12, AV_PIX_FMT_GBRP14, AV_PIX_FMT_GBRP16,
AV_PIX_FMT_GBRAP, AV_PIX_FMT_GBRAP10, AV_PIX_FMT_GBRAP12 , AV_PIX_FMT_GBRAP16,
AV_PIX_FMT_GRAY8, AV_PIX_FMT_GRAY9, AV_PIX_FMT_GRAY10,
- AV_PIX_FMT_GRAY12, AV_PIX_FMT_GRAY16,
+ AV_PIX_FMT_GRAY12, AV_PIX_FMT_GRAY14, AV_PIX_FMT_GRAY16,
AV_PIX_FMT_NONE
};