[FFmpeg-cvslog] lavfi/af_agate: use helper macros.
Nicolas George
git at videolan.org
Tue Sep 12 12:07:42 EEST 2017
ffmpeg | branch: master | Nicolas George <george at nsup.org> | Thu Aug 31 16:53:35 2017 +0200| [567d318b1cc11c7733dfe2f43a4bfe16c001865c] | committer: Nicolas George
lavfi/af_agate: use helper macros.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=567d318b1cc11c7733dfe2f43a4bfe16c001865c
---
libavfilter/af_agate.c | 15 +++++----------
1 file changed, 5 insertions(+), 10 deletions(-)
diff --git a/libavfilter/af_agate.c b/libavfilter/af_agate.c
index f4fcabef93..20905ccb19 100644
--- a/libavfilter/af_agate.c
+++ b/libavfilter/af_agate.c
@@ -270,10 +270,10 @@ static int activate(AVFilterContext *ctx)
{
AudioGateContext *s = ctx->priv;
AVFrame *out = NULL, *in[2] = { NULL };
- int ret, i, status, nb_samples;
+ int ret, i, nb_samples;
double *dst;
- int64_t pts;
+ FF_FILTER_FORWARD_STATUS_BACK_ALL(ctx->outputs[0], ctx);
if ((ret = ff_inlink_consume_frame(ctx->inputs[0], &in[0])) > 0) {
av_audio_fifo_write(s->fifo[0], (void **)in[0]->extended_data,
in[0]->nb_samples);
@@ -321,13 +321,9 @@ static int activate(AVFilterContext *ctx)
if (ret < 0)
return ret;
}
- if (ff_inlink_acknowledge_status(ctx->inputs[0], &status, &pts)) {
- ff_outlink_set_status(ctx->outputs[0], status, pts);
- return 0;
- } else if (ff_inlink_acknowledge_status(ctx->inputs[1], &status, &pts)) {
- ff_outlink_set_status(ctx->outputs[0], status, pts);
- return 0;
- } else {
+ FF_FILTER_FORWARD_STATUS(ctx->inputs[0], ctx->outputs[0]);
+ FF_FILTER_FORWARD_STATUS(ctx->inputs[1], ctx->outputs[0]);
+ /* TODO reindent */
if (ff_outlink_frame_wanted(ctx->outputs[0])) {
if (!av_audio_fifo_size(s->fifo[0]))
ff_inlink_request_frame(ctx->inputs[0]);
@@ -335,7 +331,6 @@ static int activate(AVFilterContext *ctx)
ff_inlink_request_frame(ctx->inputs[1]);
}
return 0;
- }
}
static int scquery_formats(AVFilterContext *ctx)
More information about the ffmpeg-cvslog
mailing list