Re: [FFmpeg-devel] [PATCH] avfilter/f_cue: add cue and acue filters

2018-09-09 Thread Marton Balint
On Sun, 9 Sep 2018, Nicolas George wrote: Marton Balint (2018-09-09): And finally applied. If Nicolas or anybody can provide some pointers on how to get rid of the extra frame queue, then I will be more than happy to work on it. I am sorry, I am currently having a very annoying trouble

Re: [FFmpeg-devel] [PATCH] avfilter/f_cue: add cue and acue filters

2018-09-09 Thread Nicolas George
Marton Balint (2018-09-09): > And finally applied. If Nicolas or anybody can provide some pointers on how > to get rid of the extra frame queue, then I will be more than happy to work > on it. I am sorry, I am currently having a very annoying trouble with my eye which makes it easy to miss

Re: [FFmpeg-devel] [PATCH] avfilter/f_cue: add cue and acue filters

2018-09-09 Thread Paul B Mahol
On 9/9/18, Marton Balint wrote: > > 2018.08.25. 20:35 keltezessel, Marton Balint irta: >> To delay filtering until a given wallclock timestamp. >> >> Signed-off-by: Marton Balint >> --- >> doc/filters.texi | 36 ++ >> libavfilter/Makefile | 2

Re: [FFmpeg-devel] [PATCH] avfilter/f_cue: add cue and acue filters

2018-09-09 Thread Marton Balint
2018.08.25. 20:35 keltezéssel, Marton Balint írta: To delay filtering until a given wallclock timestamp. Signed-off-by: Marton Balint ---   doc/filters.texi |  36 ++   libavfilter/Makefile |   2 +   libavfilter/allfilters.c |   2 +   libavfilter/f_cue.c  | 182

Re: [FFmpeg-devel] [PATCH] avfilter/f_cue: add cue and acue filters

2018-09-06 Thread Marton Balint
On Thu, 6 Sep 2018, Bodecs Bela wrote: Hi Balint, 2018.09.06. 22:20 keltezéssel, Marton Balint írta: On Sat, 1 Sep 2018, Bodecs Bela wrote: Hi Balint, 2018.08.25. 20:35 keltezéssel, Marton Balint írta: To delay filtering until a given wallclock timestamp. Signed-off-by: Marton

Re: [FFmpeg-devel] [PATCH] avfilter/f_cue: add cue and acue filters

2018-09-06 Thread Bodecs Bela
Hi Balint, 2018.09.06. 22:20 keltezéssel, Marton Balint írta: On Sat, 1 Sep 2018, Bodecs Bela wrote: Hi Balint, 2018.08.25. 20:35 keltezéssel, Marton Balint írta: To delay filtering until a given wallclock timestamp. Signed-off-by: Marton Balint ---   doc/filters.texi |  36

Re: [FFmpeg-devel] [PATCH] avfilter/f_cue: add cue and acue filters

2018-09-06 Thread Marton Balint
On Sat, 1 Sep 2018, Bodecs Bela wrote: Hi Balint, 2018.08.25. 20:35 keltezéssel, Marton Balint írta: To delay filtering until a given wallclock timestamp. Signed-off-by: Marton Balint --- doc/filters.texi | 36 ++ libavfilter/Makefile | 2 +

Re: [FFmpeg-devel] [PATCH] avfilter/f_cue: add cue and acue filters

2018-09-01 Thread Bodecs Bela
Hi Balint, 2018.08.25. 20:35 keltezéssel, Marton Balint írta: To delay filtering until a given wallclock timestamp. Signed-off-by: Marton Balint --- doc/filters.texi | 36 ++ libavfilter/Makefile | 2 + libavfilter/allfilters.c | 2 + libavfilter/f_cue.c |

Re: [FFmpeg-devel] [PATCH] avfilter/f_cue: add cue and acue filters

2018-09-01 Thread Marton Balint
On Sat, 25 Aug 2018, Marton Balint wrote: On Sat, 25 Aug 2018, Nicolas George wrote: Marton Balint (2018-08-25): +FFFrameQueue queue; There is already a frame queue in the link, it would be much better to use it rather than having a second one. For that, you need to use a

Re: [FFmpeg-devel] [PATCH] avfilter/f_cue: add cue and acue filters

2018-08-25 Thread Marton Balint
On Sat, 25 Aug 2018, Nicolas George wrote: Marton Balint (2018-08-25): +FFFrameQueue queue; There is already a frame queue in the link, it would be much better to use it rather than having a second one. For that, you need to use a "activate" callback instead of filter_frame, the

Re: [FFmpeg-devel] [PATCH] avfilter/f_cue: add cue and acue filters

2018-08-25 Thread Nicolas George
Marton Balint (2018-08-25): > +FFFrameQueue queue; There is already a frame queue in the link, it would be much better to use it rather than having a second one. For that, you need to use a "activate" callback instead of filter_frame, the working is mostly the same for simple filters like