X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavfilter%2Faf_apad.c;h=8628c0c2e2aefb309f7616892e90a2129736a34b;hb=a04ad248a05e7b613abe09b3bb067f555108d794;hp=f7a4199c6486c8d81f33e1c1073be4ce53357b15;hpb=4069096dd535ee99175c2a29c1a1f59c3fc110c1;p=ffmpeg diff --git a/libavfilter/af_apad.c b/libavfilter/af_apad.c index f7a4199c648..8628c0c2e2a 100644 --- a/libavfilter/af_apad.c +++ b/libavfilter/af_apad.c @@ -41,6 +41,8 @@ typedef struct APadContext { int packet_size; int64_t pad_len, pad_len_left; int64_t whole_len, whole_len_left; + int64_t pad_dur; + int64_t whole_dur; } APadContext; #define OFFSET(x) offsetof(APadContext, x) @@ -50,6 +52,8 @@ static const AVOption apad_options[] = { { "packet_size", "set silence packet size", OFFSET(packet_size), AV_OPT_TYPE_INT, { .i64 = 4096 }, 0, INT_MAX, A }, { "pad_len", "set number of samples of silence to add", OFFSET(pad_len), AV_OPT_TYPE_INT64, { .i64 = -1 }, -1, INT64_MAX, A }, { "whole_len", "set minimum target number of samples in the audio stream", OFFSET(whole_len), AV_OPT_TYPE_INT64, { .i64 = -1 }, -1, INT64_MAX, A }, + { "pad_dur", "set duration of silence to add", OFFSET(pad_dur), AV_OPT_TYPE_DURATION, { .i64 = 0 }, 0, INT64_MAX, A }, + { "whole_dur", "set minimum target duration in the audio stream", OFFSET(whole_dur), AV_OPT_TYPE_DURATION, { .i64 = 0 }, 0, INT64_MAX, A }, { NULL } }; @@ -64,8 +68,6 @@ static av_cold int init(AVFilterContext *ctx) av_log(ctx, AV_LOG_ERROR, "Both whole and pad length are set, this is not possible\n"); return AVERROR(EINVAL); } - s->pad_len_left = s->pad_len; - s->whole_len_left = s->whole_len; return 0; } @@ -131,6 +133,22 @@ static int request_frame(AVFilterLink *outlink) return ret; } +static int config_output(AVFilterLink *outlink) +{ + AVFilterContext *ctx = outlink->src; + APadContext *s = ctx->priv; + + if (s->pad_dur) + s->pad_len = av_rescale(s->pad_dur, outlink->sample_rate, AV_TIME_BASE); + if (s->whole_dur) + s->whole_len = av_rescale(s->whole_dur, outlink->sample_rate, AV_TIME_BASE); + + s->pad_len_left = s->pad_len; + s->whole_len_left = s->whole_len; + + return 0; +} + static const AVFilterPad apad_inputs[] = { { .name = "default", @@ -144,12 +162,13 @@ static const AVFilterPad apad_outputs[] = { { .name = "default", .request_frame = request_frame, + .config_props = config_output, .type = AVMEDIA_TYPE_AUDIO, }, { NULL } }; -AVFilter ff_af_apad = { +const AVFilter ff_af_apad = { .name = "apad", .description = NULL_IF_CONFIG_SMALL("Pad audio with silence."), .init = init,