diff options
author | Paul B Mahol <onemda@gmail.com> | 2017-04-10 18:12:33 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2017-04-10 18:13:02 +0200 |
commit | 27ebdcf079ed54d294db010e9f50700f75ed5e3d (patch) | |
tree | 4f302e9f351444660bd95544ba3df68ff4607e07 /libavfilter/vf_atadenoise.c | |
parent | 0c4d75d92e3a4f3554b63e930255ac8efc5aae1f (diff) | |
download | ffmpeg-27ebdcf079ed54d294db010e9f50700f75ed5e3d.tar.gz |
avfilter: add GRAY10 and GRAY12 to some filters
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavfilter/vf_atadenoise.c')
-rw-r--r-- | libavfilter/vf_atadenoise.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavfilter/vf_atadenoise.c b/libavfilter/vf_atadenoise.c index bf75d53d92..8d34403847 100644 --- a/libavfilter/vf_atadenoise.c +++ b/libavfilter/vf_atadenoise.c @@ -80,6 +80,8 @@ static int query_formats(AVFilterContext *ctx) { static const enum AVPixelFormat pixel_fmts[] = { AV_PIX_FMT_GRAY8, + AV_PIX_FMT_GRAY10, + AV_PIX_FMT_GRAY12, AV_PIX_FMT_GRAY16, AV_PIX_FMT_YUV410P, AV_PIX_FMT_YUV411P, AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUV422P, |