Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2017-06-25 14:14:22 +0300
committerPaul B Mahol <onemda@gmail.com>2017-06-25 14:14:22 +0300
commit8a14374ab374d6c99c71cd98692d30cccfc0e039 (patch)
tree72403394b1340fe5ec7882bada673e631c1317ba /libavfilter
parentf269a1e0b8816737d421afce2908977c3e26fa7c (diff)
avfilter/vf_waveform: allow alpha output for >8 depth planar rgb inputs
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/vf_waveform.c4
1 files 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
};