Re: [libav-devel] [PATCH 1/4] lavc: Add private API to manipulate AVPacketList

2014-03-14 Thread Luca Barbato
On 14/03/14 02:37, James Almer wrote: On 13/08/13 11:49 PM, Luca Barbato wrote: --- libavcodec/avcodec.h | 5 + libavcodec/avpacket.c | 56 ++ libavcodec/internal.h | 36 libavformat/avformat.h | 6

Re: [libav-devel] [PATCH] [RFC] configure: set 'cc' as default compiler

2014-03-14 Thread Luca Barbato
On 14/03/14 01:51, Vittorio Giovara wrote: --- cc seems to work on osx and linux, it would allow skipping --cc=clang at configure on modern osx, but I'm not sure of the overall impact. You might discuss about changing the default for macosx, not the global one. lu

[libav-devel] dca xll: Hybrid rice coding

2014-03-14 Thread Niels Möller
I've now got to the hybrid rice coding. One should first read a bunch of sample indices, of nBits4SamplLoci each, which need special handling later. However, I can't find any definition of nBits4SamplLoci in the spec. The number of samples is included in the xll header, and decoded as (quoting

Re: [libav-devel] [PATCH] [RFC] configure: set 'cc' as default compiler

2014-03-14 Thread Diego Biurrun
On Thu, Mar 13, 2014 at 09:59:28PM -0400, Sean McGovern wrote: On Thu, Mar 13, 2014 at 8:51 PM, Vittorio Giovara vittorio.giov...@gmail.com wrote: --- cc seems to work on osx and linux, it would allow skipping --cc=clang at configure on modern osx, but I'm not sure of the overall impact.

Re: [libav-devel] [PATCH] [RFC] configure: set 'cc' as default compiler

2014-03-14 Thread Hendrik Leppkes
On Fri, Mar 14, 2014 at 1:51 AM, Vittorio Giovara vittorio.giov...@gmail.com wrote: --- cc seems to work on osx and linux, it would allow skipping --cc=clang at configure on modern osx, but I'm not sure of the overall impact. Ideas? Vittorio configure | 4 ++-- 1 file changed, 2

Re: [libav-devel] [PATCH] Announce Releases 10_beta2, 9.12 and 0.8.11

2014-03-14 Thread Diego Biurrun
On Thu, Mar 13, 2014 at 09:58:23PM -0400, Reinhard Tartler wrote: --- a/src/download +++ b/src/download @@ -201,50 +201,50 @@ and much faster bug fixes such as additional features and security patches. p -10 beta 1 has been released on 2014-02-17. It is the latest beta snapshot from

Re: [libav-devel] [PATCH 2/5] avformat: Rename internal function

2014-03-14 Thread Diego Biurrun
On Thu, Mar 13, 2014 at 10:35:40PM +0100, Luca Barbato wrote: It is generic enough to be reused for other similar coma-separated fields. com_m_a Diego ___ libav-devel mailing list libav-devel@libav.org

[libav-devel] [PATCH] arm: dsputil: Add missing config.h #include for restrict keyword

2014-03-14 Thread Diego Biurrun
--- libavcodec/arm/dsputil_init_armv6.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavcodec/arm/dsputil_init_armv6.c b/libavcodec/arm/dsputil_init_armv6.c index 357ae1e..ce64a85 100644 --- a/libavcodec/arm/dsputil_init_armv6.c +++ b/libavcodec/arm/dsputil_init_armv6.c @@ -20,6 +20,7

Re: [libav-devel] [PATCH] arm: dsputil: Add missing config.h #include for restrict keyword

2014-03-14 Thread Martin Storsjö
On Fri, 14 Mar 2014, Diego Biurrun wrote: --- libavcodec/arm/dsputil_init_armv6.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavcodec/arm/dsputil_init_armv6.c b/libavcodec/arm/dsputil_init_armv6.c index 357ae1e..ce64a85 100644 --- a/libavcodec/arm/dsputil_init_armv6.c +++

Re: [libav-devel] [PATCH] arm: dsputil: Add missing config.h #include for restrict keyword

2014-03-14 Thread Diego Biurrun
On Fri, Mar 14, 2014 at 12:26:05PM +0200, Martin Storsjö wrote: On Fri, 14 Mar 2014, Diego Biurrun wrote: --- a/libavcodec/arm/dsputil_init_armv6.c +++ b/libavcodec/arm/dsputil_init_armv6.c @@ -20,6 +20,7 @@ +#include config.h #include libavutil/attributes.h #include libavcodec/avcodec.h

Re: [libav-devel] [PATCH 1/3] x86/synth_filter: add synth_filter_sse

2014-03-14 Thread Christophe Gisquet
Hi, 2014-03-04 3:25 GMT+01:00 James Almer jamr...@gmail.com: -INIT_XMM sse2 +%macro SETZERO 1 +%if cpuflag(sse2) +pxor %1, %1 +%else +xorps %1, %1, %1 +%endif +%endmacro + +%macro SHUF 2 +%if cpuflag(sse2) +pshufd%1, %2, q0123 +%else +mova

Re: [libav-devel] [PATCH 08/11] sgi: decode images with 4 channels at 8 and 16 bits

2014-03-14 Thread Tim Walker
On 13 Mar 2014, at 16:27, Vittorio Giovara vittorio.giov...@gmail.com wrote: From: Carl Eugen Hoyos ceho...@ag.or.at --- Changelog | 1 + libavcodec/sgidec.c | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Changelog b/Changelog index 0f52fd0..4ff92cb

Re: [libav-devel] [PATCH 2/3] x86/synth_filter: add synth_filter_avx

2014-03-14 Thread Christophe Gisquet
Hi, 2014-03-04 3:25 GMT+01:00 James Almer jamr...@gmail.com: 150 cycles in ff_synth_filter_inner_avx Can't test nor evaluate (I don't know avx/fma3) this, but it passed fate-dts so this should be OK. The speedup sounds pretty good to me, even if more could have been expected. There's one final

