Re: [FFmpeg-devel] [PATCH 1/1] avfilter/drawtext: present 'hms' formatted 'pts' in 24h format

2018-06-03 Thread Jeyapal, Karthick
Pushed. >On 5/7/18, 6:47 PM, "vdi...@akamai.com" wrote: > >From: Vishwanath Dixit > >HMS is formatted as HH:MM:SS.mmm, but, HH part is not limited to >24 hours. For example, the the drawn text may look like this: >243029:20:30.342. To present the timestamp in more readable and >user friendly fo

Re: [FFmpeg-devel] [WARNING! RECEIVED FROM EXTERNAL SENDER] [PATCH 1/1] fftools/ffmpeg: fix for all forced key frames when 'copyts' is enabled

2018-06-03 Thread Dixit, Vishwanath
On 5/6/18 10:38 PM, vdi...@akamai.com wrote: > From: Vishwanath Dixit > > Forced key frames generation functionality was assuming the first PTS > value as zero, but, when 'copyts' is enabled, the first PTS can be any > big number. This was eventually forcing all the frames as key frames. > To re

Re: [FFmpeg-devel] [PATCH v3 4/4] configure: fix check for opencl_vaapi_intel_media.

2018-06-03 Thread myp...@gmail.com
2018-06-04 2:18 GMT+08:00 Mark Thompson : > On 03/06/18 04:15, Jun Zhao wrote: >> opencl_vaapi_intel_media doesn't depend on libmfx, OpenCL™ Drivers >> and Runtimes for Intel® Architectureis is a standalone release, more >> information can be found in the link: >> https://software.intel.com/en-us/a

[FFmpeg-devel] [PATCH v3] avformat/hlsenc: reimplement randomize of hls use av_get_random_seed

2018-06-03 Thread Steven Liu
Signed-off-by: Steven Liu --- configure| 1 - libavformat/hlsenc.c | 27 --- 2 files changed, 12 insertions(+), 16 deletions(-) diff --git a/configure b/configure index 22eeca22a5..a3d0f5837a 100755 --- a/configure +++ b/configure @@ -3127,7 +3127,6 @@ fifo_m

Re: [FFmpeg-devel] [PATCH v2 3/4] configure: fix check for opencl

2018-06-03 Thread myp...@gmail.com
2018-06-03 11:04 GMT+08:00 James Almer : > On 6/2/2018 11:58 PM, Jun Zhao wrote: >> add pkg-config support for opencl check. >> >> Signed-off-by: Jun Zhao >> --- >> configure | 1 + >> 1 file changed, 1 insertion(+) >> >> diff --git a/configure b/configure >> index 22eeca2..69b8827 100755 >> ---

Re: [FFmpeg-devel] [PATCH v3 3/4] configure: fix check for opencl

2018-06-03 Thread myp...@gmail.com
2018-06-04 1:53 GMT+08:00 Mark Thompson : > > On 03/06/18 04:15, Jun Zhao wrote: > > add pkg-config support for opencl check. > > > > Signed-off-by: Jun Zhao > > --- > > configure | 3 ++- > > 1 file changed, 2 insertions(+), 1 deletion(-) > > > > diff --git a/configure b/configure > > index 22ee

Re: [FFmpeg-devel] [PATCH v3 2/4] lavfi/opencl: remove redundancy header.

2018-06-03 Thread myp...@gmail.com
2018-06-04 1:43 GMT+08:00 Mark Thompson : > On 03/06/18 04:15, Jun Zhao wrote: >> remove redundancy header >> >> Signed-off-by: Jun Zhao >> --- >> libavfilter/opencl.c | 3 --- >> 1 file changed, 3 deletions(-) >> >> diff --git a/libavfilter/opencl.c b/libavfilter/opencl.c >> index ae61667..ac5ee

Re: [FFmpeg-devel] [PATCH v3 1/4] lavu/hwcontext_opecl: fix the build warning

