Re: [FFmpeg-devel] [PATCH] Fix vf_cropdetect returning negative rectangles

2014-09-09 Thread Michael Niedermayer
On Tue, Sep 09, 2014 at 06:10:01PM -0700, hjiodjf 97xgw46 wrote: > On Mon, Sep 8, 2014 at 5:21 PM, Michael Niedermayer wrote: > > On Mon, Sep 08, 2014 at 11:16:49AM -0700, hjiodjf 97xgw46 wrote: > >> On Thu, Sep 4, 2014 at 1:08 PM, Michael Niedermayer > >> wrote: > >> > On Tue, Sep 02, 2014 at 0

Re: [FFmpeg-devel] [PATCH] Fix vf_cropdetect returning negative rectangles

2014-09-09 Thread hjiodjf 97xgw46
On Mon, Sep 8, 2014 at 5:21 PM, Michael Niedermayer wrote: > On Mon, Sep 08, 2014 at 11:16:49AM -0700, hjiodjf 97xgw46 wrote: >> On Thu, Sep 4, 2014 at 1:08 PM, Michael Niedermayer wrote: >> > On Tue, Sep 02, 2014 at 02:20:40PM -0700, hjiodjf 97xgw46 wrote: > [...] > >> Moreover, as you said, thi

Re: [FFmpeg-devel] [PATCH] avformat/mp3dec: Improve seeking frame sync code

2014-09-09 Thread Michael Niedermayer
On Sun, Sep 07, 2014 at 09:54:40PM +0200, Michael Niedermayer wrote: > Fixes Ticket3884 > > Signed-off-by: Michael Niedermayer > --- > libavformat/mp3dec.c | 27 +++ > 1 file changed, 19 insertions(+), 8 deletions(-) applied [...] -- Michael GnuPG fingerprint: 9F

[FFmpeg-devel] [PATCH] avcodec/libx265: enable psnr reporting when requested by the user

2014-09-09 Thread Michael Niedermayer
This is similar to what is done in libx264.c Fixes Ticket3567 Signed-off-by: Michael Niedermayer --- libavcodec/libx265.c |1 + 1 file changed, 1 insertion(+) diff --git a/libavcodec/libx265.c b/libavcodec/libx265.c index 55019d4..923c750 100644 --- a/libavcodec/libx265.c +++ b/libavcodec/

[FFmpeg-devel] [PATCH] avformat/concatdec: fix "warning: explicitly assigning a variable of type int to itself"

2014-09-09 Thread Michael Niedermayer
Signed-off-by: Michael Niedermayer --- libavformat/concatdec.c |8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libavformat/concatdec.c b/libavformat/concatdec.c index 4590dc5..9e98579 100644 --- a/libavformat/concatdec.c +++ b/libavformat/concatdec.c @@ -345,7 +345,

Re: [FFmpeg-devel] Suggested Patch for timecode timebase calculation in mov.c

2014-09-09 Thread Michael Niedermayer
On Tue, Sep 09, 2014 at 12:01:23PM -0700, jon wrote: > Hi ffmpeg developers. > > I am still new to attempting contributing here, so please let me > know if there is a better approach for this. I am attaching a patch > I would like to incorporate for calculating the stream time_base of > the timeco

Re: [FFmpeg-devel] [PATCH] av_filter/x86/idet: use HADDD where appropriate

2014-09-09 Thread James Almer
On 09/09/14 5:53 PM, Pascal Massimino wrote: > Hi James, > > as suggested. > > /skal Pushed. Thanks! ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

[FFmpeg-devel] [PATCH] doc/filters: fix localtime drawtext example.

2014-09-09 Thread Simon Thelen
The colon after the localtime function call needs an additional layer of escaping or else everything until the next colon is treated as a fontfile. Signed-off-by: Simon Thelen --- doc/filters.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/filters.texi b/doc/filters.

