[libav-devel] [PATCH 1/2] download: fix spelling and sentence structure

2015-03-14 Thread Sean McGovern
--- src/download |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/download b/src/download index d73dad3..5a7c322 100644 --- a/src/download +++ b/src/download @@ -3,7 +3,7 @@ small Libav has always been a very bexperimental/b and developer-driven project. It is

[libav-devel] [PATCH 2/2] Announce new releases: 11.3, 10.6, 9.18 and 0.8.17

2015-03-14 Thread Sean McGovern
--- src/download | 88 +- src/index| 40 +- src/news | 31 + 3 files changed, 95 insertions(+), 64 deletions(-) diff --git a/src/download b/src/download index 5a7c322..fb1ca0e 100644

Re: [libav-devel] [PATCH 1/2] sctp: Update to match tcp

2015-03-14 Thread Luca Barbato
On 13/03/15 22:39, Martin Storsjö wrote: On Fri, 13 Mar 2015, Luca Barbato wrote: Use AVOption and fallback over multiple addresses --- libavformat/sctp.c | 80 -- 1 file changed, 60 insertions(+), 20 deletions(-) Looks ok, but can you split

[libav-devel] [PATCH 1/2] xcbgrab: Do not assume the non shm image data is always available

2015-03-14 Thread Luca Barbato
--- libavdevice/xcbgrab.c | 16 ++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/libavdevice/xcbgrab.c b/libavdevice/xcbgrab.c index 2435c9c..cdc83c4 100644 --- a/libavdevice/xcbgrab.c +++ b/libavdevice/xcbgrab.c @@ -144,13 +144,25 @@ static int

[libav-devel] [PATCH 2/2] xcbgrab: Validate the capture area

2015-03-14 Thread Luca Barbato
And notify why the capture is impossible. --- libavdevice/xcbgrab.c | 13 +++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/libavdevice/xcbgrab.c b/libavdevice/xcbgrab.c index cdc83c4..2a40905 100644 --- a/libavdevice/xcbgrab.c +++ b/libavdevice/xcbgrab.c @@ -527,8

[libav-devel] [PATCH] cmdutils: fix compiler warnings enumerated type mixed with another type

2015-03-14 Thread Himangi Saraogi
--- There is a third warning at 1220, not sure of a possible fix. cmdutils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmdutils.c b/cmdutils.c index e01ad24..141b3d1 100644 --- a/cmdutils.c +++ b/cmdutils.c @@ -63,8 +63,8 @@ static const int this_year = 2015; void

[libav-devel] [PATCH] libswscale: fix compiler warnings enumerated type mixed with another type

2015-03-14 Thread Himangi Saraogi
--- libswscale/swscale_unscaled.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libswscale/swscale_unscaled.c b/libswscale/swscale_unscaled.c index bfcc1a3..699aa60 100644 --- a/libswscale/swscale_unscaled.c +++ b/libswscale/swscale_unscaled.c @@ -1168,7 +1168,7 @@ void

Re: [libav-devel] [PATCH 1/2] xcbgrab: Do not assume the non shm image data is always available

2015-03-14 Thread Nicolas George
Le quartidi 24 ventôse, an CCXXIII, Luca Barbato a écrit : +if (e) { +av_log(s, AV_LOG_ERROR, + Cannot get the image data + event_error: response_type:%u error_code:%u + sequence:%u resource_id:%u minor_code:%u major_code:%u.\n, +

Re: [libav-devel] [PATCH 1/2] sctp: Update to match tcp

2015-03-14 Thread Luca Barbato
On 14/03/15 11:52, Luca Barbato wrote: On 13/03/15 22:39, Martin Storsjö wrote: On Fri, 13 Mar 2015, Luca Barbato wrote: Use AVOption and fallback over multiple addresses --- libavformat/sctp.c | 80 -- 1 file changed, 60 insertions(+), 20

Re: [libav-devel] [PATCH] libswscale: fix compiler warnings enumerated type mixed with another type

2015-03-14 Thread Luca Barbato
On 14/03/15 16:52, Himangi Saraogi wrote: --- libswscale/swscale_unscaled.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libswscale/swscale_unscaled.c b/libswscale/swscale_unscaled.c index bfcc1a3..699aa60 100644 --- a/libswscale/swscale_unscaled.c +++

Re: [libav-devel] [PATCH] cmdutils: fix compiler warnings enumerated type mixed with another type

2015-03-14 Thread Luca Barbato
On 14/03/15 16:42, Himangi Saraogi wrote: --- There is a third warning at 1220, not sure of a possible fix. cmdutils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmdutils.c b/cmdutils.c index e01ad24..141b3d1 100644 --- a/cmdutils.c +++ b/cmdutils.c @@ -63,8

Re: [libav-devel] [PATCH] cmdutils: fix compiler warnings enumerated type mixed with another type

2015-03-14 Thread Anton Khirnov
Quoting Himangi Saraogi (2015-03-14 16:42:26) --- There is a third warning at 1220, not sure of a possible fix. cmdutils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmdutils.c b/cmdutils.c index e01ad24..141b3d1 100644 --- a/cmdutils.c +++ b/cmdutils.c @@

[libav-devel] [PATCH] avformat: fix compiler warning integer conversion resulted in a change of sign

2015-03-14 Thread Himangi Saraogi
--- libavformat/ac3dec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/ac3dec.c b/libavformat/ac3dec.c index 4ceffa5..38a2a8f 100644 --- a/libavformat/ac3dec.c +++ b/libavformat/ac3dec.c @@ -61,7 +61,7 @@ static int ac3_eac3_probe(AVProbeData *p, enum AVCodecID

Re: [libav-devel] [PATCH] cmdutils: fix compiler warnings enumerated type mixed with another type

2015-03-14 Thread Himangi Saraogi
On 14 March 2015 at 21:36, Anton Khirnov an...@khirnov.net wrote: Quoting Himangi Saraogi (2015-03-14 16:42:26) --- There is a third warning at 1220, not sure of a possible fix. cmdutils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmdutils.c

Re: [libav-devel] [PATCH] avformat: fix compiler warning integer conversion resulted in a change of sign

2015-03-14 Thread Luca Barbato
On 14/03/15 17:11, Himangi Saraogi wrote: --- libavformat/ac3dec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/ac3dec.c b/libavformat/ac3dec.c index 4ceffa5..38a2a8f 100644 --- a/libavformat/ac3dec.c +++ b/libavformat/ac3dec.c @@ -61,7 +61,7 @@ static int

[libav-devel] [PATCH] avformat: fix compiler warning integer conversion resulted in a change of sign

2015-03-14 Thread Himangi Saraogi
--- libavformat/ac3dec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/ac3dec.c b/libavformat/ac3dec.c index 4ceffa5..5079bc4 100644 --- a/libavformat/ac3dec.c +++ b/libavformat/ac3dec.c @@ -61,7 +61,7 @@ static int ac3_eac3_probe(AVProbeData *p, enum AVCodecID