diff options
author | Paul B Mahol <onemda@gmail.com> | 2018-03-22 23:08:33 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2018-03-22 23:08:33 +0100 |
commit | b78d55b2e63e410abe744932fda9358633743a9e (patch) | |
tree | f96a6627f9316887e188a5ddbe19c0704150d0bd | |
parent | 016d40011ac2815157fc11f6dda2f9bfb520ecfe (diff) | |
download | ffmpeg-b78d55b2e63e410abe744932fda9358633743a9e.tar.gz |
avfilter/avf_showvolume: add background opacity option
This makes output more visible when overlayed.
Signed-off-by: Paul B Mahol <onemda@gmail.com>
-rw-r--r-- | doc/filters.texi | 5 | ||||
-rw-r--r-- | libavfilter/avf_showvolume.c | 15 |
2 files changed, 16 insertions, 4 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index aa7d4fc2d9..d6ea56b851 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -19941,8 +19941,11 @@ Set orientation, can be @code{horizontal} or @code{vertical}, default is @code{horizontal}. @item s -Set step size, allowed range s [0, 5]. Default is 0, which means +Set step size, allowed range is [0, 5]. Default is 0, which means step is disabled. + +@item p +Set background opacity, allowed range is [0, 1]. Default is 0. @end table @section showwaves diff --git a/libavfilter/avf_showvolume.c b/libavfilter/avf_showvolume.c index 897e5709b8..9b836b9ad6 100644 --- a/libavfilter/avf_showvolume.c +++ b/libavfilter/avf_showvolume.c @@ -43,6 +43,7 @@ typedef struct ShowVolumeContext { char *color; int orientation; int step; + float bgopacity; AVFrame *out; AVExpr *c_expr; @@ -69,6 +70,7 @@ static const AVOption showvolume_options[] = { { "h", "horizontal", 0, AV_OPT_TYPE_CONST, {.i64=0}, 0, 0, FLAGS, "orientation" }, { "v", "vertical", 0, AV_OPT_TYPE_CONST, {.i64=1}, 0, 0, FLAGS, "orientation" }, { "s", "set step size", OFFSET(step), AV_OPT_TYPE_INT, {.i64=0}, 0, 5, FLAGS }, + { "p", "set background opacity", OFFSET(bgopacity), AV_OPT_TYPE_FLOAT, {.dbl=0}, 0, 1, FLAGS }, { NULL } }; @@ -224,18 +226,25 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *insamples) return AVERROR(ENOMEM); } - for (i = 0; i < outlink->h; i++) - memset(s->out->data[0] + i * s->out->linesize[0], 0, outlink->w * 4); + for (i = 0; i < outlink->h; i++) { + uint32_t *dst = (uint32_t *)(s->out->data[0] + i * s->out->linesize[0]); + const uint32_t bg = (uint32_t)(s->bgopacity * 255) << 24; + + for (j = 0; j < outlink->w; j++) + AV_WN32A(dst + j, bg); + } } s->out->pts = insamples->pts; for (j = 0; j < outlink->h; j++) { uint8_t *dst = s->out->data[0] + j * s->out->linesize[0]; + const uint32_t alpha = s->bgopacity * 255; + for (k = 0; k < outlink->w; k++) { dst[k * 4 + 0] = FFMAX(dst[k * 4 + 0] * s->f, 0); dst[k * 4 + 1] = FFMAX(dst[k * 4 + 1] * s->f, 0); dst[k * 4 + 2] = FFMAX(dst[k * 4 + 2] * s->f, 0); - dst[k * 4 + 3] = FFMAX(dst[k * 4 + 3] * s->f, 0); + dst[k * 4 + 3] = FFMAX(dst[k * 4 + 3] * s->f, alpha); } } |