[FFmpeg-devel] [PATCH] av_filter/x86/idet: use HADDD where appropriate

2014-09-09 Thread Pascal Massimino
Hi James, as suggested. /skal 0001-av_filter-x86-idet-use-HADDD-where-appropriate.patch Description: Binary data ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

[FFmpeg-devel] Set AV_TIMECODE_FLAG_ALLOWNEGATIVE in avutil/timecode.c av_timecode_init_from_string

2014-09-09 Thread jon
If the timecode value is negative it certainly seems safe to set the AV_TIMECODE_FLAG_ALLOWNEGATIVE on the AVTimecode object. >From 35ae38f9557e1ff01040d0e681e843d1727f979b Mon Sep 17 00:00:00 2001 From: Jon Morley Date: Tue, 9 Sep 2014 12:12:17 -0700 Subject: [PATCH 2/2] libavutil/timecode.c: im

[FFmpeg-devel] Suggested Patch for timecode timebase calculation in mov.c

2014-09-09 Thread jon
Hi ffmpeg developers. I am still new to attempting contributing here, so please let me know if there is a better approach for this. I am attaching a patch I would like to incorporate for calculating the stream time_base of the timecode data track in mov's. Please advise. Thanks! >From 5ae0b5

Re: [FFmpeg-devel] [PATCH] av_filter/x86/idet: MMX/SSE2 implementation of 16bits filter_line()

2014-09-09 Thread Pascal Massimino
James, On Tue, Sep 9, 2014 at 10:31 AM, James Almer wrote: > On 09/09/14 9:52 AM, Pascal Massimino wrote: > > +mova m2, m_sum > > +%if mmsize == 16 > > +psrldqm2, 4 > > +paddd m_sum, m2 > > +psrldqm2, 4 > > +paddd m_sum, m2 > > +psrldqm2, 4 > > +

Re: [FFmpeg-devel] [PATCH] avformat: remove FF_API_ASS_SSA dead code

2014-09-09 Thread Clément Bœsch
On Sun, Sep 07, 2014 at 10:18:50PM +0200, wm4 wrote: > On Sun, 7 Sep 2014 22:03:26 +0200 > Clément Bœsch wrote: > > > --- > > libavformat/matroska.c| 6 > > libavformat/matroskadec.c | 80 > > --- > > libavformat/matroskaenc.c | 79 > > ---

[FFmpeg-devel] [PATCH 2/2] avdevice/lavfi: dont assign variables to themselfs

2014-09-09 Thread Michael Niedermayer
Fixes "warning: explicitly assigning a variable of type int to itself" Signed-off-by: Michael Niedermayer --- libavdevice/lavfi.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/libavdevice/lavfi.c b/libavdevice/lavfi.c index 4cfe804..1398ece 100644 --- a/libav

[FFmpeg-devel] [PATCH 1/2] Fix "passing argument 1 of av_free discards const qualifier from pointer target type"

