Re: [FFmpeg-devel] [PATCH 4/4] lavf/mov: Add support for edit list parsing.

2016-08-26 Thread Michael Niedermayer
On Fri, Aug 26, 2016 at 12:49:19PM -0700, Sasi Inguva wrote: > I think there is some bug in mp3 decoder which is making skip > samples -1431655766 for ~/tickets/5528/fire.mp3 . For now I have removed > the assert from the 3rd commit. > For the file one.mov , I think the audio has edit list with

Re: [FFmpeg-devel] [PATCH 1/2] add option hls_init_time to set init hls window segment

2016-08-26 Thread Steven Liu
2016-08-27 4:49 GMT+08:00 Michael Niedermayer : > On Fri, Aug 26, 2016 at 05:30:41PM +0800, Steven Liu wrote: > > recover segments duration time by hls_time after init hls window. > > This is reuqested by Ibrahim Tachijian > > > > Signed-off-by: LiuQi > >

Re: [FFmpeg-devel] [PATCH 2/2] add option hls_init_time document

2016-08-26 Thread Steven Liu
2016-08-27 6:00 GMT+08:00 Ibrahim Tachijian : > What do you think about something like this? > > diff --git a/doc/muxers.texi b/doc/muxers.texi > index 2548aeb..c39a6a0 100644 > --- a/doc/muxers.texi > +++ b/doc/muxers.texi > @@ -357,6 +357,12 @@ segmentation. > This muxer

Re: [FFmpeg-devel] [PATCH] avfilter/motion_estimation: Fix pre processor formating

2016-08-26 Thread Davinder Singh
On Sat, Aug 27, 2016 at 2:26 AM Michael Niedermayer wrote: > On Fri, Aug 26, 2016 at 04:00:09PM -0300, James Almer wrote: > > On 8/26/2016 3:19 PM, Michael Niedermayer wrote: > > > IIRC, The spaces are not standard before the # > > > > We use them sometimes when nesting

Re: [FFmpeg-devel] [PATCH 3/3] vf_colorspace: Allow overriding input color properties

2016-08-26 Thread Vittorio Giovara
On Fri, Aug 26, 2016 at 5:16 PM, Ronald S. Bultje wrote: > Hi, > > On Fri, Aug 26, 2016 at 2:40 PM, Vittorio Giovara > wrote: >> >> On Fri, Aug 26, 2016 at 12:59 AM, Ronald S. Bultje >> wrote: >> > Hi Vittorio, >> > >> > On

Re: [FFmpeg-devel] [PATCH 2/2] add option hls_init_time document

2016-08-26 Thread Ibrahim Tachijian
What do you think about something like this? diff --git a/doc/muxers.texi b/doc/muxers.texi index 2548aeb..c39a6a0 100644 --- a/doc/muxers.texi +++ b/doc/muxers.texi @@ -357,6 +357,12 @@ segmentation. This muxer supports the following options: @table @option +@item hls_init_time @var{seconds}

[FFmpeg-devel] [PATCH] avfilter/vf_owdenoise: add high bit-depth support

2016-08-26 Thread Paul B Mahol
Hi, patch attached. 0001-avfilter-vf_owdenoise-hight-bit-depth-support.patch Description: Binary data ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

[FFmpeg-devel] [PATCH] avcodec/mlz: Remove 'l' postfixes from numbers

2016-08-26 Thread Michael Niedermayer
Signed-off-by: Michael Niedermayer --- libavcodec/mlz.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libavcodec/mlz.h b/libavcodec/mlz.h index 158715e..c3df52c 100644 --- a/libavcodec/mlz.h +++ b/libavcodec/mlz.h @@ -26,12 +26,12 @@ #define

[FFmpeg-devel] [PATCH] added expr evaluation to drawtext - fontsize

2016-08-26 Thread Brett Harrison
Allows expr evaluation in the fontsize parameter for drawtext. examples (fontsize 1/3 of video height): ffmpeg -i http://i.giphy.com/kwAi4WrChkSfm.gif -vf "drawtext=fontfile=/Library/Fonts/Verdana Bold.ttf:text='HI':fontcolor=yellow:x=(w-tw)/2:y=(h-th)/1.3:fontsize=h/3" out.gif ffmpeg -i

[FFmpeg-devel] [PATCH] MAINTAINERS: add myself for Motion Estimation and Interpolation filters

