Re: [FFmpeg-devel] [PATCH v2] avfilter/vf_delogo: make the interp value compute method simple

2019-10-07 Thread Limin Wang
On Tue, Oct 08, 2019 at 10:47:56AM +0800, myp...@gmail.com wrote: > On Mon, Oct 7, 2019 at 11:14 PM Limin Wang wrote: > > > > On Mon, Oct 07, 2019 at 01:12:46PM +0800, Steven Liu wrote: > > > because the interp >= 0UL comparison of an unsigned value is always true > > > fix CID: 1454642 > > > > >

Re: [FFmpeg-devel] [PATCH v2] avfilter/vf_delogo: make the interp value compute method simple

2019-10-07 Thread myp...@gmail.com
On Mon, Oct 7, 2019 at 11:14 PM Limin Wang wrote: > > On Mon, Oct 07, 2019 at 01:12:46PM +0800, Steven Liu wrote: > > because the interp >= 0UL comparison of an unsigned value is always true > > fix CID: 1454642 > > > > Signed-off-by: Steven Liu > > --- > > libavfilter/vf_delogo.c | 2 +- > > 1

Re: [FFmpeg-devel] [PATCH v2] avfilter/vf_delogo: make the interp value compute method simple

2019-10-07 Thread Michael Niedermayer
On Mon, Oct 07, 2019 at 01:12:46PM +0800, Steven Liu wrote: > because the interp >= 0UL comparison of an unsigned value is always true > fix CID: 1454642 > > Signed-off-by: Steven Liu > --- > libavfilter/vf_delogo.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) this changes

Re: [FFmpeg-devel] [PATCH v2] avfilter/vf_delogo: make the interp value compute method simple

2019-10-07 Thread Limin Wang
On Mon, Oct 07, 2019 at 01:12:46PM +0800, Steven Liu wrote: > because the interp >= 0UL comparison of an unsigned value is always true > fix CID: 1454642 > > Signed-off-by: Steven Liu > --- > libavfilter/vf_delogo.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git

[FFmpeg-devel] [PATCH v2] avfilter/vf_delogo: make the interp value compute method simple

2019-10-06 Thread Steven Liu
because the interp >= 0UL comparison of an unsigned value is always true fix CID: 1454642 Signed-off-by: Steven Liu --- libavfilter/vf_delogo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/vf_delogo.c b/libavfilter/vf_delogo.c index 376c5e850f..3678548353