[libav-devel] [PATCH] g2meet: Fix a regression with rgb cursors

2013-09-25 Thread Martin Storsjö
From: Michael Niedermayer michae...@gmx.at Commit b1e46988 broke rgb cursors. --- libavcodec/g2meet.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/g2meet.c b/libavcodec/g2meet.c index 1bbac2d..e07ecac 100644 --- a/libavcodec/g2meet.c +++ b/libavcodec/g2meet.c

Re: [libav-devel] [PATCH] g2meet: Fix a regression with rgb cursors

2013-09-25 Thread Kostya Shishkov
On Wed, Sep 25, 2013 at 11:14:58AM +0300, Martin Storsjö wrote: From: Michael Niedermayer michae...@gmx.at Commit b1e46988 broke rgb cursors. --- libavcodec/g2meet.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/g2meet.c b/libavcodec/g2meet.c index

Re: [libav-devel] [PATCH] g2meet: Fix a regression with rgb cursors

2013-09-25 Thread Martin Storsjö
On Wed, 25 Sep 2013, Kostya Shishkov wrote: On Wed, Sep 25, 2013 at 11:14:58AM +0300, Martin Storsjö wrote: From: Michael Niedermayer michae...@gmx.at Commit b1e46988 broke rgb cursors. --- libavcodec/g2meet.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[libav-devel] [PATCH] g2meet: Respect cursor_stride properly everywhere

2013-09-25 Thread Martin Storsjö
From: Kostya Shishkov kostya.shish...@gmail.com This fixes a regression with rgb cursors since b1e46988. --- libavcodec/g2meet.c |3 +++ 1 file changed, 3 insertions(+) diff --git a/libavcodec/g2meet.c b/libavcodec/g2meet.c index 1bbac2d..e7743e7 100644 --- a/libavcodec/g2meet.c +++

Re: [libav-devel] [PATCH] g2meet: Respect cursor_stride properly everywhere

2013-09-25 Thread Luca Barbato
On 25/09/13 11:10, Martin Storsjö wrote: From: Kostya Shishkov kostya.shish...@gmail.com This fixes a regression with rgb cursors since b1e46988. --- libavcodec/g2meet.c |3 +++ 1 file changed, 3 insertions(+) Doesn't seem dangerous. lu

[libav-devel] [PATCH] Add support for multichannel ATRAC3+ to OpenMG demuxer

2013-09-25 Thread Maxim Polijakowski
Hi crews, the attached patch adds support for multichannel ATRAC3+ streams to the OpenMG demuxer. It also sets the currently wrong ATRAC3+ frame size to right one of 2048 samples. The patch for ATRAC3+ codec itself is in preparation and will be posted shortly... Please review and commit.

Re: [libav-devel] [PATCH] Add support for multichannel ATRAC3+ to OpenMG demuxer

2013-09-25 Thread Diego Biurrun
On Wed, Sep 25, 2013 at 12:36:50PM +0200, Maxim Polijakowski wrote: the attached patch adds support for multichannel ATRAC3+ streams to the OpenMG demuxer. It also sets the currently wrong ATRAC3+ frame size to right one of 2048 samples. The patch for ATRAC3+ codec itself is in preparation

Re: [libav-devel] [PATCH] configure: Add a generic catch for all -W options with msvc/icl

2013-09-25 Thread Diego Biurrun
On Tue, Sep 24, 2013 at 11:18:10AM -0400, Alex Smith wrote: The latest icl silently ignores certain -W* options. This is effectively a nop on older icl/msvc versions. --- a/configure +++ b/configure @@ -2390,9 +2390,9 @@ msvc_common_flags(){ # In addition to specifying certain

Re: [libav-devel] [PATCH] configure: Add a generic catch for all -W options with msvc/icl

2013-09-25 Thread Alex Smith
On Wed, Sep 25, 2013 at 7:00 AM, Diego Biurrun di...@biurrun.de wrote: On Tue, Sep 24, 2013 at 11:18:10AM -0400, Alex Smith wrote: The latest icl silently ignores certain -W* options. This is effectively a nop on older icl/msvc versions. --- a/configure +++ b/configure @@ -2390,9 +2390,9 @@

Re: [libav-devel] [PATCH 07/12] dv: Add a guard to not overread the ppcm array

2013-09-25 Thread Luca Barbato
On 07/09/13 10:35, Luca Barbato wrote: On 27/08/13 14:15, Luca Barbato wrote: Reported-by: Mateusz j00ru Jurczyk and Gynvael Coldwind CC: libav-sta...@libav.org --- libavformat/dv.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) The avi patches below this one had been ignored

Re: [libav-devel] [PATCH 02/12] lxf: Support version 1 files

2013-09-25 Thread Luca Barbato
On 07/09/13 10:32, Luca Barbato wrote: On 27/08/13 14:15, Luca Barbato wrote: From: Reimar Döffinger reimar.doeffin...@gmx.de In the end the lxf set had been agreed to be merged by Martin some time ago on irc, I left it around and posted more than once as heads up and nobody so far

Re: [libav-devel] [PATCH 11/12] ea: skip video track if the time base is not set

2013-09-25 Thread Luca Barbato
On 27/08/13 14:15, Luca Barbato wrote: Reported-by: Mateusz j00ru Jurczyk and Gynvael Coldwind CC: libav-sta...@libav.org --- libavformat/electronicarts.c | 8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) This one needs rework, apparently some valid samples do provide

[libav-devel] [PATCH 1/3] tls: Add options for verifying the peer certificate

2013-09-25 Thread Martin Storsjö
A file containing the trusted CA certificates needs to be supplied via the ca_file AVOption, unless the TLS library has got a system default file/database set up. This doesn't check the hostname of the peer certificate with openssl, which requires a non-trivial piece of code for manually matching

[libav-devel] [PATCH 2/3] http: Pass options through to the nested protocol

2013-09-25 Thread Martin Storsjö
When passing a dict to the nested protocol, it will consume the used options from it, so a separate copy needs to be used when reopening the connection multiple times. --- Unchanged since the last round, when it was OK'd by Anton. --- libavformat/http.c | 34 ++

[libav-devel] [PATCH 3/3] tls: Add support for listen mode

2013-09-25 Thread Martin Storsjö
Also add options for specifying a certificate and key, which can be used both when operating as client and as server. Partially based on a patch by Peter Ross. --- Renamed the options to include _file, and added docs. --- doc/protocols.texi | 13 + libavformat/tls.c | 48

Re: [libav-devel] [PATCH] vda_h264: Use av_buffer to manage buffers

2013-09-25 Thread Luca Barbato
On 17/09/13 17:18, Luca Barbato wrote: I'm not sure what would be the best approach, the free/nonfree flag was dropped since most people disliked it. Actually I'd purposefully break the vda support compatibility and mark it as experimental/transient. The initialization function should not work