From 8a14374ab374d6c99c71cd98692d30cccfc0e039 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Sun, 25 Jun 2017 13:14:22 +0200 Subject: [PATCH] avfilter/vf_waveform: allow alpha output for >8 depth planar rgb inputs Signed-off-by: Paul B Mahol --- libavfilter/vf_waveform.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavfilter/vf_waveform.c b/libavfilter/vf_waveform.c index 44e9bf4dc2..efca49d22e 100644 --- a/libavfilter/vf_waveform.c +++ b/libavfilter/vf_waveform.c @@ -218,12 +218,12 @@ static const enum AVPixelFormat out_rgb9_lowpass_pix_fmts[] = { }; static const enum AVPixelFormat out_rgb10_lowpass_pix_fmts[] = { - AV_PIX_FMT_GBRP10, + AV_PIX_FMT_GBRP10, AV_PIX_FMT_GBRAP10, AV_PIX_FMT_NONE }; static const enum AVPixelFormat out_rgb12_lowpass_pix_fmts[] = { - AV_PIX_FMT_GBRP12, + AV_PIX_FMT_GBRP12, AV_PIX_FMT_GBRAP12, AV_PIX_FMT_NONE };