Re: [FFmpeg-devel] [PATCH] Port FFT domain filter.

2015-02-27 Thread arwa arif
I have updated the patch. From 738612efdbd580bbf6a41bcce36a10813eba67f0 Mon Sep 17 00:00:00 2001 From: Arwa Arif Date: Tue, 24 Feb 2015 12:17:30 +0530 Subject: [PATCH] Port FFT domain filter. --- libavfilter/Makefile |1 + libavfilter/allfilters.c |1 + libavfilter/vf_fftfilt.c | 23

[FFmpeg-devel] [PATCH 1/2] avutil/opt: Also test/compare the av_log output i the selftest

2015-02-27 Thread Michael Niedermayer
Signed-off-by: Michael Niedermayer --- libavutil/opt.c|8 +++ tests/ref/fate/opt | 203 2 files changed, 211 insertions(+) diff --git a/libavutil/opt.c b/libavutil/opt.c index 5de891b..007f51d 100644 --- a/libavutil/opt.c +++ b/libavu

[FFmpeg-devel] [PATCH 2/2] avutil/opt: also test av_opt_show2()

2015-02-27 Thread Michael Niedermayer
Signed-off-by: Michael Niedermayer --- libavutil/opt.c| 47 +-- tests/ref/fate/opt | 23 +++ 2 files changed, 48 insertions(+), 22 deletions(-) diff --git a/libavutil/opt.c b/libavutil/opt.c index 007f51d..03f23a1 100644 ---

[FFmpeg-devel] [PATCH 2/2] avutil/common: minor simplification in av_clip_intp2_c()

2015-02-27 Thread Michael Niedermayer
Signed-off-by: Michael Niedermayer --- libavutil/common.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavutil/common.h b/libavutil/common.h index 2fca693..852c1de 100644 --- a/libavutil/common.h +++ b/libavutil/common.h @@ -192,7 +192,7 @@ static av_always_inline av_c

[FFmpeg-devel] [PATCH 1/2] avcodec/ppc/fdctdsp: fix const warning

2015-02-27 Thread Michael Niedermayer
Signed-off-by: Michael Niedermayer --- libavcodec/ppc/fdctdsp.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/ppc/fdctdsp.c b/libavcodec/ppc/fdctdsp.c index f2efc5d..40f4c6c 100644 --- a/libavcodec/ppc/fdctdsp.c +++ b/libavcodec/ppc/fdctdsp.c @@ -196,7 +196,7 @

[FFmpeg-devel] [PATCH] avutil/ppc/intreadwrite: remove AV_??64 overriding code

2015-02-27 Thread Michael Niedermayer
The code has undefined behavior and makes no difference when optimizations are enabled. Signed-off-by: Michael Niedermayer --- libavutil/ppc/intreadwrite.h | 14 -- 1 file changed, 14 deletions(-) diff --git a/libavutil/ppc/intreadwrite.h b/libavutil/ppc/intreadwrite.h index 1ec34

Re: [FFmpeg-devel] Gaining access to a encoder context in avformat?

