Re: [libav-devel] [kinda PATCH] imc: support mode 1

2013-07-11 Thread Luca Barbato
On 07/11/2013 07:07 AM, Kostya Shishkov wrote: --- I don't have samples for it so it's rather theoretical. --- libavcodec/imc.c | 151 -- 1 file changed, 102 insertions(+), 49 deletions(-) This +for (i = 0; i BANDS; i++) {

[libav-devel] [PATCH] ac3dec: Increment channel pointers only once per channel

2013-07-11 Thread Martin Storsjö
If the channel mapping map multiple output channels to one input channel, we should only increment the actual pointer once. Cc: libav-sta...@libav.org --- libavcodec/ac3dec.c |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libavcodec/ac3dec.c b/libavcodec/ac3dec.c

[libav-devel] [PATCH] ac3dec: Consistently use AC3_BLOCK_SIZE and sizeof

2013-07-11 Thread Martin Storsjö
--- This makes the code slightly more understandable to newcomers, at least to me. --- libavcodec/ac3dec.c |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libavcodec/ac3dec.c b/libavcodec/ac3dec.c index 01da328..fdaa4cb 100644 --- a/libavcodec/ac3dec.c +++

Re: [libav-devel] [PATCH] ac3dec: Increment channel pointers only once per channel

2013-07-11 Thread Luca Barbato
On 07/11/2013 03:36 PM, Martin Storsjö wrote: If the channel mapping map multiple output channels to one input channel, we should only increment the actual pointer once. Cc: libav-sta...@libav.org --- libavcodec/ac3dec.c |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)

Re: [libav-devel] [PATCH] ac3dec: Consistently use AC3_BLOCK_SIZE and sizeof

2013-07-11 Thread Luca Barbato
On 07/11/2013 03:42 PM, Martin Storsjö wrote: --- This makes the code slightly more understandable to newcomers, at least to me. --- libavcodec/ac3dec.c |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Agreed. ___ libav-devel

Re: [libav-devel] [PATCH] ac3dec: Increment channel pointers only once per channel

2013-07-11 Thread Martin Storsjö
On Thu, 11 Jul 2013, Luca Barbato wrote: On 07/11/2013 03:36 PM, Martin Storsjö wrote: If the channel mapping map multiple output channels to one input channel, we should only increment the actual pointer once. Cc: libav-sta...@libav.org --- libavcodec/ac3dec.c |6 +++--- 1 file changed,

[libav-devel] [PATCH] configure: Check for support for labels in the inline assembly

2013-07-11 Thread Martin Storsjö
Use this for enabling the ppc timer.h implementation only on assemblers that support labels in the inline assembly. --- configure |3 +++ libavutil/ppc/timer.h |6 ++ 2 files changed, 9 insertions(+) diff --git a/configure b/configure index e1edbe6..0e6b450 100755 ---

Re: [libav-devel] [PATCH] configure: Check for support for labels in the inline assembly

2013-07-11 Thread Diego Biurrun
Check for support of ..? On 2013-07-11 16:23, Martin Storsjö wrote: --- a/configure +++ b/configure @@ -3405,6 +3406,8 @@ unsigned int endian = 'B' 24 | 'I' 16 | 'G' 8 | 'E'; EOF od -t x1 $TMPO | grep -q '42 *49 *47 *45' enable bigendian +check_inline_asm inline_asm_labels '1:\n' +

Re: [libav-devel] [PATCH] configure: Check for support for labels in the inline assembly

