Re: [FFmpeg-devel] [PATCH] lavfi: make ff_framequeue_skip_samples() more useful.

2017-04-26 Thread Muhammad Faiz
On Tue, Apr 25, 2017 at 9:42 PM, Kyle Swanson wrote: > Hi, > > On Sun, Jan 29, 2017 at 11:54 AM, Nicolas George wrote: >> >> Le decadi 10 pluviôse, an CCXXV, Muhammad Faiz a écrit : >> > LGTM >> >> Thanks, pushed. >> >> Regards, >> >> -- >> Nicolas George >> >> _

Re: [FFmpeg-devel] [PATCH] lavfi: make ff_framequeue_skip_samples() more useful.

2017-04-25 Thread Kyle Swanson
Hi, On Sun, Jan 29, 2017 at 11:54 AM, Nicolas George wrote: > > Le decadi 10 pluviôse, an CCXXV, Muhammad Faiz a écrit : > > LGTM > > Thanks, pushed. > > Regards, > > -- > Nicolas George > > ___ > ffmpeg-devel mailing list > ffmpeg-devel@ffmpeg.org >

Re: [FFmpeg-devel] [PATCH] lavfi: make ff_framequeue_skip_samples() more useful.

2017-01-29 Thread Nicolas George
Le decadi 10 pluviôse, an CCXXV, Muhammad Faiz a écrit : > LGTM Thanks, pushed. Regards, -- Nicolas George signature.asc Description: Digital signature ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg

Re: [FFmpeg-devel] [PATCH] lavfi: make ff_framequeue_skip_samples() more useful.

2017-01-29 Thread Muhammad Faiz
On 1/29/17, Nicolas George wrote: > Instead of just updating statistics, have it actually do the work > instead of leaving that job to the call site. > > Also: skip the samples by updating the frame data pointers > instead of moving the samples. More efficient and avoid writing > into shared frame

[FFmpeg-devel] [PATCH] lavfi: make ff_framequeue_skip_samples() more useful.

2017-01-29 Thread Nicolas George
Instead of just updating statistics, have it actually do the work instead of leaving that job to the call site. Also: skip the samples by updating the frame data pointers instead of moving the samples. More efficient and avoid writing into shared frames. Found-By: Muhammad Faiz Signed-off-by: Ni