2018-06-03 Thread myp...@gmail.com
2018-06-04 1:42 GMT+08:00 Mark Thompson : > On 03/06/18 04:15, Jun Zhao wrote: >> fix the build warning when use Portable Computing Language (pocl). >> >> Signed-off-by: Jun Zhao >> --- >> libavutil/hwcontext_opencl.c | 8 >> 1 file changed, 8 insertions(+) >> >> diff --git a/libavutil/h

[FFmpeg-devel] [PATCH] libavfilter/opencl.h: Add macro for setting opencl kernel

2018-06-03 Thread Danil Iashchenko
Fixed, thanks! Also implemented macro for other filters: avgblur_opencl, convolution_opencl, unsharp_opencl, overlay_opencl. --- libavfilter/opencl.h| 13 + libavfilter/vf_avgblur_opencl.c | 48 --- libavfilter/vf_convolution_opencl.c | 43

Re: [FFmpeg-devel] Evolution of lavfi's design and API

2018-06-03 Thread Michael Niedermayer
On Sun, Jun 03, 2018 at 07:43:24PM +0200, Paul B Mahol wrote: > On 6/2/18, Paul B Mahol wrote: > > On 5/2/18, Paul B Mahol wrote: > >> On 9/11/16, Paul B Mahol wrote: > >>> On 9/10/16, Nicolas George wrote: > Le quartidi 24 fructidor, an CCXXIV, Paul B Mahol a ecrit : > > So everybody

Re: [FFmpeg-devel] [PATCH] lavfi: add opencl tonemap filter.

2018-06-03 Thread Mark Thompson
On 29/05/18 06:54, Ruiling Song wrote: > This filter does HDR(HDR10/HLG) to SDR conversion with tone-mapping. > > An example command to use this filter with vaapi codecs: > FFMPEG -init_hw_device vaapi=va:/dev/dri/renderD128 -init_hw_device \ > opencl=ocl@va -hwaccel vaapi -hwaccel_device va -hwac

Re: [FFmpeg-devel] [GSOC] [PATCH] TensorFlow backend introduction for DNN module

2018-06-03 Thread Pedro Arthur
2018-06-03 16:55 GMT-03:00 Sergey Lavrushkin : >> My concern is when we add more models, currently we have to store 2 >> models, one for the "native" implementation and one for the TF >> backend. >> There is also the case were one wants to update the weights for a >> model, it will be necessary to

Re: [FFmpeg-devel] [GSOC] [PATCH] TensorFlow backend introduction for DNN module

2018-06-03 Thread Sergey Lavrushkin
> > My concern is when we add more models, currently we have to store 2 > models, one for the "native" implementation and one for the TF > backend. > There is also the case were one wants to update the weights for a > model, it will be necessary to update both the native and TF data. > Having dupli

Re: [FFmpeg-devel] [GSOC] [PATCH] TensorFlow backend introduction for DNN module

2018-06-03 Thread Pedro Arthur
2018-06-03 15:25 GMT-03:00 Sergey Lavrushkin : > 2018-06-03 19:57 GMT+03:00 Pedro Arthur : >> >> 2018-05-31 12:01 GMT-03:00 Sergey Lavrushkin : >> > Hello, >> > >> > This patch introduces TensorFlow backend for DNN inference module. >> > This backend uses TensorFlow binary models and requires from

Re: [FFmpeg-devel] [GSOC] [PATCH] TensorFlow backend introduction for DNN module

2018-06-03 Thread Sergey Lavrushkin
2018-06-03 19:57 GMT+03:00 Pedro Arthur : > 2018-05-31 12:01 GMT-03:00 Sergey Lavrushkin : > > Hello, > > > > This patch introduces TensorFlow backend for DNN inference module. > > This backend uses TensorFlow binary models and requires from model > > to have the operation named 'x' as an input op

Re: [FFmpeg-devel] [PATCH] libavfilter/opencl.h: Add macro for setting opencl kernel arguments