Re: [libav-devel] [PATCH 3/3] x86/synth_filter: add synth_filter_fma3

2014-03-14 Thread Christophe Gisquet
Hi, 2014-03-04 3:25 GMT+01:00 James Almer jamr...@gmail.com: snip Don't know fma3 but this is straightforward replacement of mul+add by a mac instruction. If the avx code is ok, I don't see how this wouldn't. -- Christophe ___ libav-devel mailing list

Re: [libav-devel] [PATCH] [RFC] configure: set 'cc' as default compiler

2014-03-14 Thread Tim Walker
On 14 Mar 2014, at 01:51, Vittorio Giovara vittorio.giov...@gmail.com wrote: --- cc seems to work on osx and linux, it would allow skipping --cc=clang at configure on modern osx, but I'm not sure of the overall impact. Ideas? Vittorio Latest Xcode has gcc in

Re: [libav-devel] [PATCH 09/11] sgi: encode images with 4 channel at 8 and 16 bits

2014-03-14 Thread Tim Walker
On 13 Mar 2014, at 16:27, Vittorio Giovara vittorio.giov...@gmail.com wrote: --- Changelog | 2 +- libavcodec/sgienc.c | 54 ++--- 2 files changed, 48 insertions(+), 8 deletions(-) diff --git a/Changelog b/Changelog index

Re: [libav-devel] [PATCH 2/3] codec_desc: add missing .long_name

2014-03-14 Thread Tim Walker
On 14 Mar 2014, at 01:17, Vittorio Giovara vittorio.giov...@gmail.com wrote: --- libavcodec/codec_desc.c | 4 1 file changed, 4 insertions(+) diff --git a/libavcodec/codec_desc.c b/libavcodec/codec_desc.c index 3578a09..c94fe2b 100644 --- a/libavcodec/codec_desc.c +++

Re: [libav-devel] [PATCH] [RFC] configure: set 'cc' as default compiler

2014-03-14 Thread Vittorio Giovara
On Friday, March 14, 2014, Tim Walker tdskywal...@gmail.com wrote: On 14 Mar 2014, at 01:51, Vittorio Giovara vittorio.giov...@gmail.comjavascript:; wrote: --- cc seems to work on osx and linux, it would allow skipping --cc=clang at configure on modern osx, but I'm not sure of the

Re: [libav-devel] [PATCH] arm: dsputil: Add missing config.h #include for restrict keyword

2014-03-14 Thread Martin Storsjö
On Fri, 14 Mar 2014, Diego Biurrun wrote: On Fri, Mar 14, 2014 at 12:26:05PM +0200, Martin Storsjö wrote: On Fri, 14 Mar 2014, Diego Biurrun wrote: --- a/libavcodec/arm/dsputil_init_armv6.c +++ b/libavcodec/arm/dsputil_init_armv6.c @@ -20,6 +20,7 @@ +#include config.h #include

Re: [libav-devel] [PATCH] [RFC] configure: set 'cc' as default compiler

2014-03-14 Thread Tim Walker
On 14 Mar 2014, at 12:46, Vittorio Giovara vittorio.giov...@gmail.com wrote: On Friday, March 14, 2014, Tim Walker tdskywal...@gmail.com wrote: On 14 Mar 2014, at 01:51, Vittorio Giovara vittorio.giov...@gmail.comjavascript:; wrote: --- cc seems to work on osx and linux, it would allow

Re: [libav-devel] [PATCH] Announce Releases 10_beta2, 9.12 and 0.8.11

