Re: [FFmpeg-devel] [PATCH 3/5] Renamed reinterlace to tinterlace

2018-09-16 Thread Vasile Toncu
Hello, Thank you Thomas for the reviews and support! The proposed actions, by Nicolas George in https://ffmpeg.org/pipermail/ffmpeg-devel/2017-December/223072.html, were taken. >* Can one simply change the tinterlace from GPL to LGPL? * Of course not. There are two non-simple courses of action t

Re: [FFmpeg-devel] [PATCH] avfilter/vf_sr: fix read out of bounds

2018-09-16 Thread Zhao Zhili
Ping for review. On 2018年09月13日 15:58, Zhao Zhili wrote: --- libavfilter/vf_sr.c | 9 ++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/libavfilter/vf_sr.c b/libavfilter/vf_sr.c index 5ad1baa..bc9d186 100644 --- a/libavfilter/vf_sr.c +++ b/libavfilter/vf_sr.c @@ -239,7 +

Re: [FFmpeg-devel] [PATCH 2/2] avcodec/zmbv: Check that the raw input is large enough to contain MVs or an intra frame

2018-09-16 Thread Michael Niedermayer
On Sun, Sep 16, 2018 at 10:16:05AM +0200, Paul B Mahol wrote: > On 9/16/18, Michael Niedermayer wrote: > > Fixes: Timeout > > Fixes: > > 10182/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_ZMBV_fuzzer-6245951174344704 > > > > Found-by: continuous fuzzing process > > https://github.com/google/o

Re: [FFmpeg-devel] swscale : add bitexact conv for grayf32 and gray16 to f32 conv

2018-09-16 Thread Michael Niedermayer
On Sun, Sep 16, 2018 at 09:25:14PM +0200, Martin Vignali wrote: > > you can just use something like (possibly with more or less 0 or a > > magnitude > > related value) > > #define assert_stable_int(x) av_assert(llrintf(x+0.0001) == > > llrintf(x-0.0001)) > > #define assert_stable_float(x) av_assert

Re: [FFmpeg-devel] swscale : add bitexact conv for grayf32 and gray16 to f32 conv

2018-09-16 Thread Martin Vignali
> you can just use something like (possibly with more or less 0 or a > magnitude > related value) > #define assert_stable_int(x) av_assert(llrintf(x+0.0001) == > llrintf(x-0.0001)) > #define assert_stable_float(x) av_assert((float)(x+0.0001) == > (float)(x-0.0001)) > > and then plac

Re: [FFmpeg-devel] [PATCH] libavfilter: Removes stored DNN models. Adds support for native backend model file format in tf backend. Removes scaling and conversion with libswscale and replaces input fo

2018-09-16 Thread Pedro Arthur
2018-09-16 15:20 GMT-03:00 Paul B Mahol : > > When this will be pushed? > Yes, I did not had time to push it friday. I'll do it monday or you could push it if you don't mind. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/

[FFmpeg-devel] [PATCH 2/2] avcodec/libaomdec: export chroma sample location

2018-09-16 Thread James Almer
Signed-off-by: James Almer --- libavcodec/libaomdec.c | 4 1 file changed, 4 insertions(+) diff --git a/libavcodec/libaomdec.c b/libavcodec/libaomdec.c index 2530c9f76b..a21cace164 100644 --- a/libavcodec/libaomdec.c +++ b/libavcodec/libaomdec.c @@ -89,7 +89,11 @@ static int set_pix_fmt(AVC

[FFmpeg-devel] [PATCH 1/2] avcodec/libaomenc: support setting chroma sample location

2018-09-16 Thread James Almer
Signed-off-by: James Almer --- libavcodec/libaomenc.c | 18 ++ 1 file changed, 18 insertions(+) diff --git a/libavcodec/libaomenc.c b/libavcodec/libaomenc.c index 6a79d9b873..55d50ded28 100644 --- a/libavcodec/libaomenc.c +++ b/libavcodec/libaomenc.c @@ -76,6 +76,7 @@ static cons

Re: [FFmpeg-devel] [PATCH] libavfilter: Removes stored DNN models. Adds support for native backend model file format in tf backend. Removes scaling and conversion with libswscale and replaces input fo

2018-09-16 Thread Paul B Mahol
On 9/10/18, Pedro Arthur wrote: > 2018-09-06 8:44 GMT-03:00 Sergey Lavrushkin : > >> Here is the patch with reverted changes on sws removal. I didn't split the >> patch into two patches, because code, that supports native model file >> format in >> tf, is partially from code of default model const

Re: [FFmpeg-devel] h264 ,miss header

2018-09-16 Thread Carl Eugen Hoyos
2018-09-15 18:56 GMT+02:00, wenbo : > 264 ,miss header > > > use cmd : ffplay 18_264297_1.264 > > > data file link : > http://lsjixie.oss-cn-shanghai.aliyuncs.com/18_264297_1.264 Is there software that decodes this sample? Carl Eugen ___ ffmpeg-devel ma

Re: [FFmpeg-devel] [PATCH] http connect: retry five times before reporting about error

2018-09-16 Thread Carl Eugen Hoyos
2018-09-16 17:41 GMT+02:00, Artjom Vejsel : > Signed-off-by: Artjom Vejsel > --- > > Hello. > > I've faced an error while playing when downloading just stopped. It can be > even few times at one film. > After digging into source I've finished with knowledge that HTTP connection > made only once an

[FFmpeg-devel] [PATCH] http connect: retry five times before reporting about error

2018-09-16 Thread Artjom Vejsel
Signed-off-by: Artjom Vejsel --- Hello. I've faced an error while playing when downloading just stopped. It can be even few times at one film. After digging into source I've finished with knowledge that HTTP connection made only once and if it was not successfull, HTTP interface just report wi

Re: [FFmpeg-devel] [PATCH] avfilter: add crossover filter

2018-09-16 Thread Paul B Mahol
On 5/31/18, Paul B Mahol wrote: > Signed-off-by: Paul B Mahol > --- > doc/filters.texi | 17 +++ > libavfilter/Makefile | 1 + > libavfilter/af_crossover.c | 343 > + > libavfilter/allfilters.c | 1 + > 4 files changed, 362 inser

Re: [FFmpeg-devel] [PATCH 2/2] avcodec/zmbv: Check that the raw input is large enough to contain MVs or an intra frame

2018-09-16 Thread Paul B Mahol
On 9/16/18, Michael Niedermayer wrote: > Fixes: Timeout > Fixes: > 10182/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_ZMBV_fuzzer-6245951174344704 > > Found-by: continuous fuzzing process > https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg > Signed-off-by: Michael Niedermayer >