Browse Source

avfilter/af_afir: implement rate option

tags/n4.2
Paul B Mahol 6 years ago
parent
commit
1d9fe1fdf6
3 changed files with 23 additions and 5 deletions
  1. +3
    -0
      doc/filters.texi
  2. +19
    -5
      libavfilter/af_afir.c
  3. +1
    -0
      libavfilter/af_afir.h

+ 3
- 0
doc/filters.texi View File

@@ -1214,6 +1214,9 @@ displayed. This option is used only when @var{response} is enabled.


@item size @item size
Set video stream size. This option is used only when @var{response} is enabled. 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 @end table


@subsection Examples @subsection Examples


+ 19
- 5
libavfilter/af_afir.c View File

@@ -510,12 +510,20 @@ static int activate(AVFilterContext *ctx)
return ret; return ret;


if (s->response && s->have_coeffs) { 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)); 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 (ff_inlink_acknowledge_status(ctx->inputs[0], &status, &pts)) {
if (status == AVERROR_EOF) { if (status == AVERROR_EOF) {
ff_outlink_set_status(ctx->outputs[0], status, pts); 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]); ff_inlink_request_frame(ctx->inputs[0]);
return 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]); ff_inlink_request_frame(ctx->inputs[0]);
return 0; return 0;
} }


return 0;
return FFERROR_NOT_READY;
} }


static int query_formats(AVFilterContext *ctx) static int query_formats(AVFilterContext *ctx)
@@ -677,6 +688,8 @@ static int config_video(AVFilterLink *outlink)
outlink->sample_aspect_ratio = (AVRational){1,1}; outlink->sample_aspect_ratio = (AVRational){1,1};
outlink->w = s->w; outlink->w = s->w;
outlink->h = s->h; outlink->h = s->h;
outlink->frame_rate = s->frame_rate;
outlink->time_base = av_inv_q(outlink->frame_rate);


av_frame_free(&s->video); av_frame_free(&s->video);
s->video = ff_get_video_buffer(outlink, outlink->w, outlink->h); 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 }, { "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 }, { "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 }, { "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 } { NULL }
}; };




+ 1
- 0
libavfilter/af_afir.h View File

@@ -44,6 +44,7 @@ typedef struct AudioFIRContext {
float max_ir_len; float max_ir_len;
int response; int response;
int w, h; int w, h;
AVRational frame_rate;
int ir_channel; int ir_channel;


float gain; float gain;


Loading…
Cancel
Save