2014-03-14 Thread Reinhard Tartler
thanks for the review, pushed On Fri, Mar 14, 2014 at 6:03 AM, Diego Biurrun di...@biurrun.de wrote: On Thu, Mar 13, 2014 at 09:58:23PM -0400, Reinhard Tartler wrote: --- a/src/download +++ b/src/download @@ -201,50 +201,50 @@ and much faster bug fixes such as additional features and

Re: [libav-devel] [libav-commits] build: Use pkg-config for openjpeg

2014-03-14 Thread Reinhard Tartler
On Mon, Mar 10, 2014 at 5:47 AM, Anton Khirnov an...@khirnov.net wrote: On Sat, 8 Mar 2014 19:54:23 +0100 (CET), Pierre Lejeune g...@libav.org wrote: Module: libav Branch: master Commit: 0e0cefb22216a4b6684a30a50cb5973400dc59f2 Author:Pierre Lejeune superhe...@gmail.com Committer:

Re: [libav-devel] [libav-commits] build: Use pkg-config for openjpeg

2014-03-14 Thread Tim Walker
On 14 Mar 2014, at 13:08, Reinhard Tartler siret...@gmail.com wrote: I think it is even worse: In debian stable, and all released versions of ubuntu, there is no pkg-config file for libopenjpeg at all. I'm therefore inclined to revert to non-pkg-config detection for release/10. What do

Re: [libav-devel] [libav-commits] build: Use pkg-config for openjpeg

2014-03-14 Thread Luca Barbato
On 14/03/14 13:10, Tim Walker wrote: On 14 Mar 2014, at 13:08, Reinhard Tartler siret...@gmail.com wrote: I think it is even worse: In debian stable, and all released versions of ubuntu, there is no pkg-config file for libopenjpeg at all. I'm therefore inclined to revert to non-pkg-config

Re: [libav-devel] [PATCH 2/5] avformat: Rename internal function

2014-03-14 Thread Luca Barbato
On 14/03/14 11:05, Diego Biurrun wrote: On Thu, Mar 13, 2014 at 10:35:40PM +0100, Luca Barbato wrote: It is generic enough to be reused for other similar coma-separated fields. com_m_a I should always enable the spellchecker in git commits, sorry =/ lu

[libav-devel] [PATCH] arm: dsputil: Drop restrict keyword from add_pixels_clamped_armv6 prototype

2014-03-14 Thread Diego Biurrun
The function is assigned to a function pointer that does not have the restrict keyword for that parameter. This fixes compilation for MSVC builds that don't recognize restrict. --- libavcodec/arm/dsputil_init_armv6.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git

Re: [libav-devel] [PATCH] arm: dsputil: Drop restrict keyword from add_pixels_clamped_armv6 prototype

2014-03-14 Thread Martin Storsjö
On Fri, 14 Mar 2014, Diego Biurrun wrote: The function is assigned to a function pointer that does not have the restrict keyword for that parameter. This fixes compilation for MSVC builds that don't recognize restrict. , broken since ed9625eb62 --- libavcodec/arm/dsputil_init_armv6.c | 3

[libav-devel] [PATCH 065/132] nuv: Reuse the DSPContext from RTJpegContext

2014-03-14 Thread Diego Biurrun
There is no point in populating NuvContext with another DSPContext. --- libavcodec/nuv.c| 12 libavcodec/rtjpeg.c | 11 --- libavcodec/rtjpeg.h | 5 ++--- 3 files changed, 10 insertions(+), 18 deletions(-) diff --git a/libavcodec/nuv.c b/libavcodec/nuv.c index

[libav-devel] [PATCH 062/132] dsputil: Conditionally compile dsputil code on all architectures

2014-03-14 Thread Diego Biurrun
--- libavcodec/bfin/Makefile | 16 libavcodec/ppc/Makefile | 8 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/libavcodec/bfin/Makefile b/libavcodec/bfin/Makefile index 193f8e6..efdcbfc 100644 --- a/libavcodec/bfin/Makefile +++

[libav-devel] [PATCH 069/132] dsputil: Refactor duplicated CALL_2X_PIXELS / PIXELS16 macros

2014-03-14 Thread Diego Biurrun
--- libavcodec/arm/hpeldsp_init_arm.c | 2 +- libavcodec/dsputil.h | 2 -- libavcodec/dsputil_template.c | 2 ++ libavcodec/hpel_template.c | 2 ++ libavcodec/hpeldsp_template.c | 2 ++ libavcodec/{rnd_avg.h = pixels.h} | 35

[libav-devel] [PATCH 061/132] dsputil: Propagate bit depth information to all (sub)init functions

2014-03-14 Thread Diego Biurrun
This avoids recalculating the value over and over again. --- libavcodec/arm/dsputil_arm.h | 9 ++--- libavcodec/arm/dsputil_init_arm.c | 11 ++- libavcodec/arm/dsputil_init_armv5te.c | 5 +++-- libavcodec/arm/dsputil_init_armv6.c | 20 +--

