[FFmpeg-cvslog] avfilter/vf_waveform: allow alpha output for >8 depth planar rgb inputs
Paul B Mahol
git at videolan.org
Sun Jun 25 14:16:36 EEST 2017
ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Sun Jun 25 13:14:22 2017 +0200| [8a14374ab374d6c99c71cd98692d30cccfc0e039] | committer: Paul B Mahol
avfilter/vf_waveform: allow alpha output for >8 depth planar rgb inputs
Signed-off-by: Paul B Mahol <onemda at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8a14374ab374d6c99c71cd98692d30cccfc0e039
---
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
};
More information about the ffmpeg-cvslog
mailing list