From ac15d7a666333060c3d0871e82a61e815b69390e Mon Sep 17 00:00:00 2001 From: Paul B Mahol <onemda@gmail.com> Date: Fri, 4 Mar 2016 22:58:45 +0100 Subject: [PATCH] avfilter/vf_histogram: explicitly set 10bit output formats Signed-off-by: Paul B Mahol <onemda@gmail.com> --- libavfilter/vf_histogram.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libavfilter/vf_histogram.c b/libavfilter/vf_histogram.c index 3a4725beeff..971d9b2618a 100644 --- a/libavfilter/vf_histogram.c +++ b/libavfilter/vf_histogram.c @@ -148,8 +148,10 @@ static int query_formats(AVFilterContext *ctx) out_pix_fmts = levels_out_yuv8_pix_fmts; else if (bits == 9) out_pix_fmts = levels_out_yuv9_pix_fmts; - else // if (bits == 10) + else if (bits == 10) out_pix_fmts = levels_out_yuv10_pix_fmts; + else + return AVERROR(EAGAIN); if ((ret = ff_formats_ref(ff_make_format_list(out_pix_fmts), &ctx->outputs[0]->in_formats)) < 0) return ret; -- GitLab