[libav-devel] [PATCH 067/132] imgconvert: Move ff_deinterlace_line_*_mmx declarations out of dsputil

2014-03-14 Thread Diego Biurrun
--- libavcodec/imgconvert.c | 4 libavcodec/imgconvert.h | 18 ++ libavcodec/x86/dsputil_x86.h | 12 3 files changed, 18 insertions(+), 16 deletions(-) diff --git a/libavcodec/imgconvert.c b/libavcodec/imgconvert.c index 3f5d035..3f65c5b 100644 ---

[libav-devel] [PATCH 064/132] dsputil: Use correct type in me_cmp_func function pointer

2014-03-14 Thread Diego Biurrun
--- libavcodec/arm/dsputil_init_armv6.c | 11 +++--- libavcodec/bfin/dsputil_init.c | 23 +++-- libavcodec/dsputil.c| 67 + libavcodec/dsputil.h| 3 +- libavcodec/motion_est.c | 4 ++-

[libav-devel] [PATCH 063/132] build: Group general components separate from de/encoders in arch Makefiles

2014-03-14 Thread Diego Biurrun
This is in line with how the top-level libavcodec Makefile is structured. --- If preferred, I could add some comments to structure the separation, as seen in the top-level Makefile. libavcodec/aarch64/Makefile | 1 + libavcodec/arm/Makefile | 37 -

[libav-devel] [PATCH 068/132] dsputil: Move ff_zigzag_direct and ff_crop_tab declarations to mathops.h

2014-03-14 Thread Diego Biurrun
--- libavcodec/bfin/vp3dsp_init.c | 2 +- libavcodec/bit_depth_template.c | 1 + libavcodec/cavsdsp.c| 2 ++ libavcodec/dsputil.h| 7 +-- libavcodec/imgconvert.c | 2 +- libavcodec/indeo4data.h | 3 ++- libavcodec/mathops.h| 4

[libav-devel] [PATCH 066/132] x86: dsputil: Move inline assembly macros to a separate header

2014-03-14 Thread Diego Biurrun
--- libavcodec/x86/dsputil_mmx.c | 1 + libavcodec/x86/dsputil_qns_template.c | 2 + libavcodec/x86/dsputil_x86.h | 76 -- libavcodec/x86/fpel_mmx.c | 1 + libavcodec/x86/hpeldsp_mmx.c | 1 + libavcodec/x86/inline_asm.h

Re: [libav-devel] [PATCH 1/4] Silicon Graphics RLE 8-bit video decoder

2014-03-14 Thread Peter Ross
On Thu, Mar 13, 2014 at 06:57:24PM +0100, Vittorio Giovara wrote: From: Peter Ross pr...@xvid.org Signed-off-by: Vittorio Giovara vittorio.giov...@gmail.com --- I could find no sample for this decoder but it is needed for the following MV patch; if anyone has a sample please share it so I

Re: [libav-devel] [PATCH] [RFC] configure: set 'cc' as default compiler

2014-03-14 Thread Vittorio Giovara
On Fri, Mar 14, 2014 at 1:02 PM, Tim Walker tdskywal...@gmail.com wrote: On 14 Mar 2014, at 12:46, Vittorio Giovara vittorio.giov...@gmail.com wrote: On Friday, March 14, 2014, Tim Walker tdskywal...@gmail.com wrote: On 14 Mar 2014, at 01:51, Vittorio Giovara

Re: [libav-devel] [PATCH 1/4] Silicon Graphics RLE 8-bit video decoder

2014-03-14 Thread Vittorio Giovara
On Fri, Mar 14, 2014 at 9:25 AM, Peter Ross pr...@xvid.org wrote: On Thu, Mar 13, 2014 at 06:57:24PM +0100, Vittorio Giovara wrote: From: Peter Ross pr...@xvid.org Signed-off-by: Vittorio Giovara vittorio.giov...@gmail.com --- I could find no sample for this decoder but it is needed for the

[libav-devel] [PATCH] fate: add tests for SGI demuxer and decoders

2014-03-14 Thread Vittorio Giovara
--- Thanks again to Peter for providing the samples. Vittorio tests/fate/video.mak | 9 + tests/ref/fate/mv-mvc1 | 26 ++ tests/ref/fate/mv-mvc2 | 31 +++ tests/ref/fate/mv-sgirle | 32 4 files

Re: [libav-devel] [PATCH 062/132] dsputil: Conditionally compile dsputil code on all architectures

2014-03-14 Thread Luca Barbato
On 14/03/14 13:42, Diego Biurrun wrote: --- libavcodec/bfin/Makefile | 16 libavcodec/ppc/Makefile | 8 2 files changed, 12 insertions(+), 12 deletions(-) Ok. ___ libav-devel mailing list libav-devel@libav.org

Re: [libav-devel] [PATCH 063/132] build: Group general components separate from de/encoders in arch Makefiles