2013-07-11 Thread Martin Storsjö
On Thu, 11 Jul 2013, Diego Biurrun wrote: Check for support of ..? I'd say 'support for' is just as correct, so I'm keeping it like this. (I also checked a few dictionaries and didn't found anything telling me otherwise.) On 2013-07-11 16:23, Martin Storsjö wrote: --- a/configure +++

Re: [libav-devel] [PATCH] configure: Check for support for labels in the inline assembly

2013-07-11 Thread Diego Biurrun
On 2013-07-11 17:24, Martin Storsjö wrote: On Thu, 11 Jul 2013, Diego Biurrun wrote: On 2013-07-11 16:23, Martin Storsjö wrote: --- a/configure +++ b/configure @@ -3405,6 +3406,8 @@ unsigned int endian = 'B' 24 | 'I' 16 | 'G' 8 | 'E'; EOF od -t x1 $TMPO | grep -q '42 *49 *47 *45'

[libav-devel] Invitation to VideoLAN Dev Days 2013

2013-07-11 Thread Jean-Baptiste Kempf
My fellow geeks and friends, We would like to invite you to join us for the VideoLAN Dev Days 2013 This technical conference about open source multimedia, will see developers from VLC, libav, FFmpeg, x264, Phonon, DVBlast, PulseAudio, KDE, Gnome, Xiph, handbrake, tomahawk and other projects

Re: [libav-devel] Invitation to VideoLAN Dev Days 2013

2013-07-11 Thread Diego Biurrun
On 2013-07-11 18:06, Jean-Baptiste Kempf wrote: My fellow geeks and friends, We would like to invite you to join us for the VideoLAN Dev Days 2013 Yay, looking forward to it! Thanks for the invitation! Diego ___ libav-devel mailing list

Re: [libav-devel] [PATCH 2/2] dca: Report the current limits in the downmixing capabilities

2013-07-11 Thread Martin Storsjö
On Wed, 10 Jul 2013, Luca Barbato wrote: Reported-by: Mateusz j00ru Jurczyk and Gynvael Coldwind CC: libav-sta...@libav.org --- libavcodec/dcadec.c | 6 ++ 1 file changed, 6 insertions(+) Perhaps s/Report/Respect/ in the commit subject? diff --git a/libavcodec/dcadec.c

Re: [libav-devel] [PATCH] build: Skip FATE dependency check when making certain targets

2013-07-11 Thread Martin Storsjö
On Tue, 28 May 2013, Diego Biurrun wrote: On 2013-05-27 00:18, Martin Storsjö wrote: On Mon, 27 May 2013, Martin Storsjö wrote: From: Diego Biurrun di...@biurrun.de During each make run, the build system checks that any specified dependencies do actually exist, to prevent typos and other

[libav-devel] [PATCH] build: Skip FATE dependency check when making certain targets

2013-07-11 Thread Martin Storsjö
From: Diego Biurrun di...@biurrun.de During each make run, the build system checks that any specified dependencies do actually exist, to prevent typos and other errors from fouling up correct dependency settings. However, it also causes make to trip up when new components have been added to the

Re: [libav-devel] [PATCH] build: Skip FATE dependency check when making certain targets

2013-07-11 Thread Diego Biurrun
On 2013-07-11 20:57, Martin Storsjö wrote: On Tue, 28 May 2013, Diego Biurrun wrote: On 2013-05-27 00:18, Martin Storsjö wrote: On Mon, 27 May 2013, Martin Storsjö wrote: From: Diego Biurrun di...@biurrun.de During each make run, the build system checks that any specified dependencies do

Re: [libav-devel] Invitation to VideoLAN Dev Days 2013

2013-07-11 Thread Luca Barbato
On 07/11/2013 06:32 PM, Diego Biurrun wrote: On 2013-07-11 18:06, Jean-Baptiste Kempf wrote: My fellow geeks and friends, We would like to invite you to join us for the VideoLAN Dev Days 2013 Yay, looking forward to it! Thanks for the invitation! +1

Re: [libav-devel] [PATCH 2/2] dca: Report the current limits in the downmixing capabilities

2013-07-11 Thread Luca Barbato
On 07/11/2013 08:44 PM, Martin Storsjö wrote: On Wed, 10 Jul 2013, Luca Barbato wrote: Reported-by: Mateusz j00ru Jurczyk and Gynvael Coldwind CC: libav-sta...@libav.org --- libavcodec/dcadec.c | 6 ++ 1 file changed, 6 insertions(+) Perhaps s/Report/Respect/ in the commit subject?