2014-09-09 Thread Michael Niedermayer
Signed-off-by: Michael Niedermayer --- libavutil/dict.c |8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libavutil/dict.c b/libavutil/dict.c index bdb5690..475e906 100644 --- a/libavutil/dict.c +++ b/libavutil/dict.c @@ -77,8 +77,8 @@ int av_dict_set(AVDictionary **p

Re: [FFmpeg-devel] [PATCH] av_filter/x86/idet: MMX/SSE2 implementation of 16bits filter_line()

2014-09-09 Thread James Almer
On 09/09/14 9:52 AM, Pascal Massimino wrote: > +mova m2, m_sum > +%if mmsize == 16 > +psrldqm2, 4 > +paddd m_sum, m2 > +psrldqm2, 4 > +paddd m_sum, m2 > +psrldqm2, 4 > +paddd m_sum, m2 > +%else > +psrlq m2, 32 > +paddd m_sum,

Re: [FFmpeg-devel] [PATCH] lavfi/setpts: add stp and ldp functions

2014-09-09 Thread Michael Niedermayer
On Tue, Sep 09, 2014 at 11:54:44AM +0200, Stefano Sabatini wrote: > TODO: bump micro version > --- > doc/filters.texi | 18 +- > libavfilter/setpts.c | 33 ++--- > 2 files changed, 47 insertions(+), 4 deletions(-) should be ok [...] -- Michael

Re: [FFmpeg-devel] [PATCH] av_filter/x86/idet: MMX/SSE2 implementation of 16bits filter_line()

2014-09-09 Thread Michael Niedermayer
On Tue, Sep 09, 2014 at 02:52:30PM +0200, Pascal Massimino wrote: > Hi, > > $subject > > /skal > vf_idet.c | 11 +--- > vf_idet.h |7 +++-- > x86/vf_idet.asm| 70 > +++-- > x86/vf_idet_init.c | 29 +

Re: [FFmpeg-devel] [PATCH 0/2] avdevice/x11grab: fix cursor drawing in multi-screen setup

2014-09-09 Thread Michael Niedermayer
On Tue, Sep 09, 2014 at 09:30:50AM +0200, Antonio Ospite wrote: > On Tue, 9 Sep 2014 05:32:36 +0200 > Michael Niedermayer wrote: > > > On Mon, Sep 08, 2014 at 01:15:17PM +0200, Antonio Ospite wrote: > > > Hi, > > > > > > with multi-screen setups x11grab does not behave in the correct way wrt. >

[FFmpeg-devel] Fwd: Re: patch for x32 for libpostproc

2014-09-09 Thread Reinhard Tartler
There seems to be at least some activity here. Maybe we can update the Debian libpostproc package to Michael's new branch. Derek, just to clarify since you worked on the branch the package is currently based on: What are your thoughts on this? Are you interested in continuing this effort? What wo

[FFmpeg-devel] [PATCH] av_filter/x86/idet: MMX/SSE2 implementation of 16bits filter_line()

2014-09-09 Thread Pascal Massimino
Hi, $subject /skal From 47c4e2b153744573e392fbe8fe557bb2f8e7b7aa Mon Sep 17 00:00:00 2001 From: Pascal Massimino Date: Tue, 9 Sep 2014 14:38:58 +0200 Subject: [PATCH] av_filter/x86/idet: MMX/SSE2 implementation of 16bits filter_line() tested on http://ps-auxw.de/10bit-h264-sample/10bit-eldorad

Re: [FFmpeg-devel] MXF : default fied dominance is TFF

2014-09-09 Thread Michael Niedermayer
On Mon, Sep 08, 2014 at 12:17:14PM +, Gaullier Nicolas wrote: > I did not found an easy way to set up initialization values to properly > handle defaults but I am not a highly skilled developer, and maybe someone > will find how to implement this more elegantly. > They are also many other pro

[FFmpeg-devel] [PATCH] lavfi/setpts: add stp and ldp functions

2014-09-09 Thread Stefano Sabatini
TODO: bump micro version --- doc/filters.texi | 18 +- libavfilter/setpts.c | 33 ++--- 2 files changed, 47 insertions(+), 4 deletions(-) diff --git a/doc/filters.texi b/doc/filters.texi index bb486ea..4338a3e 100644 --- a/doc/filters.texi +++ b/doc

Re: [FFmpeg-devel] [PATCH 0/2] avdevice/x11grab: fix cursor drawing in multi-screen setup

2014-09-09 Thread Antonio Ospite
On Tue, 9 Sep 2014 05:32:36 +0200 Michael Niedermayer wrote: > On Mon, Sep 08, 2014 at 01:15:17PM +0200, Antonio Ospite wrote: > > Hi, > > > > with multi-screen setups x11grab does not behave in the correct way wrt. > > drawing the mouse cursor, e.g. when doing: > > > > ffplay -f x11grab -i "