2014-03-14 Thread Luca Barbato
On 14/03/14 13:42, Diego Biurrun wrote: This is in line with how the top-level libavcodec Makefile is structured. --- If preferred, I could add some comments to structure the separation, as seen in the top-level Makefile. It is the same for me. lu

Re: [libav-devel] [PATCH 064/132] dsputil: Use correct type in me_cmp_func function pointer

2014-03-14 Thread Luca Barbato
On 14/03/14 13:42, Diego Biurrun wrote: --- libavcodec/arm/dsputil_init_armv6.c | 11 +++--- libavcodec/bfin/dsputil_init.c | 23 +++-- libavcodec/dsputil.c| 67 + libavcodec/dsputil.h| 3 +-

Re: [libav-devel] [PATCH 065/132] nuv: Reuse the DSPContext from RTJpegContext

2014-03-14 Thread Luca Barbato
On 14/03/14 13:42, Diego Biurrun wrote: There is no point in populating NuvContext with another DSPContext. The subject and text should mention you are changing the RTJpegContext. lu ___ libav-devel mailing list libav-devel@libav.org

Re: [libav-devel] [PATCH 067/132] imgconvert: Move ff_deinterlace_line_*_mmx declarations out of dsputil

2014-03-14 Thread Luca Barbato
On 14/03/14 13:42, Diego Biurrun wrote: --- libavcodec/imgconvert.c | 4 libavcodec/imgconvert.h | 18 ++ libavcodec/x86/dsputil_x86.h | 12 3 files changed, 18 insertions(+), 16 deletions(-) Ok. ___

Re: [libav-devel] [PATCH 068/132] dsputil: Move ff_zigzag_direct and ff_crop_tab declarations to mathops.h

2014-03-14 Thread Luca Barbato
On 14/03/14 13:42, Diego Biurrun wrote: --- libavcodec/bfin/vp3dsp_init.c | 2 +- libavcodec/bit_depth_template.c | 1 + libavcodec/cavsdsp.c| 2 ++ libavcodec/dsputil.h| 7 +-- libavcodec/imgconvert.c | 2 +- libavcodec/indeo4data.h | 3 ++-

Re: [libav-devel] [PATCH 069/132] dsputil: Refactor duplicated CALL_2X_PIXELS / PIXELS16 macros