2018-06-03 Thread Mark Thompson
On 02/06/18 17:58, Danil Iashchenko wrote: > --- > libavfilter/opencl.h| 13 +++ > libavfilter/vf_convolution_opencl.c | 43 > ++--- > 2 files changed, 19 insertions(+), 37 deletions(-) Yeah, this is nicer. > diff --git a/libavfilter/openc

Re: [FFmpeg-devel] [PATCH v3 4/4] configure: fix check for opencl_vaapi_intel_media.

2018-06-03 Thread Mark Thompson
On 03/06/18 04:15, Jun Zhao wrote: > opencl_vaapi_intel_media doesn't depend on libmfx, OpenCL™ Drivers > and Runtimes for Intel® Architectureis is a standalone release, more > information can be found in the link: > https://software.intel.com/en-us/articles/opencl-drivers. > > Signed-off-by: Jun

Re: [FFmpeg-devel] [PATCH v3 3/4] configure: fix check for opencl

2018-06-03 Thread Mark Thompson
On 03/06/18 04:15, Jun Zhao wrote: > add pkg-config support for opencl check. > > Signed-off-by: Jun Zhao > --- > configure | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/configure b/configure > index 22eeca2..ede32eb 100755 > --- a/configure > +++ b/configure > @@ -

Re: [FFmpeg-devel] Evolution of lavfi's design and API

2018-06-03 Thread Paul B Mahol
On 6/2/18, Paul B Mahol wrote: > On 5/2/18, Paul B Mahol wrote: >> On 9/11/16, Paul B Mahol wrote: >>> On 9/10/16, Nicolas George wrote: Le quartidi 24 fructidor, an CCXXIV, Paul B Mahol a ecrit : > So everybody agrees, we should proceed. I am proceeding, but as you can see i

Re: [FFmpeg-devel] [PATCH v3 1/4] lavu/hwcontext_opecl: fix the build warning

2018-06-03 Thread Mark Thompson
On 03/06/18 04:15, Jun Zhao wrote: > fix the build warning when use Portable Computing Language (pocl). > > Signed-off-by: Jun Zhao > --- > libavutil/hwcontext_opencl.c | 8 > 1 file changed, 8 insertions(+) > > diff --git a/libavutil/hwcontext_opencl.c b/libavutil/hwcontext_opencl.c >

Re: [FFmpeg-devel] [PATCH] v4l2_m2m: Mark V4L2 M2M decoders as unsuitable for probing

2018-06-03 Thread Mark Thompson
On 27/05/18 00:49, Michael Niedermayer wrote: > On Sat, May 26, 2018 at 05:16:10PM +0100, Mark Thompson wrote: >> --- >> libavcodec/v4l2_m2m_dec.c | 3 ++- >> 1 file changed, 2 insertions(+), 1 deletion(-) > > LGTM Applied. Thanks, - Mark ___ ffmpeg-

Re: [FFmpeg-devel] [PATCH v3 2/4] lavfi/opencl: remove redundancy header.

2018-06-03 Thread Mark Thompson
On 03/06/18 04:15, Jun Zhao wrote: > remove redundancy header > > Signed-off-by: Jun Zhao > --- > libavfilter/opencl.c | 3 --- > 1 file changed, 3 deletions(-) > > diff --git a/libavfilter/opencl.c b/libavfilter/opencl.c > index ae61667..ac5eec6 100644 > --- a/libavfilter/opencl.c > +++ b/liba

Re: [FFmpeg-devel] [GSOC] [PATCH] TensorFlow backend introduction for DNN module

2018-06-03 Thread Pedro Arthur
2018-05-31 12:01 GMT-03:00 Sergey Lavrushkin : > Hello, > > This patch introduces TensorFlow backend for DNN inference module. > This backend uses TensorFlow binary models and requires from model > to have the operation named 'x' as an input operation and the operation > named 'y' as an output oper