Re: [FFmpeg-devel] [FFmpeg-cvslog] Adding Closed caption Support

2015-01-29 Thread Anshul
On January 30, 2015 4:23:08 AM IST, Michael Niedermayer wrote: >On Tue, Jan 20, 2015 at 04:39:40PM +0530, Anshul wrote: >> >> On 01/13/2015 01:15 PM, Clément Bœsch wrote: >> >On Tue, Jan 13, 2015 at 08:12:10AM +0100, Clément Bœsch wrote: >> >>On Tue, Jan 13, 2015 at 11:26:06AM +0530, Anshul Mahe

Re: [FFmpeg-devel] [FFmpeg-cvslog] Adding Closed caption Support

2015-01-29 Thread Michael Niedermayer
On Tue, Jan 20, 2015 at 04:39:40PM +0530, Anshul wrote: > > On 01/13/2015 01:15 PM, Clément Bœsch wrote: > >On Tue, Jan 13, 2015 at 08:12:10AM +0100, Clément Bœsch wrote: > >>On Tue, Jan 13, 2015 at 11:26:06AM +0530, Anshul Maheshwari wrote: > >>[...] > Also added roll-up functionality. >

Re: [FFmpeg-devel] [PATCH] doc/indevs: add some XCB info to x11grab

2015-01-29 Thread Lou Logan
On Thu, 29 Jan 2015 11:28:27 +0100, Stefano Sabatini wrote: > LGTM, thanks. Applied. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH 3/3] lavc/libopenjpegenc: add cinema_setup_encoder function to allow creation of dci compliant files