2014-03-14 Thread Luca Barbato
On 14/03/14 13:42, Diego Biurrun wrote: --- libavcodec/arm/hpeldsp_init_arm.c | 2 +- libavcodec/dsputil.h | 2 -- libavcodec/dsputil_template.c | 2 ++ libavcodec/hpel_template.c | 2 ++ libavcodec/hpeldsp_template.c | 2 ++ libavcodec/{rnd_avg.h =

Re: [libav-devel] [PATCH] [RFC] configure: set 'cc' as default compiler

2014-03-14 Thread Luca Barbato
On 14/03/14 13:58, Vittorio Giovara wrote: Yeah but it gets configured with older includes (--prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1) I'd accept the change only for the macosx system. Globally some OS provide a default cc that isn't

Re: [libav-devel] [PATCH] fate: add tests for SGI demuxer and decoders

2014-03-14 Thread Diego Biurrun
On Fri, Mar 14, 2014 at 02:28:11PM +0100, Vittorio Giovara wrote: --- Thanks again to Peter for providing the samples. Vittorio tests/fate/video.mak | 9 + tests/ref/fate/mv-mvc1 | 26 ++ tests/ref/fate/mv-mvc2 | 31 +++

[libav-devel] [PATCH] fate: add SGI tests

2014-03-14 Thread Vittorio Giovara
--- Alphabetical order, additional test and unix-y names. Vittorio tests/fate/image.mak | 32 tests/ref/fate/sgi-gray | 2 ++ tests/ref/fate/sgi-gray16 | 2 ++ tests/ref/fate/sgi-rgb24 | 2 ++ tests/ref/fate/sgi-rgb24-rle | 2 ++

Re: [libav-devel] [PATCH] fate: add SGI tests

2014-03-14 Thread Diego Biurrun
On Fri, Mar 14, 2014 at 03:24:14PM +0100, Vittorio Giovara wrote: --- Alphabetical order, additional test and unix-y names. Vittorio tests/fate/image.mak | 32 tests/ref/fate/sgi-gray | 2 ++ tests/ref/fate/sgi-gray16 | 2 ++

Re: [libav-devel] [PATCH 2/2] fate: add fate-xface test

2014-03-14 Thread Diego Biurrun
On Thu, Mar 13, 2014 at 11:49:38PM +0100, Vittorio Giovara wrote: From: Stefano Sabatini stefa...@gmail.com Signed-off-by: Vittorio Giovara vittorio.giov...@gmail.com --- tests/fate/image.mak | 3 +++ tests/ref/fate/xface | 2 ++ 2 files changed, 5 insertions(+) create mode 100644

[libav-devel] [PATCH] http: allow to seek to the end of a file

2014-03-14 Thread Vladimir Pantelic
$subject From 40591ddc0f25992fe1accbe0fc33afc2cd1cd1d1 Mon Sep 17 00:00:00 2001 From: Vladimir Pantelic vlado...@gmail.com Date: Fri, 14 Mar 2014 15:25:19 +0100 Subject: [PATCH] http: allow to seek to the end of a file Seeking to the end of the file is a valid operation but not supported by HTTP

Re: [libav-devel] [PATCH 058/132] ppc: dsputil: Merge some declarations and initializations

2014-03-14 Thread Vittorio Giovara
On Thu, Mar 13, 2014 at 4:50 PM, Diego Biurrun di...@biurrun.de wrote: --- libavcodec/ppc/dsputil_altivec.c | 403 ++- libavcodec/ppc/dsputil_ppc.c | 9 +- libavcodec/ppc/fdct_altivec.c| 3 +- libavcodec/ppc/gmc_altivec.c | 31 ++-

Re: [libav-devel] [PATCH 1/2] X-Face image decoder and encoder

2014-03-14 Thread Diego Biurrun
On Thu, Mar 13, 2014 at 11:49:37PM +0100, Vittorio Giovara wrote: --- /dev/null +++ b/libavcodec/xface.h @@ -0,0 +1,106 @@ + +/** + * Portable, very large unsigned integer arithmetic is needed. + * Implementation uses arrays of WORDs. + */ +typedef struct { +int nb_words; +

Re: [libav-devel] [PATCH] http: allow to seek to the end of a file

2014-03-14 Thread Luca Barbato
On 14/03/14 15:29, Vladimir Pantelic wrote: $subject Fine for me, I'd split it in two (the top hunk to fix seek size requests and the second for seeking to the end). I'll push myself soon. lu ___ libav-devel mailing list libav-devel@libav.org

Re: [libav-devel] [PATCH] configure: Remove dcbzl check for e500v1 and e500v2 architectures

2014-03-14 Thread Diego Biurrun
On Thu, Mar 13, 2014 at 11:58:37PM +0100, Vittorio Giovara wrote: --- a/configure +++ b/configure @@ -3709,7 +3709,8 @@ elif enabled ppc; then -check_inline_asm dcbzl 'dcbzl 0, %0 :: r(0)' +[ $cpu != e500 -a $cpu != e500v2 ] + check_inline_asm dcbzl'dcbzl 0, %0 ::

Re: [libav-devel] Use mime types when probing formats

2014-03-14 Thread Luca Barbato
On 13/03/14 22:35, Luca Barbato wrote: This should eventually solve the problem Giovanni reported. ping (this should land in release/10) ___ libav-devel mailing list libav-devel@libav.org https://lists.libav.org/mailman/listinfo/libav-devel

[libav-devel] [PATCH] X-Face image decoder and encoder

2014-03-14 Thread Vittorio Giovara
From: Stefano Sabatini stefa...@gmail.com Based on libcompface code by James Ashton james.ash...@anu.edu.au. Relicensed to LGPL with the author's consent. Signed-off-by: Vittorio Giovara vittorio.giov...@gmail.com --- Amended as requested. Vittorio Changelog | 1 +

Re: [libav-devel] [PATCH 10/11] sgi: decode 16bit RLE images

2014-03-14 Thread Vittorio Giovara
On Thu, Mar 13, 2014 at 5:01 PM, Kostya Shishkov kostya.shish...@gmail.com wrote: On Thu, Mar 13, 2014 at 04:27:28PM +0100, Vittorio Giovara wrote: --- Changelog | 1 + libavcodec/sgidec.c | 56 +++-- 2 files changed, 51

[libav-devel] [PATCH] OpenEXR decoder

2014-03-14 Thread Vittorio Giovara
Additional fixes and enhancements by Gonzalo Garramuno, Nicolas George, Paul B Mahol and Michael Niedermayer. Signed-off-by: Vittorio Giovara vittorio.giov...@gmail.com --- Wrong fixup, sorry, here is the updated version. Vittorio Changelog |1 + configure |1 +

Re: [libav-devel] [PATCH] OpenEXR decoder

2014-03-14 Thread Diego Biurrun
On Fri, Mar 14, 2014 at 04:25:57PM +0100, Vittorio Giovara wrote: Additional fixes and enhancements by Gonzalo Garramuno, Nicolas George, Changelog |1 + configure |1 + doc/general.texi |2 + libavcodec/Makefile|1 +

[libav-devel] [PATCH] OpenEXR decoder

2014-03-14 Thread Vittorio Giovara
Additional fixes and enhancements by Gonzalo Garramuno, Nicolas George, Paul B Mahol and Michael Niedermayer. Signed-off-by: Vittorio Giovara vittorio.giov...@gmail.com --- Added codec_desc. Vittorio Changelog |1 + configure |1 + doc/general.texi|

Re: [libav-devel] [PATCH 1/3] codec_desc: KR formatting cosmetics

2014-03-14 Thread Diego Biurrun
On Fri, Mar 14, 2014 at 01:17:36AM +0100, Vittorio Giovara wrote: --- libavcodec/codec_desc.c | 7 +++ 1 file changed, 3 insertions(+), 4 deletions(-) If that is all the file needs - LGTM. Diego ___ libav-devel mailing list

Re: [libav-devel] [PATCH 2/3] codec_desc: add missing .long_name

2014-03-14 Thread Diego Biurrun
On Fri, Mar 14, 2014 at 01:17:37AM +0100, Vittorio Giovara wrote: --- a/libavcodec/codec_desc.c +++ b/libavcodec/codec_desc.c @@ -1791,6 +1794,7 @@ static const AVCodecDescriptor codec_descriptors[] = { .id= AV_CODEC_ID_DVAUDIO, .type = AVMEDIA_TYPE_AUDIO,

Re: [libav-devel] [PATCH 3/3] codec_desc: group image codecs together

2014-03-14 Thread Diego Biurrun
On Fri, Mar 14, 2014 at 01:17:38AM +0100, Vittorio Giovara wrote: --- libavcodec/codec_desc.c | 342 1 file changed, 172 insertions(+), 170 deletions(-) LGTM Diego ___ libav-devel mailing list

Re: [libav-devel] [PATCH 3/5] avformat: Use the mime type information in input probe

2014-03-14 Thread Luca Barbato
On 14/03/14 16:42, wm4 wrote: On Thu, 13 Mar 2014 22:35:41 +0100 Luca Barbato lu_z...@gentoo.org wrote: It should provide a quicker guess for elementary streams provided by http. @@ -212,6 +213,9 @@ AVInputFormat *av_probe_input_format2(AVProbeData *pd, int is_opened, if

Re: [libav-devel] [PATCH 3/5] avformat: Use the mime type information in input probe

2014-03-14 Thread wm4
On Thu, 13 Mar 2014 22:35:41 +0100 Luca Barbato lu_z...@gentoo.org wrote: It should provide a quicker guess for elementary streams provided by http. @@ -212,6 +213,9 @@ AVInputFormat *av_probe_input_format2(AVProbeData *pd, int is_opened, if (av_match_ext(lpd.filename,

Re: [libav-devel] [PATCH 3/5] avformat: Use the mime type information in input probe

2014-03-14 Thread wm4
On Fri, 14 Mar 2014 17:06:17 +0100 Luca Barbato lu_z...@gentoo.org wrote: On 14/03/14 16:42, wm4 wrote: On Thu, 13 Mar 2014 22:35:41 +0100 Luca Barbato lu_z...@gentoo.org wrote: It should provide a quicker guess for elementary streams provided by http. @@ -212,6 +213,9 @@

[libav-devel] [PATCH] configure: ppc: Disable ldbrx instruction by default

2014-03-14 Thread Diego Biurrun
Only enable it for CPUs that support it. This restores the behavior prior to 7a650caf. --- .. some FATE stations are complaining .. configure | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure b/configure index ecccd21..2534fae 100755 --- a/configure +++ b/configure @@ -3135,6

Re: [libav-devel] [PATCH 3/5] avformat: Use the mime type information in input probe

2014-03-14 Thread Luca Barbato
On 14/03/14 17:18, wm4 wrote: It is enough to trust it as a file extension, I could amend the patch to have a + 1 over the SCORE_EXTENSION. That might work. For me as API user, it's more interesting to know which format the mime type matches, though. Maybe add a separate public function

Re: [libav-devel] [PATCH] configure: ppc: Disable ldbrx instruction by default

2014-03-14 Thread Luca Barbato
On 14/03/14 17:24, Diego Biurrun wrote: Only enable it for CPUs that support it. This restores the behavior prior to 7a650caf. --- .. some FATE stations are complaining .. configure | 2 ++ 1 file changed, 2 insertions(+) Ok. (thanks FATE!)

[libav-devel] [PATCH] codec_desc: update dvaudio tag

2014-03-14 Thread Vittorio Giovara
--- libavcodec/codec_desc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/codec_desc.c b/libavcodec/codec_desc.c index 433590e..2ad5326 100644 --- a/libavcodec/codec_desc.c +++ b/libavcodec/codec_desc.c @@ -1796,7 +1796,7 @@ static const AVCodecDescriptor

[libav-devel] [PATCH 3/8] raw: nut: Support rgba64 encoding

2014-03-14 Thread Vittorio Giovara
From: Carl Eugen Hoyos ceho...@ag.or.at --- libavcodec/raw.c | 4 libavformat/nut.c | 4 2 files changed, 8 insertions(+) diff --git a/libavcodec/raw.c b/libavcodec/raw.c index 4ccc6cc..6b3 100644 --- a/libavcodec/raw.c +++ b/libavcodec/raw.c @@ -84,6 +84,10 @@ const

[libav-devel] [PATCH 1/8] png: KR formatting cosmetics

2014-03-14 Thread Vittorio Giovara
--- libavcodec/png.c| 6 +- libavcodec/pngdec.c | 221 +++- libavcodec/pngdsp.c | 9 ++- libavcodec/pngenc.c | 158 +++-- 4 files changed, 209 insertions(+), 185 deletions(-) diff --git a/libavcodec/png.c

[libav-devel] [PATCH 2/8] png: Support rgb48 and rgba64 encoding

2014-03-14 Thread Vittorio Giovara
From: Carl Eugen Hoyos ceho...@ag.or.at --- libavcodec/pngenc.c | 10 +- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/libavcodec/pngenc.c b/libavcodec/pngenc.c index ccc5f7d..a6015ff 100644 --- a/libavcodec/pngenc.c +++ b/libavcodec/pngenc.c @@ -245,6 +245,14 @@ static

[libav-devel] [PATCH 4/8] libopenjpeg: KR formatting cosmetics

2014-03-14 Thread Vittorio Giovara
--- libavcodec/libopenjpegdec.c | 156 ++-- libavcodec/libopenjpegenc.c | 28 2 files changed, 92 insertions(+), 92 deletions(-) diff --git a/libavcodec/libopenjpegdec.c b/libavcodec/libopenjpegdec.c index d6fca33..0643e11 100644 ---

[libav-devel] [PATCH 5/8] libopenjpeg: Support rgba64 encoding

2014-03-14 Thread Vittorio Giovara
From: Carl Eugen Hoyos ceho...@ag.or.at --- libavcodec/libopenjpegenc.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavcodec/libopenjpegenc.c b/libavcodec/libopenjpegenc.c index e78a669..e98d550 100644 --- a/libavcodec/libopenjpegenc.c +++ b/libavcodec/libopenjpegenc.c @@ -96,6

[libav-devel] [PATCH 8/8] tiff: Support rgba encoding

2014-03-14 Thread Vittorio Giovara
From: Carl Eugen Hoyos ceho...@ag.or.at --- libavcodec/tiffenc.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavcodec/tiffenc.c b/libavcodec/tiffenc.c index 4cbc517..f12e0f4 100644 --- a/libavcodec/tiffenc.c +++ b/libavcodec/tiffenc.c @@ -230,6 +230,7 @@ static int

[libav-devel] [PATCH 7/8] img2: add j2c file extension

2014-03-14 Thread Vittorio Giovara
From: Jean First jeanfi...@gmail.com Some applications use the j2c extension for jpeg2000 codestream files. --- libavformat/img2.c| 1 + libavformat/img2enc.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/libavformat/img2.c b/libavformat/img2.c index 493df6d..ed59281

[libav-devel] [PATCH 6/8] libopenjpeg: Support decoding RGBA64

2014-03-14 Thread Vittorio Giovara
--- libavcodec/libopenjpegdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/libopenjpegdec.c b/libavcodec/libopenjpegdec.c index 0643e11..63a2030 100644 --- a/libavcodec/libopenjpegdec.c +++ b/libavcodec/libopenjpegdec.c @@ -43,7 +43,7 @@ // pix_fmts with lower

[libav-devel] [PATCH 3/3] X-Bitmap decoder

2014-03-14 Thread Vittorio Giovara
From: Paul B Mahol one...@gmail.com --- I don't think having a test for this format is necessary... No version bump anywhere, right? Vittorio Changelog | 1 + doc/general.texi | 2 +- libavcodec/Makefile| 1 + libavcodec/allcodecs.c | 2 +- libavcodec/xbmdec.c

[libav-devel] [PATCH 1/3] xbm: remove unused code

2014-03-14 Thread Vittorio Giovara
From: Paul B Mahol one...@gmail.com --- libavcodec/xbmenc.c | 19 --- 1 file changed, 19 deletions(-) diff --git a/libavcodec/xbmenc.c b/libavcodec/xbmenc.c index d6657dc..3650144 100644 --- a/libavcodec/xbmenc.c +++ b/libavcodec/xbmenc.c @@ -24,16 +24,6 @@ #include internal.h

[libav-devel] [PATCH 2/3] xbm: KR formatting cosmetics

2014-03-14 Thread Vittorio Giovara
--- libavcodec/xbmenc.c | 15 --- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/libavcodec/xbmenc.c b/libavcodec/xbmenc.c index 3650144..1afb6ee 100644 --- a/libavcodec/xbmenc.c +++ b/libavcodec/xbmenc.c @@ -58,11 +58,12 @@ static int xbm_encode_frame(AVCodecContext