[libav-devel] [PATCH 2/2] configure: Remove the explicit disabling of ffserver

2011-03-23 Thread Martin Storsjö
It is automatically disabled on both mingw and dos due to the lack of fork. --- configure |3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/configure b/configure index f7c9ff7..776eccc 100755 --- a/configure +++ b/configure @@ -2410,7 +2410,6 @@ case $target_os in

Re: [libav-devel] [PATCH] rtsp: Don't use a locale dependent format string

2011-03-23 Thread Ronald S. Bultje
Hi, On Wed, Mar 23, 2011 at 5:36 AM, Luca Barbato lu_z...@gentoo.org wrote: On 03/23/2011 09:26 AM, Martin Storsjö wrote: In this particular case, we aren't ever printing anything else than 0.000 anyway. Patch ok =) Queued. Ronald ___ libav-devel

Re: [libav-devel] [PATCH] also subtract preroll when reading ASF simple index object

2011-03-23 Thread Vladimir Pantelic
Måns Rullgård wrote: Vladimir Pantelicvlado...@gmail.com writes: Måns Rullgård wrote: Vladimir Pantelicvlado...@gmail.com writes: From 057af717394ec2352d52fa8c1d96f66262da423c Mon Sep 17 00:00:00 2001 From: Vladimir Pantelicvlado...@gmail.com Date: Thu, 17 Mar 2011 22:34:52

[libav-devel] [PATCH 1/2] Disable 'attribute foo ignored' warnings from icc

2011-03-23 Thread Mans Rullgard
ICC lies about the version of gcc it emulates, which results in unsupported attributes sometimes being used. The warning is an annoyance and should be disabled. Signed-off-by: Mans Rullgard m...@mansr.com --- configure |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git

Re: [libav-devel] [PATCH] Add support for sndio to libavdevice

2011-03-23 Thread Diego Biurrun
On Tue, Mar 22, 2011 at 08:24:44PM -0400, Brad wrote: On Tue, Mar 22, 2011 at 08:53:21AM +0100, Benoit Fouet wrote: The usage is wrong, it should be av_freep(s-buffer) No other remarks from me. Updated diff. --- a/configure +++ b/configure @@ -1096,6 +1096,7 @@ HAVE_LIST=

[libav-devel] [PATCH] avio: cosmetics - nicer vertical alignment.

2011-03-23 Thread Anton Khirnov
--- libavformat/avio.h |2 +- libavformat/avio_internal.h |2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/avio.h b/libavformat/avio.h index 753fa0c..d11c398 100644 --- a/libavformat/avio.h +++ b/libavformat/avio.h @@ -416,7 +416,7 @@

Re: [libav-devel] [PATCH] Add support for sndio to libavdevice

2011-03-23 Thread Brad
On Wed, 23 Mar 2011, 07:48:23 EDT, Diego Biurrun di...@biurrun.de wrote: @@ -1433,6 +1434,8 @@ jack_indev_deps=jack_jack_h oss_outdev_deps_any=soundcard_h sys_soundcard_h +sndio_indev_deps=sndio_h +sndio_outdev_deps=sndio_h v4l_indev_deps=linux_videodev_h alphabetical order Can you

Re: [libav-devel] [PATCH] matroskaenc: remove a variable that's unused after bc17bd9.

2011-03-23 Thread Ronald S. Bultje
Hi, On Wed, Mar 23, 2011 at 6:24 AM, Kostya kostya.shish...@gmail.com wrote: On Wed, Mar 23, 2011 at 11:09:34AM +0100, Anton Khirnov wrote: ---  libavformat/matroskaenc.c |    1 -  1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/libavformat/matroskaenc.c

Re: [libav-devel] [PATCH] also subtract preroll when reading ASF simple index object

2011-03-23 Thread Vladimir Pantelic
Måns Rullgård wrote: Vladimir Pantelicvlado...@gmail.com writes: Måns Rullgård wrote: Vladimir Pantelicvlado...@gmail.com writes: Måns Rullgård wrote: Vladimir Pantelicvlado...@gmail.comwrites: From 057af717394ec2352d52fa8c1d96f66262da423c Mon Sep 17 00:00:00 2001

Re: [libav-devel] [PATCH] also subtract preroll when reading ASF simple index object

2011-03-23 Thread Måns Rullgård
Vladimir Pantelic vlado...@gmail.com writes: Måns Rullgård wrote: Vladimir Pantelicvlado...@gmail.com writes: Måns Rullgård wrote: Vladimir Pantelicvlado...@gmail.com writes: Måns Rullgård wrote: Vladimir Pantelicvlado...@gmail.comwrites: From

Re: [libav-devel] [PATCH] Fix an infinite loop when RoQ encoded

2011-03-23 Thread Vitor Sessak
On 03/22/2011 11:31 PM, Ronald S. Bultje wrote: Hi, On Tue, Mar 22, 2011 at 4:34 PM, Benjamin Larssonba...@ludd.ltu.se wrote: On 03/20/2011 06:33 PM, Vitor Sessak wrote: $subj Patch ok. Pushed, sorry for the slight delay, Vitor. No problem and thanks. -Vitor

[libav-devel] [PATCH] mpeg12.c: disable threading for mpeg2 field picture mode.

2011-03-23 Thread Ronald S. Bultje
Fixes make THREADS=2 fate-mpeg2-field-enc. --- libavcodec/mpeg12.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/libavcodec/mpeg12.c b/libavcodec/mpeg12.c index c60826b..b77688c 100644 --- a/libavcodec/mpeg12.c +++ b/libavcodec/mpeg12.c @@ -2359,6 +2359,7 @@ static int

Re: [libav-devel] [PATCH] mpeg12.c: disable threading for mpeg2 field picture mode.

2011-03-23 Thread Luca Barbato
On 03/23/2011 09:49 PM, Ronald S. Bultje wrote: Fixes make THREADS=2 fate-mpeg2-field-enc. --- Ok, might be useful adding a TODO comment as well lu -- Luca Barbato Gentoo/linux http://dev.gentoo.org/~lu_zero ___ libav-devel mailing list

Re: [libav-devel] [PATCH] Add support for sndio to libavdevice

2011-03-23 Thread Brad
On Wed, Mar 23, 2011 at 12:48:23PM +0100, Diego Biurrun wrote: You should also #include stdint.h, you use uint8_t. The sndio.h header already brings in the appropriate header. Updated diff. From 1caf5e149f8802c706fd21e1607a0d154ece11ac Mon Sep 17 00:00:00 2001 From: Brad Smith

[libav-devel] [PATCH] aacenc: fix the side calculation in search_for_ms

2011-03-23 Thread Young Han Lee
--- libavcodec/aaccoder.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) Hi, I think it was a bug in search_for_ms. Side spectral bin is usually calculated from (L + R)/2 In the this function, sce0-coeffs[start+w2*128+i] was not updated as mid spectral bin but it was in the