Re: [FFmpeg-devel] [RFC] ffprobe: add -show_pixel_descriptions option

2014-09-09 Thread Tobias Rapp
On 09.09.2014 05:38, Dave Rice wrote: On Sep 8, 2014, at 10:08 AM, Tobias Rapp t.r...@noa-audio.com wrote: BTW: How can one test the ffprobe XML output against the XSD? I tried it with xmllint --noout --schema doc/ffprobe.xsd ffprobe-output.xml without success. What tools do other developers

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 michae...@gmx.at 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

[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 +++

[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

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 michae...@gmx.at 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.

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] 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 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, m2

[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 michae...@gmx.at --- 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

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 u...@pkh.me wrote: --- libavformat/matroska.c| 6 libavformat/matroskadec.c | 80 --- libavformat/matroskaenc.c | 79

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 jamr...@gmail.com 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 +

[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

[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 j...@tweaksoftware.com Date: Tue, 9 Sep 2014 12:12:17 -0700 Subject: [PATCH 2/2]

[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 ffmpeg-...@c-14.de --- doc/filters.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

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

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 timecode

[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 michae...@gmx.at --- 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 +++

[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 michae...@gmx.at --- 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

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 michae...@gmx.at --- libavformat/mp3dec.c | 27 +++ 1 file changed, 19 insertions(+), 8 deletions(-) applied [...] -- Michael GnuPG

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 michae...@gmx.at 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 michae...@gmx.at wrote: On Tue, Sep 02, 2014 at 02:20:40PM -0700, hjiodjf 97xgw46 wrote: [...]