From: Stefano Sabatini <stefasab@gmail.com> To: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org> Subject: Re: [FFmpeg-devel] [PATCH] avfilter/setpts: add command support Date: Mon, 8 May 2023 00:46:48 +0200 Message-ID: <20230507224648.GE4348@mariano> (raw) In-Reply-To: <CABtgRJverLAJWeArfXr_i7NFajne17F3UnkfFZSxs4q=y++_Ng@mail.gmail.com> On date Monday 2023-05-01 22:01:05 +0100, Oleg Afanasyev wrote: > I'm using setpts to generate timelapses with slowdowns in the middle. > Using setpts filter requires complicated expr to handle intervals. This > patch allows commands to change expr and also adds a constant that > provides time of last command applications to allow specifying gradual > changes using difference between time and cmd time. > > ---------------------- > with best regards > Oleg Afanasyev > From a714a0957a57c1d392feca0ba675ba5ac7c875ee Mon Sep 17 00:00:00 2001 > From: Oleg <oafanasiev@gmail.com> > Date: Sat, 29 Apr 2023 19:56:46 +0100 > Subject: [PATCH] avfilter/setpts: add command support > > Add support for changing expr on the fly. > > Signed-off-by: Oleg <oafanasiev@gmail.com> > --- > doc/filters.texi | 7 +++++ > libavfilter/setpts.c | 68 +++++++++++++++++++++++++++++++++----------- > 2 files changed, 58 insertions(+), 17 deletions(-) > > diff --git a/doc/filters.texi b/doc/filters.texi > index 50e1682144..fbdb1f8ecf 100644 > diff --git a/libavfilter/setpts.c b/libavfilter/setpts.c > index 5bcc0c2dcf..7b09ce7707 100644 > --- a/libavfilter/setpts.c > +++ b/libavfilter/setpts.c [...] > +static int process_command(AVFilterContext *ctx, const char *cmd, const char *arg, > + char *res, int res_len, int flags) > +{ > + SetPTSContext *setpts = ctx->priv; > + int ret; > + > + ret = ff_filter_process_command(ctx, cmd, arg, res, res_len, flags); > + > + if (ret < 0) > + return ret; > + > + if (!strcmp(cmd, "expr")) { > + av_expr_free(setpts->expr); > + ret = av_expr_parse(&setpts->expr, arg, var_names, NULL, NULL, NULL, NULL, 0, ctx); > + if (ret < 0) { > + av_log(ctx, AV_LOG_ERROR, "Error while parsing expression '%s'\n", arg); > + } what happens in case setpts->expr is freed and this fails? probably it should keep a reference to expr and remove it only in case the new expression was successfully parsed [...] Looks good to me otherwise. _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
next prev parent reply other threads:[~2023-05-07 22:47 UTC|newest] Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top 2023-05-01 21:01 Oleg Afanasyev 2023-05-07 22:46 ` Stefano Sabatini [this message] 2023-05-09 23:12 ` Oleg Afanasyev 2023-05-14 9:14 ` Stefano Sabatini
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20230507224648.GE4348@mariano \ --to=stefasab@gmail.com \ --cc=ffmpeg-devel@ffmpeg.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel This inbox may be cloned and mirrored by anyone: git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \ ffmpegdev@gitmailbox.com public-inbox-index ffmpegdev Example config snippet for mirrors. AGPL code for this site: git clone https://public-inbox.org/public-inbox.git