2015-02-27 Thread Reimar Döffinger
On Tue, Feb 24, 2015 at 10:10:21AM +, Kevin Wheatley wrote: > +if (track->vos_data && track->vos_len > 0x29) { > +if (track->vos_data[0] == 0x00 && > +track->vos_data[1] == 0x00 && > +track->vos_data[2] == 0x02 && > +track->vos_data[3] == 0x80 &&

Re: [FFmpeg-devel] [PATCH 1/2] ffmpeg: allow to set the thread message queue size.

2015-02-27 Thread Reimar Döffinger
On Thu, Feb 26, 2015 at 07:56:06PM +0100, Nicolas George wrote: > Le septidi 7 ventôse, an CCXXIII, Michael Niedermayer a écrit : > > i think the case i tested had HAVE_W32THREADS set > > also theres HAVE_OS2THREADS > > I suspect my question was too vague. > > If I understand correctly, > > HAVE

Re: [FFmpeg-devel] [PATCH] lavfi: add erosion & dilation filter

2015-02-27 Thread James Almer
On 27/02/15 5:19 AM, Paul B Mahol wrote: > On 2/26/15, James Almer wrote: >> On 25/02/15 11:55 AM, Paul B Mahol wrote: >>> +static inline void line_copy8(uint8_t *line, const uint8_t *srcp, int >>> width, int mergin) >> >> Unless I'm missing something, "mergin" seems to always be 1. >> The code be

Re: [FFmpeg-devel] [PATCH 3/3] lavf/matroskadec: export chained segment chapter metadata.

2015-02-27 Thread wm4
On Fri, 27 Feb 2015 20:08:50 +0100 Nicolas George wrote: > Le nonidi 9 ventôse, an CCXXIII, wm4 a écrit : > > This isn't enough information to implement ordered chapters. > > Care to elaborate? At the very least, you should check the ordered chapter flag. If it's not set, the segment uid is sup

Re: [FFmpeg-devel] [PATCH 3/3] lavf/matroskadec: export chained segment chapter metadata.

2015-02-27 Thread wm4
On Fri, 27 Feb 2015 16:50:30 +0100 Nicolas George wrote: > Signed-off-by: Nicolas George > --- > libavformat/matroska.h| 1 + > libavformat/matroskadec.c | 6 +- > 2 files changed, 6 insertions(+), 1 deletion(-) > > > This is not real support for chained Matroska files, but at least >

Re: [FFmpeg-devel] [PATCH 3/3] lavf/matroskadec: export chained segment chapter metadata.

2015-02-27 Thread Nicolas George
Le nonidi 9 ventôse, an CCXXIII, wm4 a écrit : > This isn't enough information to implement ordered chapters. Care to elaborate? Regards, -- Nicolas George signature.asc Description: Digital signature ___ ffmpeg-devel mailing list ffmpeg-devel@ffm

Re: [FFmpeg-devel] [PATCH 2/3] lavf/matroskadec: export SegmentUID to metadata.

2015-02-27 Thread Michael Niedermayer
On Fri, Feb 27, 2015 at 04:50:29PM +0100, Nicolas George wrote: > The metadata key is "segment_uid", and is formatted as > 32 hex nibbles grouped in 32 bits words by dashes. > > Signed-off-by: Nicolas George > --- > libavformat/matroskadec.c | 25 - > 1 file changed, 24 i

Re: [FFmpeg-devel] [PATCH 1/3] ffmpeg: do not copy the segment_uid metadata.

2015-02-27 Thread Michael Niedermayer
On Fri, Feb 27, 2015 at 04:50:28PM +0100, Nicolas George wrote: > Signed-off-by: Nicolas George > --- > ffmpeg_opt.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/ffmpeg_opt.c b/ffmpeg_opt.c > index 39c5f49..2484884 100644 > --- a/ffmpeg_opt.c > +++ b/ffmpeg_opt.c > @@ -2164,6 +2164,7

Re: [FFmpeg-devel] [PATCH] lavf/mov: correct printf specifier

2015-02-27 Thread Michael Niedermayer
On Fri, Feb 27, 2015 at 04:21:16PM +0100, Christophe Gisquet wrote: > The attached patch fixes a warning. > > -- > Christophe > mov.c |2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > 46927ce40beaea92976305da39959e9982b51d18 > 0001-lavf-mov-correct-printf-specifier.patch > From 7df

[FFmpeg-devel] [PATCH 3/3] lavf/matroskadec: export chained segment chapter metadata.

2015-02-27 Thread Nicolas George
Signed-off-by: Nicolas George --- libavformat/matroska.h| 1 + libavformat/matroskadec.c | 6 +- 2 files changed, 6 insertions(+), 1 deletion(-) This is not real support for chained Matroska files, but at least applications using only lavf will have the relevant information to implement

[FFmpeg-devel] [PATCH 1/3] ffmpeg: do not copy the segment_uid metadata.

2015-02-27 Thread Nicolas George
Signed-off-by: Nicolas George --- ffmpeg_opt.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ffmpeg_opt.c b/ffmpeg_opt.c index 39c5f49..2484884 100644 --- a/ffmpeg_opt.c +++ b/ffmpeg_opt.c @@ -2164,6 +2164,7 @@ loop_end: if(o->recording_time != INT64_MAX) av_dict_set(&

[FFmpeg-devel] [PATCH 2/3] lavf/matroskadec: export SegmentUID to metadata.

2015-02-27 Thread Nicolas George
The metadata key is "segment_uid", and is formatted as 32 hex nibbles grouped in 32 bits words by dashes. Signed-off-by: Nicolas George --- libavformat/matroskadec.c | 25 - 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/libavformat/matroskadec.c b/libavfor

[FFmpeg-devel] [PATCH] lavf/mov: correct printf specifier

2015-02-27 Thread Christophe Gisquet
The attached patch fixes a warning. -- Christophe From 7df1da4b191c394fef0c91bd3e36b8988b841607 Mon Sep 17 00:00:00 2001 From: Christophe Gisquet Date: Fri, 27 Feb 2015 16:10:38 +0100 Subject: [PATCH] lavf/mov: correct printf specifier The type is int64_t. --- libavformat/mov.c | 2 +- 1 file

Re: [FFmpeg-devel] [PATCH] avfilter/palettegen/RFC: fix mem leak

2015-02-27 Thread Clément Bœsch
On Fri, Feb 27, 2015 at 12:50:23PM +0100, Nicolas George wrote: > Le nonidi 9 ventôse, an CCXXIII, Clement Boesch a écrit : > > I don't understand why I need to do that. The free is already present in > > the uninit, and before every update of the prev_frame update. > > In uninit, I see: > >

Re: [FFmpeg-devel] [PATCH] avfilter/palettegen/RFC: fix mem leak

2015-02-27 Thread Nicolas George
Le nonidi 9 ventôse, an CCXXIII, Clement Boesch a écrit : > I don't understand why I need to do that. The free is already present in > the uninit, and before every update of the prev_frame update. In uninit, I see: av_freep(&s->prev_frame); I suspect it should be av_frame_free() instead. Re

Re: [FFmpeg-devel] Live encoding into mxf...

2015-02-27 Thread Eng. Tweellt
Hi Michael, I did what you've suggested and found out how to encode directly from a live source and it works indeed. I got some buffer alerts but the output video was much better than mine, without artifacts. When I'm encoding should I order the frames in some way? Cheers 2015-02-27 10:05 GMT+0

Re: [FFmpeg-devel] [Patch] no_delay option for librtmp

2015-02-27 Thread Michael Niedermayer
On Thu, Feb 26, 2015 at 11:32:06PM -0600, Cary Tetrick wrote: > It looks like #include might work BUT > According to this page http://linux.die.net/man/7/tcp > it looks like this socket setting is not truly portable. :( > My intent was to offer some flexibility in what looks like a long standing >

Re: [FFmpeg-devel] Live encoding into mxf...

2015-02-27 Thread Eng. Tweellt
2015-02-26 23:46 GMT+00:00 Michael Niedermayer : > On Thu, Feb 26, 2015 at 05:26:36PM +, Eng. Tweellt wrote: > > Hello everyone, > > > > I'm trying to encode video and audio directly from a capture board, 1 > video > > stream and 8 single channel audio streams into a MXF file encoding it in >

Re: [FFmpeg-devel] [PATCH]Set bits_per_raw_sample for hqx

2015-02-27 Thread Paul B Mahol
On 2/26/15, Carl Eugen Hoyos wrote: > Carl Eugen Hoyos ag.or.at> writes: > >> Attached patch sets bits_per_raw_sample when decoding hqx. > > I will push this if nobody objects. > How do you know this is correct? > Carl Eugen > > ___ > ffmpeg-devel mai

Re: [FFmpeg-devel] [PATCH] lavfi: add erosion & dilation filter

2015-02-27 Thread Paul B Mahol
On 2/26/15, James Almer wrote: > On 25/02/15 11:55 AM, Paul B Mahol wrote: >> +static inline void line_copy8(uint8_t *line, const uint8_t *srcp, int >> width, int mergin) > > Unless I'm missing something, "mergin" seems to always be 1. > The code below could be simplified. The function could be u

Re: [FFmpeg-devel] [PATCH] lavfi: add erosion & dilation filter

2015-02-27 Thread Paul B Mahol
On 2/26/15, Clement Boesch wrote: > On Wed, Feb 25, 2015 at 02:55:58PM +, Paul B Mahol wrote: >> Signed-off-by: Paul B Mahol >> --- >> doc/filters.texi | 34 ++ >> libavfilter/Makefile | 2 + >> libavfilter/allfilters.c | 2 + >> libavfilter/vf_neighbor.c | 289 >> +++