[FFmpeg-devel] [PATCH] configure: add missing optional SDL2 dependency to OpenGL outdev

2018-10-18 Thread James Almer
Signed-off-by: James Almer --- configure | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure b/configure index 85d5dd5962..c91e37a75d 100755 --- a/configure +++ b/configure @@ -3267,6 +3267,7 @@ libcdio_indev_deps="libcdio" libdc1394_indev_deps="libdc1394"

[FFmpeg-devel] [PATCH] fftools/ffmpeg.c: allow forcing input framerate on streamcopy

2018-10-18 Thread Leo Izen
--- fftools/ffmpeg.c | 8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/fftools/ffmpeg.c b/fftools/ffmpeg.c index da4259a9a8..5d68194676 100644 --- a/fftools/ffmpeg.c +++ b/fftools/ffmpeg.c @@ -2045,12 +2045,14 @@ static void do_streamcopy(InputStream *ist, OutputStream

Re: [FFmpeg-devel] [PATCH]lavf/dump: Fix a typo: comentary -> commentary

2018-10-18 Thread Michael Niedermayer
On Thu, Oct 18, 2018 at 12:15:40AM +0200, Carl Eugen Hoyos wrote: > Hi! > > Is there a reason to keep the wrong spelling? i dont see a reason but maybe someone else does ... [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB "Nothing to hide" only works if the

Re: [FFmpeg-devel] avcodec/prores aw improvment

2018-10-18 Thread Martin Vignali
Pushed. Martin ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] swscale : add YA16 LE/BE output

2018-10-18 Thread Martin Vignali
> > should be ok if you tested each function (that is confirmed > vissually that both alpha and luma channels look ok for all 3 > functions) > > Yes i tested each func with various input also checked the result of the scale filter test Pushed, Thanks. Martin

Re: [FFmpeg-devel] [PATCH] avfilter: add sinc source filter

2018-10-18 Thread James Almer
On 10/18/2018 3:09 PM, Paul B Mahol wrote: > +if (!phase1) { > +begin = 0; > +} else if (phase1 == 1) { > +begin = peak - *len / 2; > +} else { > +begin = (.997f - (2 - phase1) * .22f) * *len + .5f; > +end = (.997f + (0 - phase1) * .22f) * *len + .5f; >

Re: [FFmpeg-devel] [PATCH] avformat: add H264 and HEVC support in IVF muxer

2018-10-18 Thread Alex Sukhanov
On Mon, Oct 15, 2018 at 9:35 AM Vittorio Giovara wrote: > On Thu, Oct 11, 2018 at 5:28 PM Jan Ekström wrote: > > > On Thu, Oct 11, 2018 at 10:58 PM Alex Sukhanov > > wrote: > > > > > > Hi Mark, > > > > > > at Google we have some old service which is still running and it works > > only > > >

[FFmpeg-devel] [PATCH] avfilter: add sinc source filter

2018-10-18 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- doc/filters.texi | 43 libavfilter/Makefile | 1 + libavfilter/allfilters.c | 1 + libavfilter/asrc_sinc.c | 455 +++ 4 files changed, 500 insertions(+) create mode 100644 libavfilter/asrc_sinc.c diff

[FFmpeg-devel] [PATCH] avfilter: add sinc source filter

2018-10-18 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- doc/filters.texi | 43 libavfilter/Makefile | 1 + libavfilter/allfilters.c | 1 + libavfilter/asrc_sinc.c | 454 +++ 4 files changed, 499 insertions(+) create mode 100644 libavfilter/asrc_sinc.c diff

Re: [FFmpeg-devel] [PATCH V2] Add a filter implementing HDR image reconstruction from a single exposure using deep CNNs

2018-10-18 Thread Guo, Yejun
Hi, Besides conv layer, this model uses these operations/layers: PoolLayer, split, ConcatLayer, BatchNormLayer, DeConv2dLayer, reduce_max, maximum, mul, pow, log, exp, relu, add, minimum, reshape, tile, see detail in https://github.com/gabrieleilertsen/hdrcnn/blob/master/network.py >

[FFmpeg-devel] [PATCH v2 2/3] lavc/libxavs2: fix intra period meaning conflict

2018-10-18 Thread hwren
Signed-off-by: hwren --- libavcodec/libxavs2.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/libxavs2.c b/libavcodec/libxavs2.c index 1152c63..f07fc63 100644 --- a/libavcodec/libxavs2.c +++ b/libavcodec/libxavs2.c @@ -85,8 +85,8 @@ static av_cold int

[FFmpeg-devel] [PATCH v2 3/3] lavc/libxavs2: enable OpenGop

2018-10-18 Thread hwren
Signed-off-by: hwren --- libavcodec/libxavs2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/libxavs2.c b/libavcodec/libxavs2.c index f07fc63..822af3f 100644 --- a/libavcodec/libxavs2.c +++ b/libavcodec/libxavs2.c @@ -91,7 +91,7 @@ static av_cold int

[FFmpeg-devel] [PATCH v2 1/3] lavc/libxavs2: unified naming style

2018-10-18 Thread hwren
Signed-off-by: hwren --- libavcodec/libxavs2.c | 26 +- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/libavcodec/libxavs2.c b/libavcodec/libxavs2.c index 2b47d0c..1152c63 100644 --- a/libavcodec/libxavs2.c +++ b/libavcodec/libxavs2.c @@ -78,18 +78,18 @@

Re: [FFmpeg-devel] [PATCH V2] Add a filter implementing HDR image reconstruction from a single exposure using deep CNNs

2018-10-18 Thread Guo, Yejun
> -Original Message- > From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf > Of Carl Eugen Hoyos > Sent: Thursday, October 18, 2018 6:23 AM > To: FFmpeg development discussions and patches de...@ffmpeg.org> > Subject: Re: [FFmpeg-devel] [PATCH V2] Add a filter

Re: [FFmpeg-devel] #7496: Access to the reference track (dolby vision) of a stream

2018-10-18 Thread Dmitrij.Gresserman
Here is my new approach with side data. Visit our website: https://www.loewe.tv/int [Facebook] [Instagram] [Pinterest] [YouTube]

[FFmpeg-devel] [PATCH] avfilter: add chromahold filter

2018-10-18 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- doc/filters.texi | 20 libavfilter/Makefile | 1 + libavfilter/allfilters.c | 1 + libavfilter/vf_chromakey.c | 96 +- 4 files changed, 116 insertions(+), 2 deletions(-) diff --git

[FFmpeg-devel] [PATCH] avformat/dashenc: URL close unconditionally after DELETE segments

2018-10-18 Thread Karthick J
Fixes bug with HTTP DELETE when HTTP Persistent is ON. Right now, HTTP Persistent connections is supported only for POSTs and PUTs. HTTP DELETE will still open a new connection every time. --- libavformat/dashenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

Re: [FFmpeg-devel] [PATCH] avcodec/libopenh264enc.c: Handle sample_aspect_ratio in libopenh264 encoder

2018-10-18 Thread Valery Kot
A gentle ping... On Fri, Oct 12, 2018 at 9:14 AM Valery Kot wrote: > > When using libx264 (GPL) encoder, sample aspect ratio gets stored on > both container and frame levels. For libopenh264 (LGPL) encoder, > aspect ratio on codec/frame level currently is ignored, which results > in weird display

[FFmpeg-devel] [PATCH] avformat/dashenc: Support HTTP Persistent for master.mu8 as well

2018-10-18 Thread Karthick J
--- libavformat/dashenc.c | 11 ++- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/libavformat/dashenc.c b/libavformat/dashenc.c index 3f5f290e25..15b84a0f3b 100644 --- a/libavformat/dashenc.c +++ b/libavformat/dashenc.c @@ -878,14 +878,14 @@ static int

[FFmpeg-devel] [PATCH v2] avformat/dashenc: Support HTTP Persistent for master.m3u8 as well

2018-10-18 Thread Karthick J
--- libavformat/dashenc.c | 11 ++- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/libavformat/dashenc.c b/libavformat/dashenc.c index 3f5f290e25..15b84a0f3b 100644 --- a/libavformat/dashenc.c +++ b/libavformat/dashenc.c @@ -878,14 +878,14 @@ static int

[FFmpeg-devel] [PATCH] avformat/dashenc: Support HTTP Persistent for master.mu8 as well

2018-10-18 Thread Karthick J
--- libavformat/dashenc.c | 11 ++- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/libavformat/dashenc.c b/libavformat/dashenc.c index 3f5f290e25..15b84a0f3b 100644 --- a/libavformat/dashenc.c +++ b/libavformat/dashenc.c @@ -878,14 +878,14 @@ static int