[FFmpeg-devel] [PATCH] apng: Fix typos in decoder causing incorrect results

2015-07-18 Thread Donny Yang
Signed-off-by: Donny Yang --- libavcodec/pngdec.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libavcodec/pngdec.c b/libavcodec/pngdec.c index eae778b..7a5c464 100644 --- a/libavcodec/pngdec.c +++ b/libavcodec/pngdec.c @@ -856,13 +856,13 @@ static int decode_fctl

[FFmpeg-devel] [PATCH] apng: Fix decoding images with the PREVIOUS dispose op

2015-07-18 Thread Donny Yang
--- libavcodec/pngdec.c | 47 +++ 1 file changed, 27 insertions(+), 20 deletions(-) diff --git a/libavcodec/pngdec.c b/libavcodec/pngdec.c index 60c4975..eae778b 100644 --- a/libavcodec/pngdec.c +++ b/libavcodec/pngdec.c @@ -643,6 +643,11 @@ static int

Re: [FFmpeg-devel] GSoC Weely report (libswscale)

2015-07-18 Thread Michael Niedermayer
On Wed, Jul 15, 2015 at 08:06:49PM -0300, Pedro Arthur wrote: [...] > diff --git a/libswscale/swscale_internal.h b/libswscale/swscale_internal.h > index 2299aa5..82713fd 100644 > --- a/libswscale/swscale_internal.h > +++ b/libswscale/swscale_internal.h > @@ -269,6 +269,9 @@ typedef void (*yuv2anyX

[FFmpeg-devel] [PATCH] apng: Support inter-frame compression

2015-07-18 Thread Donny Yang
The current algorithm is just "try all the combinations, and pick the best". It's not very fast either, probably due to a lot of copying, but will do for an initial implementation. Signed-off-by: Donny Yang --- libavcodec/pngenc.c | 420 +++- 1 fil

Re: [FFmpeg-devel] [PATCH 2/2] avutil/x86/bswap: force inline asm versions with ICC

2015-07-18 Thread James Almer
On 18/07/15 8:33 PM, Michael Niedermayer wrote: > On Sat, Jul 18, 2015 at 06:45:44PM -0300, James Almer wrote: >> Recent ICC versions that define GCC as >= 4.5 (like ICC 13) apparently can't >> optimize the generic C versions of av_bswap*() on their own. >> >> Signed-off-by: James Almer >> --- >>

Re: [FFmpeg-devel] [PATCH 2/2] avutil/x86/bswap: force inline asm versions with ICC

2015-07-18 Thread Michael Niedermayer
On Sat, Jul 18, 2015 at 06:45:44PM -0300, James Almer wrote: > Recent ICC versions that define GCC as >= 4.5 (like ICC 13) apparently can't > optimize the generic C versions of av_bswap*() on their own. > > Signed-off-by: James Almer > --- > libavutil/x86/bswap.h | 2 +- > 1 file changed, 1 inse

Re: [FFmpeg-devel] [PATCH 1/2] avutil/intmath: check for ICC before GCC

2015-07-18 Thread James Almer
On 18/07/15 7:53 PM, Michael Niedermayer wrote: > On Sat, Jul 18, 2015 at 06:45:43PM -0300, James Almer wrote: >> Intel compiler also defines __GNUC__, so the Intel specific intrinsics were >> not >> really being used. >> >> Signed-off-by: James Almer >> --- >> libavutil/intmath.h | 18 +

Re: [FFmpeg-devel] [PATCH 1/2] avutil/intmath: check for ICC before GCC

2015-07-18 Thread Michael Niedermayer
On Sat, Jul 18, 2015 at 06:45:43PM -0300, James Almer wrote: > Intel compiler also defines __GNUC__, so the Intel specific intrinsics were > not > really being used. > > Signed-off-by: James Almer > --- > libavutil/intmath.h | 18 +- > 1 file changed, 9 insertions(+), 9 deletion

[FFmpeg-devel] can amerge use .needs_fifo?

2015-07-18 Thread Paul B Mahol
Hi, Topic says it all. Thanks! ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

[FFmpeg-devel] [PATCH 2/2] avutil/x86/bswap: force inline asm versions with ICC

2015-07-18 Thread James Almer
Recent ICC versions that define GCC as >= 4.5 (like ICC 13) apparently can't optimize the generic C versions of av_bswap*() on their own. Signed-off-by: James Almer --- libavutil/x86/bswap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavutil/x86/bswap.h b/libavutil/x86

[FFmpeg-devel] [PATCH 1/2] avutil/intmath: check for ICC before GCC

2015-07-18 Thread James Almer
Intel compiler also defines __GNUC__, so the Intel specific intrinsics were not really being used. Signed-off-by: James Almer --- libavutil/intmath.h | 18 +- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/libavutil/intmath.h b/libavutil/intmath.h index f5ecc77..ef

Re: [FFmpeg-devel] [PATCH] fate: add tblend filter test

2015-07-18 Thread Michael Niedermayer
On Sat, Jul 18, 2015 at 09:15:47PM +, Paul B Mahol wrote: > On 7/18/15, Paul B Mahol wrote: > > On 7/18/15, Michael Niedermayer wrote: > >> On Sat, Jul 18, 2015 at 02:31:58AM +, Paul B Mahol wrote: > >>> Signed-off-by: Paul B Mahol > >>> --- > >>> tests/fate/filter-video.mak | 3 +++ >

Re: [FFmpeg-devel] [PATCH] fate: add tblend filter test

2015-07-18 Thread Paul B Mahol
On 7/18/15, Paul B Mahol wrote: > On 7/18/15, Paul B Mahol wrote: >> On 7/18/15, Michael Niedermayer wrote: >>> On Sat, Jul 18, 2015 at 02:31:58AM +, Paul B Mahol wrote: Signed-off-by: Paul B Mahol --- tests/fate/filter-video.mak | 3 +++ tests/ref/fate/filter-tblend

Re: [FFmpeg-devel] [PATCH] fate: add tblend filter test

2015-07-18 Thread Paul B Mahol
On 7/18/15, Paul B Mahol wrote: > On 7/18/15, Michael Niedermayer wrote: >> On Sat, Jul 18, 2015 at 02:31:58AM +, Paul B Mahol wrote: >>> Signed-off-by: Paul B Mahol >>> --- >>> tests/fate/filter-video.mak | 3 +++ >>> tests/ref/fate/filter-tblend | 50 >>>

Re: [FFmpeg-devel] [PATCH] avformat/mpegtsenc: Support a user specified PAT/PMT period

2015-07-18 Thread Michael Niedermayer
On Thu, Jul 16, 2015 at 12:56:55PM +0200, Michael Niedermayer wrote: > From: Michael Niedermayer > > Can be used to fix Ticket3714 > > TODO, add docs added docs applied [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB When the tyrant has disposed of foreign e

Re: [FFmpeg-devel] [PATCH 1/2] avformat/mpegtsenc: support storing PAT/PMT per frame

2015-07-18 Thread Michael Niedermayer
On Thu, Jul 16, 2015 at 01:54:56AM +0200, Michael Niedermayer wrote: > From: Michael Niedermayer > > Signed-off-by: Michael Niedermayer > --- > libavformat/mpegtsenc.c |9 + > 1 file changed, 9 insertions(+) improved option name, added docs applied [...] -- Michael GnuPG fing

Re: [FFmpeg-devel] [PATCH] fate: add tblend filter test

2015-07-18 Thread Paul B Mahol
On 7/18/15, Michael Niedermayer wrote: > On Sat, Jul 18, 2015 at 02:31:58AM +, Paul B Mahol wrote: >> Signed-off-by: Paul B Mahol >> --- >> tests/fate/filter-video.mak | 3 +++ >> tests/ref/fate/filter-tblend | 50 >> >> 2 files changed, 53 inse

Re: [FFmpeg-devel] [PATCH] fate: add tblend filter test

2015-07-18 Thread Michael Niedermayer
On Sat, Jul 18, 2015 at 02:31:58AM +, Paul B Mahol wrote: > Signed-off-by: Paul B Mahol > --- > tests/fate/filter-video.mak | 3 +++ > tests/ref/fate/filter-tblend | 50 > > 2 files changed, 53 insertions(+) > create mode 100644 tests/ref/fate/

[FFmpeg-devel] [PATCH 3/3] avdevice/decklink: Add support for decoding 8-bit RGB formats.

2015-07-18 Thread Chris Spencer
This adds a new pixel_format option to allow argb or bgra inputs. This is necessary to capture RGB HDMI inputs. Signed-off-by: Chris Spencer --- doc/indevs.texi | 25 +++ doc/outdevs.texi| 2 +- libavdevice/decklink_common.cpp | 4 ++-- liba

[FFmpeg-devel] [PATCH 2/3] avdevice/decklink: Add missing libraries when building with DeckLink support on Windows.

2015-07-18 Thread Chris Spencer
Signed-off-by: Chris Spencer --- configure | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure b/configure index 1752a35..c2a9564 100755 --- a/configure +++ b/configure @@ -4298,6 +4298,8 @@ case $target_os in else target_os=mingw32 fi +decklink_

[FFmpeg-devel] [PATCH 1/3] avdevice/decklink: Fix build error caused by a change in the SDK.

2015-07-18 Thread Chris Spencer
GetBufferedAudioSampleFrameCount() used to take an unsigned long, but this changed at some point and the latest version of the DeckLink SDK (10.4.1) takes an unsigned int. Signed-off-by: Chris Spencer --- libavdevice/decklink_common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff

Re: [FFmpeg-devel] [PATCHv2] doc/developer: add url for sample files

2015-07-18 Thread Michael Niedermayer
On Sat, Jul 18, 2015 at 08:34:02AM -0400, Ganesh Ajjanagadde wrote: > Signed-off-by: Ganesh Ajjanagadde > --- > doc/developer.texi | 4 > 1 file changed, 4 insertions(+) applied thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB It is dangerous to be

[FFmpeg-devel] [PATCH] fate: add tblend filter test

2015-07-18 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- tests/fate/filter-video.mak | 3 +++ tests/ref/fate/filter-tblend | 50 2 files changed, 53 insertions(+) create mode 100644 tests/ref/fate/filter-tblend diff --git a/tests/fate/filter-video.mak b/tests/fate/filter-v

[FFmpeg-devel] [PATCH] avfilter: add sidechain compress audio filter

2015-07-18 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- doc/filters.texi | 45 ++ libavfilter/Makefile | 1 + libavfilter/af_sidechaincompress.c | 316 + libavfilter/allfilters.c | 1 + 4 files changed, 363 insertions(+) create mode

Re: [FFmpeg-devel] [PATCH]Rename FF_CODEC_PROPERTY_* as AV_CODEC_PROPERTY_*

2015-07-18 Thread wm4
On Sat, 18 Jul 2015 13:58:20 +0200 Michael Niedermayer wrote: > On Fri, Jul 17, 2015 at 12:27:40AM +0200, Carl Eugen Hoyos wrote: > > Hi! > > > > I am not really happy with attached patch as most defines in avcodec.h > > use the FF_ prefix. > > > > Please comment, Carl Eugen > > > doc/APIcha

Re: [FFmpeg-devel] [PATCH] conversion of FFV1 specification from lyx to markdown

2015-07-18 Thread Dave Rice
> On Jul 10, 2015, at 4:55 PM, Michael Niedermayer > wrote: > > On Fri, Jul 10, 2015 at 04:19:41PM -0400, Dave Rice wrote: >> >>> On Jul 10, 2015, at 3:51 PM, Michael Niedermayer >>> wrote: >>> >>> On Fri, Jul 10, 2015 at 03:47:45PM -0400, Dave Rice wrote: > On Jul 10, 2015, at 2:

Re: [FFmpeg-devel] [PATCH] conversion of FFV1 specification from lyx to markdown

2015-07-18 Thread Dave Rice
> On Jul 10, 2015, at 3:51 PM, Michael Niedermayer > wrote: > > On Fri, Jul 10, 2015 at 03:47:45PM -0400, Dave Rice wrote: >> >>> On Jul 10, 2015, at 2:06 PM, Michael Niedermayer >>> wrote: >>> >>> On Fri, Jul 10, 2015 at 07:51:20PM +0200, Michael Niedermayer wrote: On Fri, Jul 10, 201

[FFmpeg-devel] Hosting offer for ffmpeg by DreamHack

2015-07-18 Thread Markus Viitamäki
Hello all! We at DreamHack would like to offer the ffmpeg project free hosting. Location for this hosting would be in Sweden, and to be more exact Stockholm. Hardware: We have a few machines spare, and the most suitable of those machines would be this: 1x E5-2407 48GB Ram 4x 4TB SATA (In what eve

[FFmpeg-devel] [PATCHv2] doc/developer: add url for sample files

2015-07-18 Thread Ganesh Ajjanagadde
Signed-off-by: Ganesh Ajjanagadde --- doc/developer.texi | 4 1 file changed, 4 insertions(+) diff --git a/doc/developer.texi b/doc/developer.texi index d9ccf7b..7e9f0b2 100644 --- a/doc/developer.texi +++ b/doc/developer.texi @@ -544,6 +544,10 @@ should not crash, end in a (near) infinite

[FFmpeg-devel] [PATCH] doc/developer: add url for sample files

2015-07-18 Thread Ganesh Ajjanagadde
Signed-off-by: Ganesh Ajjanagadde --- doc/developer.texi | 4 1 file changed, 4 insertions(+) diff --git a/doc/developer.texi b/doc/developer.texi index d9ccf7b..9060bd1 100644 --- a/doc/developer.texi +++ b/doc/developer.texi @@ -544,6 +544,10 @@ should not crash, end in a (near) infinite

Re: [FFmpeg-devel] [PATCH v5] Add support for Audible AAX (and AAX+) files

2015-07-18 Thread Vesselin Bontchev
18.07.2015, 13:03, "Paul B Mahol" : > Dana 18. 7. 2015. 11:46 osoba "Vesselin Bontchev" < > vesselin.bontc...@yandex.com> napisala je: >>  18.07.2015, 01:45, "Michael Niedermayer" : >>  > On Thu, Jul 16, 2015 at 03:57:26AM +0300, Vesselin Bontchev wrote: >>  >> + // extracted from libAAX_SDK.so and

Re: [FFmpeg-devel] FFmpeg/MPlayer/rtmpdump possibly searching for a new server and hosting

2015-07-18 Thread compn
On Sat, 18 Jul 2015 04:19:15 +0200 Michael Niedermayer wrote: > On Fri, Jul 17, 2015 at 08:04:37PM -0400, Ronald S. Bultje wrote: > > Hi, > > > > On Fri, Jul 17, 2015 at 7:20 PM, Kieran Kunhya > > wrote: > > > > > On 17 July 2015 at 22:00, Michael Niedermayer > > > wrote: > > > > On Fri, Jul

[FFmpeg-devel] [PATCH v6] Add support for Audible AAX (and AAX+) files

2015-07-18 Thread Vesselin Bontchev
Thanks for all the feedback. VesselinFrom 99d97f2d1f0a62fb75ba9af4c20edaa59f02bb51 Mon Sep 17 00:00:00 2001 From: Vesselin Bontchev Date: Sat, 11 Jul 2015 18:02:47 + Subject: [PATCH] Add support for Audible AAX (and AAX+) files --- doc/general.texi | 2 + doc/muxers.texi| 7 +++ l

Re: [FFmpeg-devel] [PATCH]Rename FF_CODEC_PROPERTY_* as AV_CODEC_PROPERTY_*

2015-07-18 Thread Michael Niedermayer
On Fri, Jul 17, 2015 at 12:27:40AM +0200, Carl Eugen Hoyos wrote: > Hi! > > I am not really happy with attached patch as most defines in avcodec.h > use the FF_ prefix. > > Please comment, Carl Eugen > doc/APIchanges |4 > libavcodec/avcodec.h |4 ++-- > libavcodec/h264.

Re: [FFmpeg-devel] [PATCH v5] Add support for Audible AAX (and AAX+) files

2015-07-18 Thread Vesselin Bontchev
18.07.2015, 01:45, "Michael Niedermayer" : > On Thu, Jul 16, 2015 at 03:57:26AM +0300, Vesselin Bontchev wrote: >>  + // extracted from libAAX_SDK.so and AAXSDKWin.dll files! > >>  + uint8_t fixed_key[] = { 0x77, 0x21, 0x4d, 0x4b, 0x19, 0x6a, 0x87, 0xcd, >>  + 0x52, 0x00, 0x45, 0xfd, 0x20, 0xa5, 0x

Re: [FFmpeg-devel] [PATCH v5] Add support for Audible AAX (and AAX+) files

2015-07-18 Thread Paul B Mahol
Dana 18. 7. 2015. 11:46 osoba "Vesselin Bontchev" < vesselin.bontc...@yandex.com> napisala je: > > 18.07.2015, 01:45, "Michael Niedermayer" : > > On Thu, Jul 16, 2015 at 03:57:26AM +0300, Vesselin Bontchev wrote: > >> + // extracted from libAAX_SDK.so and AAXSDKWin.dll files! > > > >> + uint8_t f

Re: [FFmpeg-devel] [PATCH] [RFC] avformat/async: support filling with a background thread.

2015-07-18 Thread Zhang Rui
2015-07-17 21:52 GMT+08:00 Michael Niedermayer : > On Fri, Jul 17, 2015 at 12:00:57PM +0800, Zhang Rui wrote: >> 2015-07-16 22:00 GMT+08:00 Michael Niedermayer : >> > On Thu, Jul 16, 2015 at 03:04:42PM +0800, Zhang Rui wrote: >> >> --- >> >> configure| 1 + >> >> libavformat/Make

Re: [FFmpeg-devel] FFmpeg/MPlayer/rtmpdump possibly searching for a new server and hosting

2015-07-18 Thread libnova
Hi, If it helps anyone, just to clarify, we offer that the OVH server is contracted to the ffmpeg group name, not ours, in an account over the control of the community, not libnova. We'll just pay it for 2 years. Regards, AG. Antonio Guillermo Martínez Largo Libnova, SL Paseo de la Castellan