Re: [libav-devel] [PATCH] xcb: Add all the libraries to the link line explicitly

2016-10-30 Thread Vittorio Giovara
On Sun, Oct 30, 2016 at 12:46 PM, Luca Barbato wrote: > Avoid an underlink issue on recent distributions. An "underlink"? You mean linking less libs than necessary? > CC: libav-sta...@libav.org > --- > configure | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) >

Re: [libav-devel] [PATCH 2/2] matroskaenc: don't write private data for AAC streams

2016-10-30 Thread James Almer
On 10/30/2016 4:48 PM, Hendrik Leppkes wrote: > On Sun, Oct 30, 2016 at 8:45 PM, James Almer wrote: >> On 10/30/2016 4:20 PM, Hendrik Leppkes wrote: >>> On Sun, Oct 30, 2016 at 8:08 PM, James Almer wrote: The spec says it should be void.

Re: [libav-devel] [PATCH 2/2] matroskaenc: don't write private data for AAC streams

2016-10-30 Thread Hendrik Leppkes
On Sun, Oct 30, 2016 at 8:45 PM, James Almer wrote: > On 10/30/2016 4:20 PM, Hendrik Leppkes wrote: >> On Sun, Oct 30, 2016 at 8:08 PM, James Almer wrote: >>> The spec says it should be void. >>> >>> Signed-off-by: James Almer >>> --- >>>

Re: [libav-devel] [PATCH 5/5] rtmpproto: Don't include a client version in the unencrypted C1 handshake

2016-10-30 Thread Martin Storsjö
On Sun, 30 Oct 2016, Luca Barbato wrote: On 14/10/2016 15:38, Martin Storsjö wrote: According to the public RTMP specification, these 4 bytes should be zero. librtmp in server mode assumes that the RTMPE (FP9) handshake is used if these bytes are nonzero. --- libavformat/rtmpproto.c | 5

Re: [libav-devel] [PATCH 2/2] matroskaenc: don't write private data for AAC streams

2016-10-30 Thread James Almer
On 10/30/2016 4:20 PM, Hendrik Leppkes wrote: > On Sun, Oct 30, 2016 at 8:08 PM, James Almer wrote: >> The spec says it should be void. >> >> Signed-off-by: James Almer >> --- >> libavformat/matroskaenc.c | 2 ++ >> 1 file changed, 2 insertions(+) >> >>

Re: [libav-devel] [PATCH] openssl: Allow newer TLS versions than TLSv1

2016-10-30 Thread Martin Storsjö
On Sun, 30 Oct 2016, Mark Thompson wrote: The use of TLSv1_*_method() disallows newer protocol versions; instead use SSLv23_*_method() and then explicitly disable the deprecated protocol versions which should not be supported. --- libavformat/tls_openssl.c | 7 ++- 1 file changed, 6

Re: [libav-devel] [PATCH 2/2] matroskaenc: don't write private data for AAC streams

2016-10-30 Thread Hendrik Leppkes
On Sun, Oct 30, 2016 at 8:08 PM, James Almer wrote: > The spec says it should be void. > > Signed-off-by: James Almer > --- > libavformat/matroskaenc.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/libavformat/matroskaenc.c

[libav-devel] [PATCH 1/2] matroskaenc: fix muxing AAC streams when using aac_adtstoasc bsf

2016-10-30 Thread James Almer
aac_adtstoasc makes the aac extradata available only after the first packet is filtered, and as packet side data. Assume extradata will be available as part of the first packet if avpriv_mpeg4audio_get_config() fails the first time due to missing extradata and reserve space for the

[libav-devel] [PATCH 2/2] matroskaenc: don't write private data for AAC streams

2016-10-30 Thread James Almer
The spec says it should be void. Signed-off-by: James Almer --- libavformat/matroskaenc.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavformat/matroskaenc.c b/libavformat/matroskaenc.c index aa9d381..c3a9702 100644 --- a/libavformat/matroskaenc.c +++

[libav-devel] [PATCH] xcb: Add all the libraries to the link line explicitly

2016-10-30 Thread Luca Barbato
Avoid an underlink issue on recent distributions. CC: libav-sta...@libav.org --- configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index c7185e3..8c2b4fd 100755 --- a/configure +++ b/configure @@ -4786,8 +4786,8 @@ if enabled libxcb; then

[libav-devel] [PATCH] openssl: Allow newer TLS versions than TLSv1

2016-10-30 Thread Mark Thompson
The use of TLSv1_*_method() disallows newer protocol versions; instead use SSLv23_*_method() and then explicitly disable the deprecated protocol versions which should not be supported. --- libavformat/tls_openssl.c | 7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git

Re: [libav-devel] [PATCH] qsv: Be informative when reporting that no data has been consumed

2016-10-30 Thread Mark Thompson
On 29/10/16 20:08, Luca Barbato wrote: > --- > libavcodec/qsvdec.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libavcodec/qsvdec.c b/libavcodec/qsvdec.c > index e19eba5..81c63b1 100644 > --- a/libavcodec/qsvdec.c > +++ b/libavcodec/qsvdec.c > @@ -305,7 +305,7 @@

[libav-devel] [PATCH] Revert "rtmpproto: Don't include a client version in the unencrypted C1 handshake"

2016-10-30 Thread Luca Barbato
It causes a signature mismatch with some versions of Wowza. This reverts commit 7d8d726be7dc46343ab1c98c339c1ed44bcb07c1. --- libavformat/rtmpproto.c | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libavformat/rtmpproto.c b/libavformat/rtmpproto.c index 1ffc79a..0097841

Re: [libav-devel] [PATCH 5/5] rtmpproto: Don't include a client version in the unencrypted C1 handshake

2016-10-30 Thread Luca Barbato
On 14/10/2016 15:38, Martin Storsjö wrote: > According to the public RTMP specification, these 4 bytes should > be zero. > > librtmp in server mode assumes that the RTMPE (FP9) handshake is > used if these bytes are nonzero. > --- > libavformat/rtmpproto.c | 5 + > 1 file changed, 1