2016-08-26 Thread Davinder Singh
patch attached. 0001-MAINTAINER-add-myself-for-Motion-Estimation-and-Inte.patch Description: Binary data ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH 3/3] vf_colorspace: Allow overriding input color properties

2016-08-26 Thread Ronald S. Bultje
Hi, On Fri, Aug 26, 2016 at 2:40 PM, Vittorio Giovara < vittorio.giov...@gmail.com> wrote: > On Fri, Aug 26, 2016 at 12:59 AM, Ronald S. Bultje > wrote: > > Hi Vittorio, > > > > On Thu, Aug 25, 2016 at 7:14 PM, Vittorio Giovara > > wrote: > >> >

Re: [FFmpeg-devel] [PATCH] avfilter/motion_estimation: Fix pre processor formating

2016-08-26 Thread Michael Niedermayer
On Fri, Aug 26, 2016 at 04:00:09PM -0300, James Almer wrote: > On 8/26/2016 3:19 PM, Michael Niedermayer wrote: > > IIRC, The spaces are not standard before the # > > We use them sometimes when nesting several preprocessor checks, spaces after the # are standard IIRC, before they are not but

Re: [FFmpeg-devel] [PATCH 1/2] add option hls_init_time to set init hls window segment

2016-08-26 Thread Michael Niedermayer
On Fri, Aug 26, 2016 at 05:30:41PM +0800, Steven Liu wrote: > recover segments duration time by hls_time after init hls window. > This is reuqested by Ibrahim Tachijian > > Signed-off-by: LiuQi > --- > libavformat/hlsenc.c | 14 +- > 1 file changed, 13

[FFmpeg-devel] [PATCH] Add max value output option to psnr stats log.

2016-08-26 Thread Lucas Cooper
This allows retroactive calculation/aggregation of PSNR from the stats log. --- libavfilter/vf_psnr.c | 15 +++ 1 file changed, 15 insertions(+) diff --git a/libavfilter/vf_psnr.c b/libavfilter/vf_psnr.c index 3bec747..9ad1423 100644 --- a/libavfilter/vf_psnr.c +++

Re: [FFmpeg-devel] [PATCH 3/3] vf_colorspace: Allow overriding input color properties

2016-08-26 Thread Clément Bœsch
On Fri, Aug 26, 2016 at 08:58:57PM +0200, Clément Bœsch wrote: > On Fri, Aug 26, 2016 at 02:43:35PM -0400, Vittorio Giovara wrote: > > On Fri, Aug 26, 2016 at 3:52 AM, Paul B Mahol wrote: > > > On 8/26/16, Vittorio Giovara wrote: > > >> The filter

Re: [FFmpeg-devel] [PATCH] avfilter/motion_estimation: Fix pre processor formating

2016-08-26 Thread James Almer
On 8/26/2016 3:19 PM, Michael Niedermayer wrote: > IIRC, The spaces are not standard before the # We use them sometimes when nesting several preprocessor checks, but in this case yes, it should have no spaces. > > Signed-off-by: Michael Niedermayer > --- >

Re: [FFmpeg-devel] Possible long(er?) term support

2016-08-26 Thread Orion Poplawski
On 08/25/2016 04:05 AM, Michael Niedermayer wrote: > On Wed, Aug 24, 2016 at 12:11:47PM -0600, Orion Poplawski wrote: >> On 08/24/2016 11:54 AM, Carl Eugen Hoyos wrote: >>> Hi! >>> >>> 2016-08-24 18:51 GMT+02:00 Orion Poplawski : Would the ffmpeg developers be willing

Re: [FFmpeg-devel] [PATCH 3/3] vf_colorspace: Allow overriding input color properties

2016-08-26 Thread Clément Bœsch
On Fri, Aug 26, 2016 at 02:43:35PM -0400, Vittorio Giovara wrote: > On Fri, Aug 26, 2016 at 3:52 AM, Paul B Mahol wrote: > > On 8/26/16, Vittorio Giovara wrote: > >> The filter needs input frames with color properties filled out by > >> the decoder.

[FFmpeg-devel] [PATCH 2/2] avcodec/utils: print only the padding values that are set