2015-01-29 Thread Reimar Döffinger
On Wed, Jan 28, 2015 at 04:41:26PM +0100, Jean First wrote: > +if (parameters->numresolution > 6) { > +parameters->numresolution = 6; > +} FFMAX > +if (!((image->comps[0].w == 2048) || (image->comps[0].h == > 1080))) { w != 2048 && h != 1080 s

Re: [FFmpeg-devel] Patch for timestamp pattern in filename

2015-01-29 Thread Michael Niedermayer
On Thu, Jan 29, 2015 at 05:11:45PM +0100, Matthijs Tempels wrote: > improved the code: > > From 772232db7f6e1dc45e63929b0371acf0c13be7a1 Mon Sep 17 00:00:00 2001 > From: Matthijs Tempels > Date: Thu, 29 Jan 2015 16:33:46 +0100 > Subject: [PATCH] Improved %t handling to add a timestamp to the file

Re: [FFmpeg-devel] [PATCH] avformat/nut: add GIF[0]

2015-01-29 Thread Michael Niedermayer
On Thu, Jan 29, 2015 at 05:10:20PM +, Paul B Mahol wrote: > Signed-off-by: Paul B Mahol > --- > libavformat/nut.c | 1 + > 1 file changed, 1 insertion(+) LGTM Thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Dictatorship naturally arises out of demo

Re: [FFmpeg-devel] [PATCH] avfilter: Port mp=softpulldown to lavfi

2015-01-29 Thread Michael Niedermayer
On Thu, Jan 29, 2015 at 05:42:39PM +, Paul B Mahol wrote: > On 1/29/15, Michael Niedermayer wrote: > > On Thu, Jan 29, 2015 at 09:20:43AM +, Paul B Mahol wrote: > >> On 1/29/15, Michael Niedermayer wrote: > >> > On Wed, Jan 28, 2015 at 03:13:27PM +, Paul B Mahol wrote: > >> >> Signed-

Re: [FFmpeg-devel] [PATCH] avfilter: Port mp=softpulldown to lavfi

2015-01-29 Thread Paul B Mahol
On 1/29/15, Michael Niedermayer wrote: > On Thu, Jan 29, 2015 at 09:20:43AM +, Paul B Mahol wrote: >> On 1/29/15, Michael Niedermayer wrote: >> > On Wed, Jan 28, 2015 at 03:13:27PM +, Paul B Mahol wrote: >> >> Signed-off-by: Paul B Mahol >> >> --- >> >> Bit-exact with mp=softpulldown exc

Re: [FFmpeg-devel] [PATCH] avfilter: Port mp=softpulldown to lavfi

2015-01-29 Thread Michael Niedermayer
On Thu, Jan 29, 2015 at 09:20:43AM +, Paul B Mahol wrote: > On 1/29/15, Michael Niedermayer wrote: > > On Wed, Jan 28, 2015 at 03:13:27PM +, Paul B Mahol wrote: > >> Signed-off-by: Paul B Mahol > >> --- > >> Bit-exact with mp=softpulldown except first frame which is uninitialized > >> dat

[FFmpeg-devel] [PATCH] avformat/nut: add GIF[0]

2015-01-29 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- libavformat/nut.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavformat/nut.c b/libavformat/nut.c index 86a0301..04f4bb0 100644 --- a/libavformat/nut.c +++ b/libavformat/nut.c @@ -40,6 +40,7 @@ const AVCodecTag ff_nut_data_tags[] = { }; const AVCodecT

Re: [FFmpeg-devel] Patch for timestamp pattern in filename

2015-01-29 Thread Matthijs Tempels
improved the code: >From 772232db7f6e1dc45e63929b0371acf0c13be7a1 Mon Sep 17 00:00:00 2001 From: Matthijs Tempels Date: Thu, 29 Jan 2015 16:33:46 +0100 Subject: [PATCH] Improved %t handling to add a timestamp to the filename including milliseconds --- libavformat/utils.c | 31 +

Re: [FFmpeg-devel] [PATCH] avformat/nut: support WavPack

2015-01-29 Thread Michael Niedermayer
On Thu, Jan 29, 2015 at 02:59:20PM +, Paul B Mahol wrote: > Signed-off-by: Paul B Mahol > --- > libavformat/nut.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/libavformat/nut.c b/libavformat/nut.c > index 86a0301..6cd3445 100644 > --- a/libavformat/nut.c > +++ b/libavformat/nut.c

[FFmpeg-devel] [PATCH] avformat/nut: support WavPack

2015-01-29 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- libavformat/nut.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavformat/nut.c b/libavformat/nut.c index 86a0301..6cd3445 100644 --- a/libavformat/nut.c +++ b/libavformat/nut.c @@ -182,6 +182,7 @@ const AVCodecTag ff_nut_audio_extra_tags[] = { { AV_CO

[FFmpeg-devel] [PATCH] lavfi: remove mp=softpulldown

2015-01-29 Thread Paul B Mahol
It is supposed to work correctly with MEncoder only. See mplayer(1) manual page. Signed-off-by: Paul B Mahol --- doc/filters.texi | 1 - libavfilter/Makefile | 1 - libavfilter/libmpcodecs/vf_softpulldown.c | 163 -- l

Re: [FFmpeg-devel] [PATCH] avformat/concatdec: avoid NULL dereference when failed to open file.

2015-01-29 Thread Michael Niedermayer
On Thu, Jan 29, 2015 at 10:56:54AM +0100, Nicolas George wrote: > Le decadi 10 pluviôse, an CCXXIII, Zhang Rui a écrit : > > --- > > libavformat/concatdec.c | 3 +++ > > 1 file changed, 3 insertions(+) > > > > diff --git a/libavformat/concatdec.c b/libavformat/concatdec.c > > index e109524..f07cf

Re: [FFmpeg-devel] [FFmpeg-cvslog] Adding Closed caption Support

2015-01-29 Thread Anshul
On 01/20/2015 07:26 PM, Michael Niedermayer wrote: On Tue, Jan 20, 2015 at 04:39:40PM +0530, Anshul wrote: On 01/13/2015 01:15 PM, Clément Bœsch wrote: On Tue, Jan 13, 2015 at 08:12:10AM +0100, Clément Bœsch wrote: On Tue, Jan 13, 2015 at 11:26:06AM +0530, Anshul Maheshwari wrote: [...] Also

Re: [FFmpeg-devel] Post-processing filter Documentation

2015-01-29 Thread Stefano Sabatini
On date Thursday 2015-01-29 03:46:42 +0530, Arwa Arif encoded: > I have updated the page with new images. > http://trac.ffmpeg.org/wiki/Postprocessing Note: probably you can improve the page layout by stripping the black top and bottom bands in the matrix reference. How do you exactly created the

Re: [FFmpeg-devel] [PATCH] avfilter: Port mp=softpulldown to lavfi

2015-01-29 Thread Stefano Sabatini
On date Wednesday 2015-01-28 15:13:27 +, Paul B Mahol encoded: > Signed-off-by: Paul B Mahol > --- > Bit-exact with mp=softpulldown except first frame which is uninitialized data > in mp filter. > TODO: pts needs update, workaround is to use setpts filter. > --- > LICENSE.md

Re: [FFmpeg-devel] [PATCH] remove libmpcodecs

2015-01-29 Thread Clément Bœsch
On Thu, Jan 29, 2015 at 11:54:31AM +0100, Clément Bœsch wrote: [...] > Technically, we should wait for major bump before removing mp since it > removes symbols. > MMh, my bad ff_vp_mp is local. -- Clément B. pgpZQl0DTdyFe.pgp Description: PGP signature

Re: [FFmpeg-devel] [PATCH] remove libmpcodecs

2015-01-29 Thread Clément Bœsch
On Thu, Jan 29, 2015 at 11:32:40AM +0100, Stefano Sabatini wrote: > On date Tuesday 2015-01-27 11:28:52 +, Paul B Mahol encoded: > > Signed-off-by: Paul B Mahol > > --- > > Changelog | 1 + > > LICENSE.md | 2 - > > configur

Re: [FFmpeg-devel] [PATCH] avfilter: Port mp=softpulldown to lavfi

2015-01-29 Thread Paul B Mahol
On 1/29/15, Paul B Mahol wrote: > On 1/29/15, Michael Niedermayer wrote: >> On Wed, Jan 28, 2015 at 03:13:27PM +, Paul B Mahol wrote: >>> Signed-off-by: Paul B Mahol >>> --- >>> Bit-exact with mp=softpulldown except first frame which is uninitialized >>> data in mp filter. >> >>> TODO: pts n

Re: [FFmpeg-devel] [PATCH] remove libmpcodecs

2015-01-29 Thread Stefano Sabatini
On date Tuesday 2015-01-27 11:28:52 +, Paul B Mahol encoded: > Signed-off-by: Paul B Mahol > --- > Changelog | 1 + > LICENSE.md | 2 - > configure | 1 - > doc/filters.texi

Re: [FFmpeg-devel] [PATCH] doc/indevs: add some XCB info to x11grab

2015-01-29 Thread Stefano Sabatini
On date Wednesday 2015-01-28 09:59:45 -0900, Lou Logan encoded: > Signed-off-by: Lou Logan > --- > doc/indevs.texi | 23 +-- > 1 file changed, 17 insertions(+), 6 deletions(-) LGTM, thanks. -- FFmpeg = Frenzy and Faithless Most Power Efficient Guru __

Re: [FFmpeg-devel] Patch for timestamp pattern in filename

2015-01-29 Thread Stefano Sabatini
On date Wednesday 2015-01-28 14:03:06 +0100, Matthijs Tempels encoded: > From 15952b6cb38ac2f532a2f35d50e9dc4f8320c1c5 Mon Sep 17 00:00:00 2001 > From: Matthijs Tempels > Date: Wed, 28 Jan 2015 13:59:54 +0100 > Subject: [PATCH] Added the %t option to the filename pattern to add a > MMdd_HHmms

Re: [FFmpeg-devel] [PATCH] lavfi: document assumptions about the input and output labels of a filter graph description

2015-01-29 Thread Stefano Sabatini
On date Tuesday 2015-01-27 14:06:27 +0100, Stefano Sabatini encoded: > --- > doc/filters.texi | 4 > libavfilter/avfilter.h | 4 > 2 files changed, 8 insertions(+) Applied. -- FFmpeg = Forgiving and Furious Minimal Puritan Embarassing Genius __

Re: [FFmpeg-devel] [PATCH] example/filtering: extend comments about setting the filter graph endpoints

2015-01-29 Thread Stefano Sabatini
On date Wednesday 2015-01-28 12:25:30 +0100, Clément Bœsch encoded: > On Tue, Jan 27, 2015 at 02:06:35PM +0100, Stefano Sabatini wrote: > > That part is a constant source of confusions for readers, this should > > help clarify the apparently inverted logic. > > --- > > doc/examples/filtering_audio

Re: [FFmpeg-devel] [PATCH] doc/filters: apply some updates to the Filtergraph syntax section

2015-01-29 Thread Stefano Sabatini
On date Tuesday 2015-01-27 16:03:29 +, Timothy Gu encoded: > On Tue Jan 27 2015 at 5:06:29 AM Stefano Sabatini > wrote: > > > --- > > doc/filters.texi | 9 + > > 1 file changed, 5 insertions(+), 4 deletions(-) > > > > diff --git a/doc/filters.texi b/doc/filters.texi > > index 009cab3

Re: [FFmpeg-devel] [PATCH] avfilter: Port mp=softpulldown to lavfi

2015-01-29 Thread Kieran Kunhya
On 29 January 2015 at 09:57, Kieran Kunhya wrote: > On 29 January 2015 at 09:20, Paul B Mahol wrote: >> On 1/29/15, Michael Niedermayer wrote: >>> On Wed, Jan 28, 2015 at 03:13:27PM +, Paul B Mahol wrote: Signed-off-by: Paul B Mahol --- Bit-exact with mp=softpulldown except f

Re: [FFmpeg-devel] [PATCH] avfilter: Port mp=softpulldown to lavfi

2015-01-29 Thread Kieran Kunhya
On 29 January 2015 at 09:20, Paul B Mahol wrote: > On 1/29/15, Michael Niedermayer wrote: >> On Wed, Jan 28, 2015 at 03:13:27PM +, Paul B Mahol wrote: >>> Signed-off-by: Paul B Mahol >>> --- >>> Bit-exact with mp=softpulldown except first frame which is uninitialized >>> data in mp filter. >

Re: [FFmpeg-devel] [PATCH] avformat/concatdec: avoid NULL dereference when failed to open file.

2015-01-29 Thread Nicolas George
Le decadi 10 pluviôse, an CCXXIII, Zhang Rui a écrit : > --- > libavformat/concatdec.c | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/libavformat/concatdec.c b/libavformat/concatdec.c > index e109524..f07cfd7 100644 > --- a/libavformat/concatdec.c > +++ b/libavformat/concatdec.c > @@

[FFmpeg-devel] [PATCH] avformat/concatdec: avoid NULL dereference when failed to open file.

2015-01-29 Thread Zhang Rui
--- libavformat/concatdec.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavformat/concatdec.c b/libavformat/concatdec.c index e109524..f07cfd7 100644 --- a/libavformat/concatdec.c +++ b/libavformat/concatdec.c @@ -482,6 +482,9 @@ static int concat_read_packet(AVFormatContext *avf, AV

Re: [FFmpeg-devel] [PATCH] avformat/concatdec: do not close previous input if failed to open next

2015-01-29 Thread Zhang Rui
2015-01-29 16:41 GMT+08:00 Nicolas George : > Le decadi 10 pluviôse, an CCXXIII, Zhang Rui a écrit : >> Avoid NULL access in next call of concat_read_packet(). > Can you explain how to trigger it? I use concatdec for concat multiple stream over http protocol, by set option "safe"=0. After a faile

Re: [FFmpeg-devel] [PATCH] avfilter: Port mp=softpulldown to lavfi

2015-01-29 Thread Paul B Mahol
On 1/29/15, Michael Niedermayer wrote: > On Wed, Jan 28, 2015 at 03:13:27PM +, Paul B Mahol wrote: >> Signed-off-by: Paul B Mahol >> --- >> Bit-exact with mp=softpulldown except first frame which is uninitialized >> data in mp filter. > >> TODO: pts needs update, workaround is to use setpts f

Re: [FFmpeg-devel] [PATCH] avformat/concatdec: do not close previous input if failed to open next

2015-01-29 Thread Nicolas George
Le decadi 10 pluviôse, an CCXXIII, Zhang Rui a écrit : > Avoid NULL access in next call of concat_read_packet(). Can you explain how to trigger it? Another solution is to add: if (!cat->avf) return AVERROR(EIO); at the beginning of concat_read_packet(). I have a feeling that this wo

[FFmpeg-devel] [PATCH] avformat/concatdec: do not close previous input if failed to open next

2015-01-29 Thread Zhang Rui
Avoid NULL access in next call of concat_read_packet(). --- libavformat/concatdec.c | 27 --- 1 file changed, 16 insertions(+), 11 deletions(-) diff --git a/libavformat/concatdec.c b/libavformat/concatdec.c index e109524..a593686 100644 --- a/libavformat/concatdec.c +++ b/