summaryrefslogtreecommitdiff
path: root/libavfilter/vf_histogram.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2015-08-16 13:01:53 +0200
committerPaul B Mahol <onemda@gmail.com>2015-08-22 19:48:42 +0000
commit14f97bb2bc32b2acf8b0367080532e67f88ad05e (patch)
tree4669caf6dbe9e44fcb3f037a6a0b722e3f68fac1 /libavfilter/vf_histogram.c
parente95193f5eaf1775613d68ca47ebcf66516a6b4ca (diff)
downloadffmpeg-14f97bb2bc32b2acf8b0367080532e67f88ad05e.tar.gz
avfilter: add waveform monitor filter
Diffstat (limited to 'libavfilter/vf_histogram.c')
-rw-r--r--libavfilter/vf_histogram.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/vf_histogram.c b/libavfilter/vf_histogram.c
index ab13f045c0..2712939f61 100644
--- a/libavfilter/vf_histogram.c
+++ b/libavfilter/vf_histogram.c
@@ -172,6 +172,7 @@ static int config_output(AVFilterLink *outlink)
outlink->h = (h->level_height + h->scale_height) * FFMAX(ncomp * h->display_mode, 1);
break;
case MODE_WAVEFORM:
+ av_log(ctx, AV_LOG_WARNING, "This mode is deprecated, please use waveform filter instead.\n");
if (h->waveform_mode)
outlink->h = 256 * FFMAX(h->ncomp * h->display_mode, 1);
else