2016-08-26 Thread James Almer
Signed-off-by: James Almer --- libavcodec/utils.c | 11 +++ 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/libavcodec/utils.c b/libavcodec/utils.c index 7e99c58..0f6d0e7 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -3258,10 +3258,13 @@

[FFmpeg-devel] [PATCH] avformat/utils: fix a codecpar non use

2016-08-26 Thread James Almer
Signed-off-by: James Almer --- libavformat/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/utils.c b/libavformat/utils.c index d7f3c7a..bdf43b3 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -614,7 +614,7 @@ static void

Re: [FFmpeg-devel] [PATCH 1/2] tools/crypto_bench: simply gcrypt functions using a macro

2016-08-26 Thread James Almer
On 8/26/2016 4:25 AM, Nicolas George wrote: > Le nonidi 9 fructidor, an CCXXIV, James Almer a écrit : >> Subject: Re: [FFmpeg-devel] [PATCH 1/2] tools/crypto_bench: simply gcrypt >> functions using a macro > > "simplify" Oops, fixed. > >> Signed-off-by: James Almer >> ---

Re: [FFmpeg-devel] [PATCH 3/3] vf_colorspace: Allow overriding input color properties

2016-08-26 Thread Vittorio Giovara
On Fri, Aug 26, 2016 at 12:59 AM, Ronald S. Bultje wrote: > Hi Vittorio, > > On Thu, Aug 25, 2016 at 7:14 PM, Vittorio Giovara > wrote: >> >> The filter needs input frames with color properties filled out by >> the decoder. Since this is not always

Re: [FFmpeg-devel] [PATCH 3/3] vf_colorspace: Allow overriding input color properties

2016-08-26 Thread Vittorio Giovara
On Fri, Aug 26, 2016 at 3:52 AM, Paul B Mahol wrote: > On 8/26/16, Vittorio Giovara wrote: >> The filter needs input frames with color properties filled out by >> the decoder. Since this is not always possible, add input options to >> the filter so

[FFmpeg-devel] [PATCH] avfilter/motion_estimation: Fix pre processor formating

2016-08-26 Thread Michael Niedermayer
IIRC, The spaces are not standard before the # Signed-off-by: Michael Niedermayer --- libavfilter/motion_estimation.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libavfilter/motion_estimation.c b/libavfilter/motion_estimation.c index

Re: [FFmpeg-devel] FFmpeg in Outreachy Round 13 / 2016-december

2016-08-26 Thread Stefano Sabatini
In data Wednesday 2016-08-24 02:07:17 +0200, Michael Niedermayer ha scritto: > Hi Sarah > > > On Tue, Aug 23, 2016 at 10:04:55AM -0700, Sarah A Sharp wrote: > > Hi Michael, > > > > I'm happy to hear FFmpeg will participate again! Do you know who will > > sponsor your intern(s) and how many

Re: [FFmpeg-devel] patchwork update bot

2016-08-26 Thread Michael Niedermayer
On Wed, Aug 24, 2016 at 01:16:05PM +0200, Michael Niedermayer wrote: > Hi > > As i got a bit annoyed by accumulating duplicate and non applicable > patches or rather the need to manually weed them out of patchwork > ive yesterday quickly written the attached script > > Does something like this

Re: [FFmpeg-devel] [PATCH] add option hls_init_time to set init hls window segment duration

2016-08-26 Thread Steven Liu
Ignore this thread please. i have send new patch 2016-08-26 17:12 GMT+08:00 Steven Liu : > > > 2016-08-26 17:11 GMT+08:00 Steven Liu : > >> recover segments duration time by hls_time after init hls window. >> This is reuqested by Ibrahim

Re: [FFmpeg-devel] [PATCH 2/2] add option hls_init_time document

2016-08-26 Thread Steven Liu
2016-08-26 17:31 GMT+08:00 Steven Liu : > > Signed-off-by: LiuQi > --- > doc/muxers.texi | 7 +++ > 1 file changed, 7 insertions(+) > > diff --git a/doc/muxers.texi b/doc/muxers.texi > index 2548aeb..4db3809 100644 > --- a/doc/muxers.texi > +++

[FFmpeg-devel] [PATCH 2/2] add option hls_init_time document

