summaryrefslogtreecommitdiff
path: root/libavfilter/avf_showwaves.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2019-05-30 20:31:03 +0200
committerPaul B Mahol <onemda@gmail.com>2019-06-04 09:28:07 +0200
commitd3f236b300e334d84f40b836278278833107d0fd (patch)
tree9842785603fa526b7454e47a10b57681ff0c95fa /libavfilter/avf_showwaves.c
parentff2a638c83161b2b5d15acca494436922b389d51 (diff)
avilter/avf_showwaves: switch to activate in showwaves filter
Diffstat (limited to 'libavfilter/avf_showwaves.c')
-rw-r--r--libavfilter/avf_showwaves.c30
1 files changed, 27 insertions, 3 deletions
diff --git a/libavfilter/avf_showwaves.c b/libavfilter/avf_showwaves.c
index d85ebd9050..afe05fb504 100644
--- a/libavfilter/avf_showwaves.c
+++ b/libavfilter/avf_showwaves.c
@@ -29,6 +29,7 @@
#include "libavutil/opt.h"
#include "libavutil/parseutils.h"
#include "avfilter.h"
+#include "filters.h"
#include "formats.h"
#include "audio.h"
#include "video.h"
@@ -706,7 +707,8 @@ static int showwaves_filter_frame(AVFilterLink *inlink, AVFrame *insamples)
showwaves->sample_count_mod = 0;
showwaves->buf_idx++;
}
- if (showwaves->buf_idx == showwaves->w)
+ if (showwaves->buf_idx == showwaves->w ||
+ (ff_outlink_get_status(inlink) && i == nb_samples - 1))
if ((ret = push_frame(outlink)) < 0)
break;
outpicref = showwaves->outpicref;
@@ -717,11 +719,33 @@ end:
return ret;
}
+static int activate(AVFilterContext *ctx)
+{
+ AVFilterLink *inlink = ctx->inputs[0];
+ AVFilterLink *outlink = ctx->outputs[0];
+ ShowWavesContext *showwaves = ctx->priv;
+ AVFrame *in;
+ const int nb_samples = showwaves->n * outlink->w;
+ int ret;
+
+ FF_FILTER_FORWARD_STATUS_BACK(outlink, inlink);
+
+ ret = ff_inlink_consume_samples(inlink, nb_samples, nb_samples, &in);
+ if (ret < 0)
+ return ret;
+ if (ret > 0)
+ return showwaves_filter_frame(inlink, in);
+
+ FF_FILTER_FORWARD_STATUS(inlink, outlink);
+ FF_FILTER_FORWARD_WANTED(outlink, inlink);
+
+ return FFERROR_NOT_READY;
+}
+
static const AVFilterPad showwaves_inputs[] = {
{
.name = "default",
.type = AVMEDIA_TYPE_AUDIO,
- .filter_frame = showwaves_filter_frame,
},
{ NULL }
};
@@ -731,7 +755,6 @@ static const AVFilterPad showwaves_outputs[] = {
.name = "default",
.type = AVMEDIA_TYPE_VIDEO,
.config_props = config_output,
- .request_frame = request_frame,
},
{ NULL }
};
@@ -744,6 +767,7 @@ AVFilter ff_avf_showwaves = {
.query_formats = query_formats,
.priv_size = sizeof(ShowWavesContext),
.inputs = showwaves_inputs,
+ .activate = activate,
.outputs = showwaves_outputs,
.priv_class = &showwaves_class,
};