avfilter/vf_waveform: allow alpha output for >8 depth planar rgb inputs

Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
Paul B Mahol 2017-06-25 13:14:22 +02:00
parent f269a1e0b8
commit 8a14374ab3
1 changed files with 2 additions and 2 deletions

View File

@ -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
};