2016-08-26 Thread Steven Liu
Signed-off-by: LiuQi --- doc/muxers.texi | 7 +++ 1 file changed, 7 insertions(+) diff --git a/doc/muxers.texi b/doc/muxers.texi index 2548aeb..4db3809 100644 --- a/doc/muxers.texi +++ b/doc/muxers.texi @@ -357,6 +357,13 @@ segmentation. This muxer supports the following

[FFmpeg-devel] [PATCH 1/2] add option hls_init_time to set init hls window segment

2016-08-26 Thread Steven Liu
recover segments duration time by hls_time after init hls window. This is reuqested by Ibrahim Tachijian Signed-off-by: LiuQi --- libavformat/hlsenc.c | 14 +- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c

Re: [FFmpeg-devel] [GSoC] Motion Interpolation

2016-08-26 Thread Michael Niedermayer
On Thu, Aug 25, 2016 at 08:17:03PM +, Davinder Singh wrote: > On Thu, Aug 25, 2016 at 8:03 PM Michael Niedermayer > wrote: > > > [...] > > > > why do these not try predictors like epzs / umh ? > > i guess some paper doesnt say exlpicitly it should be done > > but

Re: [FFmpeg-devel] [PATCH] add option hls_init_time to set init hls window segment duration

2016-08-26 Thread Steven Liu
2016-08-26 17:11 GMT+08:00 Steven Liu : > recover segments duration time by hls_time after init hls window. > This is reuqested by Ibrahim Tachijian > > Signed-off-by: LiuQi > — > libavformat/hlsenc.c | 14 +- > 1 file changed, 13

[FFmpeg-devel] [PATCH] add option hls_init_time to set init hls window segment duration

2016-08-26 Thread Steven Liu
recover segments duration time by hls_time after init hls window. This is reuqested by Ibrahim Tachijian Signed-off-by: LiuQi — libavformat/hlsenc.c | 14 +- 1 file changed, 13 insertions(+), 1 deletion(-) diff —git a/libavformat/hlsenc.c b/libavformat/hlsenc.c

Re: [FFmpeg-devel] HLS Segmenter and the "hls_time" option

2016-08-26 Thread Ibrahim Tachijian
Thanks this actually does what I expected it to do. For me this option will help a lot, and we would really be interested in this eventually reaching git. Thanks to Steven Liu's patch we will be able to use this to start live streams faster. Great job! Below follows what command I ran and the

Re: [FFmpeg-devel] [PATCH 3/3] vf_colorspace: Allow overriding input color properties

2016-08-26 Thread Paul B Mahol
On 8/26/16, Vittorio Giovara wrote: > The filter needs input frames with color properties filled out by > the decoder. Since this is not always possible, add input options to > the filter so that user may override color space, color primaries, > transfer

Re: [FFmpeg-devel] [PATCH 2/2] tools/crypto_bench: add support for des

2016-08-26 Thread Nicolas George
Le nonidi 9 fructidor, an CCXXIV, James Almer a écrit : > Signed-off-by: James Almer > --- LGTM. > Our DES implementation is awfully slow, for that matter. Almost two times > slower than OpenSSL's and GCrypt's. > > lavu DES size: 1048576 runs: 1024 time:

Re: [FFmpeg-devel] [PATCH 1/2] tools/crypto_bench: simply gcrypt functions using a macro

2016-08-26 Thread Nicolas George
Le nonidi 9 fructidor, an CCXXIV, James Almer a écrit : > Subject: Re: [FFmpeg-devel] [PATCH 1/2] tools/crypto_bench: simply gcrypt > functions using a macro "simplify" > Signed-off-by: James Almer > --- > tools/crypto_bench.c | 65 >

Re: [FFmpeg-devel] HLS Segmenter and the "hls_time" option

2016-08-26 Thread Steven Liu
2016-08-26 14:00 GMT+08:00 Steven Liu : > > > 2016-08-26 10:34 GMT+08:00 Ibrahim Tachijian : > >> In my use case scenario I only need it for the very first couple of >> segments. >> After 5 segments it is not a problem anymore to have 5 second segments

Re: [FFmpeg-devel] HLS Segmenter and the "hls_time" option

2016-08-26 Thread Steven Liu
2016-08-26 10:34 GMT+08:00 Ibrahim Tachijian : > In my use case scenario I only need it for the very first couple of > segments. > After 5 segments it is not a problem anymore to have 5 second segments > only. > > > > On Fri, Aug 26, 2016 at 4:25 AM Steven Liu