diff options
author | Paul B Mahol <onemda@gmail.com> | 2018-11-08 12:46:29 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2018-11-08 13:05:08 +0100 |
commit | 1d9fe1fdf65b5eebe9d1981fd96b4930f0855a68 (patch) | |
tree | 8d66d564956bd23c9b3109eb8d79b54f12a355dc | |
parent | 8dc5eb43b070efe152be8971ae58512ea23ecc02 (diff) | |
download | ffmpeg-1d9fe1fdf65b5eebe9d1981fd96b4930f0855a68.tar.gz |
avfilter/af_afir: implement rate option
-rw-r--r-- | doc/filters.texi | 3 | ||||
-rw-r--r-- | libavfilter/af_afir.c | 24 | ||||
-rw-r--r-- | libavfilter/af_afir.h | 1 |
3 files changed, 23 insertions, 5 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index cc28e71e32..d055342866 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -1214,6 +1214,9 @@ displayed. This option is used only when @var{response} is enabled. @item size Set video stream size. This option is used only when @var{response} is enabled. + +@item rate +Set video stream frame rate. This option is used only when @var{response} is enabled. @end table @subsection Examples diff --git a/libavfilter/af_afir.c b/libavfilter/af_afir.c index 69516ccc52..6692dc768d 100644 --- a/libavfilter/af_afir.c +++ b/libavfilter/af_afir.c @@ -510,12 +510,20 @@ static int activate(AVFilterContext *ctx) return ret; if (s->response && s->have_coeffs) { - if (ff_outlink_frame_wanted(ctx->outputs[1])) { - s->video->pts = s->pts; + int64_t old_pts = s->video->pts; + int64_t new_pts = av_rescale_q(s->pts, ctx->inputs[0]->time_base, ctx->outputs[1]->time_base); + + if (ff_outlink_frame_wanted(ctx->outputs[1]) && old_pts < new_pts) { + s->video->pts = new_pts; return ff_filter_frame(ctx->outputs[1], av_frame_clone(s->video)); } } + if (ff_inlink_queued_samples(ctx->inputs[0]) >= s->part_size) { + ff_filter_set_ready(ctx, 10); + return 0; + } + if (ff_inlink_acknowledge_status(ctx->inputs[0], &status, &pts)) { if (status == AVERROR_EOF) { ff_outlink_set_status(ctx->outputs[0], status, pts); @@ -525,17 +533,20 @@ static int activate(AVFilterContext *ctx) } } - if (ff_outlink_frame_wanted(ctx->outputs[0])) { + if (ff_outlink_frame_wanted(ctx->outputs[0]) && + !ff_outlink_get_status(ctx->inputs[0])) { ff_inlink_request_frame(ctx->inputs[0]); return 0; } - if (s->response && ff_outlink_frame_wanted(ctx->outputs[1])) { + if (s->response && + ff_outlink_frame_wanted(ctx->outputs[1]) && + !ff_outlink_get_status(ctx->inputs[0])) { ff_inlink_request_frame(ctx->inputs[0]); return 0; } - return 0; + return FFERROR_NOT_READY; } static int query_formats(AVFilterContext *ctx) @@ -677,6 +688,8 @@ static int config_video(AVFilterLink *outlink) outlink->sample_aspect_ratio = (AVRational){1,1}; outlink->w = s->w; outlink->h = s->h; + outlink->frame_rate = s->frame_rate; + outlink->time_base = av_inv_q(outlink->frame_rate); av_frame_free(&s->video); s->video = ff_get_video_buffer(outlink, outlink->w, outlink->h); @@ -769,6 +782,7 @@ static const AVOption afir_options[] = { { "response", "show IR frequency response", OFFSET(response), AV_OPT_TYPE_BOOL, {.i64=0}, 0, 1, VF }, { "channel", "set IR channel to display frequency response", OFFSET(ir_channel), AV_OPT_TYPE_INT, {.i64=0}, 0, 1024, VF }, { "size", "set video size", OFFSET(w), AV_OPT_TYPE_IMAGE_SIZE, {.str = "hd720"}, 0, 0, VF }, + { "rate", "set video rate", OFFSET(frame_rate), AV_OPT_TYPE_VIDEO_RATE, {.str = "25"}, 0, INT32_MAX, VF }, { NULL } }; diff --git a/libavfilter/af_afir.h b/libavfilter/af_afir.h index 7d4f32eaeb..3dc2f86f7e 100644 --- a/libavfilter/af_afir.h +++ b/libavfilter/af_afir.h @@ -44,6 +44,7 @@ typedef struct AudioFIRContext { float max_ir_len; int response; int w, h; + AVRational frame_rate; int ir_channel; float gain; |