[FFmpeg-devel] [PATCH 1/5] avfilter/formats: remove unused COPY_INT_LIST() macro

2015-03-15 Thread Clément Bœsch
This macro is unused since 247fa6c27c4589d0f7a427c520d782edbb6de060. --- libavfilter/formats.c | 12 1 file changed, 12 deletions(-) diff --git a/libavfilter/formats.c b/libavfilter/formats.c index f25328c..1fc7fa6 100644 --- a/libavfilter/formats.c +++ b/libavfilter/formats.c @@

[FFmpeg-devel] [PATCH 4/5] avfilter/formats: proper error handling in ff_set_common_*() functions

2015-03-15 Thread Clément Bœsch
--- libavfilter/formats.c | 45 - libavfilter/formats.h | 10 +- 2 files changed, 37 insertions(+), 18 deletions(-) diff --git a/libavfilter/formats.c b/libavfilter/formats.c index 6393416..4f9773b 100644 --- a/libavfilter/formats.c +++

[FFmpeg-devel] [PATCH 5/5] avfilter: handle error in query_formats() of a bunch of random video filters

2015-03-15 Thread Clément Bœsch
--- libavfilter/f_select.c | 9 - libavfilter/vf_codecview.c | 6 -- libavfilter/vf_colorbalance.c | 7 --- libavfilter/vf_colormatrix.c| 8 libavfilter/vf_curves.c | 6 -- libavfilter/vf_dctdnoiz.c | 6 --

[FFmpeg-devel] [PATCH 3/5] avfilter/formats: proper error handling in ff_channel_layouts_ref() and ff_formats_ref()

2015-03-15 Thread Clément Bœsch
Also make sure the allocation and its check are properly done. --- libavfilter/formats.c | 22 +++--- libavfilter/formats.h | 6 +++--- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/libavfilter/formats.c b/libavfilter/formats.c index 896ceeb..6393416 100644 ---

[FFmpeg-devel] [PATCH 2/5] avfilter/formats: use av_realloc_array in ADD_FORMAT()

2015-03-15 Thread Clément Bœsch
--- libavfilter/formats.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavfilter/formats.c b/libavfilter/formats.c index 1fc7fa6..896ceeb 100644 --- a/libavfilter/formats.c +++ b/libavfilter/formats.c @@ -308,8 +308,8 @@ do {

Re: [FFmpeg-devel] [PATCH] lavfi/eq: factorize code in process_command through a macro

2015-03-15 Thread Stefano Sabatini
On date Friday 2015-03-13 20:05:35 +0100, Michael Niedermayer encoded: On Fri, Mar 13, 2015 at 05:16:53PM +0100, Stefano Sabatini wrote: --- libavfilter/vf_eq.c | 56 ++--- 1 file changed, 15 insertions(+), 41 deletions(-) i would be

Re: [FFmpeg-devel] [PATCH] libavformat/mxfenc: write user comment metadata

2015-03-15 Thread Tomas Härdin
On Sat, 2015-03-14 at 17:59 -0700, Mark Reid wrote: --- libavformat/mxfenc.c | 66 +-- tests/ref/lavf/mxf| 6 ++--- tests/ref/lavf/mxf_d10| 2 +- tests/ref/lavf/mxf_opatom | 2 +- 4 files changed, 69 insertions(+), 7

Re: [FFmpeg-devel] [PATCH] avformat/mpegvideodec: use avpriv_find_start_code in mpegvideo_probe()

2015-03-15 Thread zhaoxiu.zeng
在 2015/3/15 20:38, Michael Niedermayer 写道: On Sun, Mar 15, 2015 at 04:46:22PM +0800, zhaoxiu.zeng wrote: From 60cdc9161881cdf86e428a0d6812785938ae6667 Mon Sep 17 00:00:00 2001 From: Zeng Zhaoxiu zhaoxiu.z...@gmail.com Date: Sun, 15 Mar 2015 11:56:53 +0800 Subject: [PATCH 2/7]

[FFmpeg-devel] [PATCH] avformat/avidec: use avpriv_find_start_code in avi_read_packet()

2015-03-15 Thread zhaoxiu.zeng
From 50cefc3b62bf45e16b858f5e414777afb1a9bd36 Mon Sep 17 00:00:00 2001 From: Zeng Zhaoxiu zhaoxiu.z...@gmail.com Date: Sun, 15 Mar 2015 11:54:13 +0800 Subject: [PATCH 1/7] avformat/avidec: use avpriv_find_start_code in avi_read_packet() Signed-off-by: Zeng Zhaoxiu zhaoxiu.z...@gmail.com ---

Re: [FFmpeg-devel] [PATCH 4/5] avfilter/formats: proper error handling in ff_set_common_*() functions

2015-03-15 Thread Stefano Sabatini
On date Sunday 2015-03-15 14:24:29 +0100, Clément Bœsch encoded: --- libavfilter/formats.c | 45 - libavfilter/formats.h | 10 +- 2 files changed, 37 insertions(+), 18 deletions(-) diff --git a/libavfilter/formats.c

Re: [FFmpeg-devel] [PATCH] avcodec/samidec: process more of the SAMI tags

2015-03-15 Thread Clément Bœsch
On Sun, Mar 15, 2015 at 05:28:15PM +0900, Won-woo Choi wrote: Made some changes to samidec so that it can process SAMI tags. Processes B and FONT(font face, color). --- libavcodec/samidec.c | 37 +++-- 1 file changed, 35 insertions(+), 2 deletions(-) diff

Re: [FFmpeg-devel] [PATCH 4/5] avfilter/formats: proper error handling in ff_set_common_*() functions

2015-03-15 Thread Clément Bœsch
On Sun, Mar 15, 2015 at 03:11:14PM +0100, Clément Bœsch wrote: On Sun, Mar 15, 2015 at 03:07:16PM +0100, Stefano Sabatini wrote: On date Sunday 2015-03-15 14:24:29 +0100, Clément Bœsch encoded: --- libavfilter/formats.c | 45 -

Re: [FFmpeg-devel] [PATCH] avformat/mpegvideodec: use avpriv_find_start_code in mpegvideo_probe()

2015-03-15 Thread Michael Niedermayer
On Sun, Mar 15, 2015 at 04:46:22PM +0800, zhaoxiu.zeng wrote: From 60cdc9161881cdf86e428a0d6812785938ae6667 Mon Sep 17 00:00:00 2001 From: Zeng Zhaoxiu zhaoxiu.z...@gmail.com Date: Sun, 15 Mar 2015 11:56:53 +0800 Subject: [PATCH 2/7] avformat/mpegvideodec: use avpriv_find_start_code in

Re: [FFmpeg-devel] [PATCH 1/5] avfilter/formats: remove unused COPY_INT_LIST() macro

2015-03-15 Thread Stefano Sabatini
On date Sunday 2015-03-15 14:24:26 +0100, Clément Bœsch encoded: This macro is unused since 247fa6c27c4589d0f7a427c520d782edbb6de060. --- libavfilter/formats.c | 12 1 file changed, 12 deletions(-) diff --git a/libavfilter/formats.c b/libavfilter/formats.c index

Re: [FFmpeg-devel] [PATCH 2/5] avfilter/formats: use av_realloc_array in ADD_FORMAT()

2015-03-15 Thread Stefano Sabatini
On date Sunday 2015-03-15 14:24:27 +0100, Clément Bœsch encoded: --- libavfilter/formats.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavfilter/formats.c b/libavfilter/formats.c index 1fc7fa6..896ceeb 100644 --- a/libavfilter/formats.c +++

Re: [FFmpeg-devel] [PATCH 3/5] avfilter/formats: proper error handling in ff_channel_layouts_ref() and ff_formats_ref()

2015-03-15 Thread Stefano Sabatini
On date Sunday 2015-03-15 14:24:28 +0100, Clément Bœsch encoded: Also make sure the allocation and its check are properly done. --- libavfilter/formats.c | 22 +++--- libavfilter/formats.h | 6 +++--- 2 files changed, 14 insertions(+), 14 deletions(-) LGTM, thanks. --

Re: [FFmpeg-devel] [PATCH] libavformat/mxfenc: write user comment metadata

2015-03-15 Thread Michael Niedermayer
On Sun, Mar 15, 2015 at 04:05:16PM +0100, Tomas Härdin wrote: On Sat, 2015-03-14 at 17:59 -0700, Mark Reid wrote: --- libavformat/mxfenc.c | 66 +-- tests/ref/lavf/mxf| 6 ++--- tests/ref/lavf/mxf_d10| 2 +-

Re: [FFmpeg-devel] [PATCH] avformat/avidec: use avpriv_find_start_code in avi_read_packet()

2015-03-15 Thread Michael Niedermayer
On Sun, Mar 15, 2015 at 04:38:27PM +0800, zhaoxiu.zeng wrote: From 50cefc3b62bf45e16b858f5e414777afb1a9bd36 Mon Sep 17 00:00:00 2001 From: Zeng Zhaoxiu zhaoxiu.z...@gmail.com Date: Sun, 15 Mar 2015 11:54:13 +0800 Subject: [PATCH 1/7] avformat/avidec: use avpriv_find_start_code in

Re: [FFmpeg-devel] [PATCH 4/5] avfilter/formats: proper error handling in ff_set_common_*() functions

2015-03-15 Thread Clément Bœsch
On Sun, Mar 15, 2015 at 03:07:16PM +0100, Stefano Sabatini wrote: On date Sunday 2015-03-15 14:24:29 +0100, Clément Bœsch encoded: --- libavfilter/formats.c | 45 - libavfilter/formats.h | 10 +- 2 files changed, 37 insertions(+), 18

[FFmpeg-devel] [PATCH] lavf/segment: do not set default value for segment_time option

2015-03-15 Thread Stefano Sabatini
Also allows a negative value to allow to never split the input. This changes the default behavior, to never split the input if an explicit value is not set. TODO: bump micro. --- doc/muxers.texi | 11 +++ libavformat/segment.c | 9 - 2 files changed, 11 insertions(+), 9

[FFmpeg-devel] [PATCH] avformat/cavsvideodec: use avpriv_find_start_code in cavsvideo_probe()

2015-03-15 Thread zhaoxiu.zeng
From 9a97b5559a8c4ea9a03560d59e1725b6c99d0960 Mon Sep 17 00:00:00 2001 From: Zeng Zhaoxiu zhaoxiu.z...@gmail.com Date: Sun, 15 Mar 2015 11:58:12 +0800 Subject: [PATCH 3/7] avformat/cavsvideodec: use avpriv_find_start_code in cavsvideo_probe() Signed-off-by: Zeng Zhaoxiu zhaoxiu.z...@gmail.com

[FFmpeg-devel] [PATCH] avformat/mpeg: use avpriv_find_start_code in mpegps_probe()

2015-03-15 Thread zhaoxiu.zeng
From 520c5898f2c0372188f17f98e10a40174dde4aac Mon Sep 17 00:00:00 2001 From: Zeng Zhaoxiu zhaoxiu.z...@gmail.com Date: Sun, 15 Mar 2015 12:01:51 +0800 Subject: [PATCH 5/7] avformat/mpeg: use avpriv_find_start_code in mpegps_probe() Signed-off-by: Zeng Zhaoxiu zhaoxiu.z...@gmail.com ---

Re: [FFmpeg-devel] [PATCH] lavf/segment: [WIP] add support to segmentation expression

2015-03-15 Thread Stefano Sabatini
On date Friday 2015-03-13 19:34:14 +0100, Stefano Sabatini encoded: TODO: add documentation, add support to chapters. --- libavformat/segment.c | 57 +++ 1 file changed, 57 insertions(+) Up, I'm a bit dissatisfied by the variable names

[FFmpeg-devel] [PATCH] avformat/m4vdec: use avpriv_find_start_code in mpeg4video_probe()

2015-03-15 Thread zhaoxiu.zeng
From 7d57cb0e822ac755ba7e3d9c09d90bf62c7da24d Mon Sep 17 00:00:00 2001 From: Zeng Zhaoxiu zhaoxiu.z...@gmail.com Date: Sun, 15 Mar 2015 11:59:27 +0800 Subject: [PATCH 4/7] avformat/m4vdec: use avpriv_find_start_code in mpeg4video_probe() Signed-off-by: Zeng Zhaoxiu zhaoxiu.z...@gmail.com ---

[FFmpeg-devel] [PATCH] avformat/mpegvideodec: use avpriv_find_start_code in mpegvideo_probe()

2015-03-15 Thread zhaoxiu.zeng
From 60cdc9161881cdf86e428a0d6812785938ae6667 Mon Sep 17 00:00:00 2001 From: Zeng Zhaoxiu zhaoxiu.z...@gmail.com Date: Sun, 15 Mar 2015 11:56:53 +0800 Subject: [PATCH 2/7] avformat/mpegvideodec: use avpriv_find_start_code in mpegvideo_probe() Signed-off-by: Zeng Zhaoxiu zhaoxiu.z...@gmail.com

[FFmpeg-devel] [PATCH 2/3] lavu: LOCAL_ALIGNED is for arrays

2015-03-15 Thread Christophe Gisquet
Force an additional parameter then. --- libavutil/internal.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavutil/internal.h b/libavutil/internal.h index 9ba2ea0..8081fdb 100644 --- a/libavutil/internal.h +++ b/libavutil/internal.h @@ -107,9 +107,9 @@ t (*v) o =

[FFmpeg-devel] [PATCH 3/3] ppc: lavc: use LOCAL_ALIGNED instead of DECLARE_ALIGNED

2015-03-15 Thread Christophe Gisquet
The later may yield incorrect code for on-stack variables. --- libavcodec/ppc/h264dsp.c| 8 +++ libavcodec/ppc/h264qpel.c | 50 - libavcodec/ppc/vp8dsp_altivec.c | 2 +- 3 files changed, 30 insertions(+), 30 deletions(-) diff --git

[FFmpeg-devel] [PATCH 1/3] lavc/lavu: remove LOCAL_ALIGNED_*

2015-03-15 Thread Christophe Gisquet
They were duplicating LOCAL_ALIGNED() without benefit. --- configure | 8 +++- libavcodec/aacps.c | 6 +++--- libavcodec/aacsbr.c| 6 +++--- libavcodec/ac3enc.c| 2 +- libavcodec/ac3enc_template.c

[FFmpeg-devel] ffmpeg issues

2015-03-15 Thread Dazzle Software
Hello does anyone know why libflite will not compile I tried everything from yum versions as well I have compiled my own using the following compile of flite ./configure --prefix=/usr --enable-shared \ --with-audio=alsa \

[FFmpeg-devel] [PATCH 0/3] Clean-up for LOCAL_ALIGNED

2015-03-15 Thread Christophe Gisquet
The second patch is the most interesting, because it prevents incorrect uses of LOCAL_ALIGNED that may have only caused warnings. This patch is of course smaller because of the code duplication removal of the first patch. Christophe Gisquet (3): lavc/lavu: remove LOCAL_ALIGNED_* lavu:

Re: [FFmpeg-devel] [PATCH 0/3] Clean-up for LOCAL_ALIGNED

2015-03-15 Thread Christophe Gisquet
2015-03-15 8:48 GMT+01:00 Christophe Gisquet christophe.gisq...@gmail.com: The second patch is the most interesting, because it prevents incorrect uses of LOCAL_ALIGNED that may have only caused warnings. This patch is of course smaller because of the code duplication removal of the first

Re: [FFmpeg-devel] ffmpeg issues

2015-03-15 Thread Michael Niedermayer
On Sun, Mar 15, 2015 at 01:15:27AM -0600, Dazzle Software wrote: Hello does anyone know why libflite will not compile I tried everything from yum versions as well I have compiled my own using the following compile of flite ./configure --prefix=/usr --enable-shared \

[FFmpeg-devel] [PATCH] avcodec/hevc_refs: Silence Could not find ref with POC for CRA/BLA

2015-03-15 Thread Michael Niedermayer
Avoids error messages during seeking Found-by: cousin_luigi Signed-off-by: Michael Niedermayer michae...@gmx.at --- libavcodec/hevc_refs.c |5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libavcodec/hevc_refs.c b/libavcodec/hevc_refs.c index f6596e8..fea3d12 100644 ---

[FFmpeg-devel] [PATCH 3/3] x86/proresdsp: remove ff_prores_idct_put_10_sse4

2015-03-15 Thread James Almer
It's exactly the same as the sse2 version. Signed-off-by: James Almer jamr...@gmail.com --- libavcodec/x86/proresdsp.asm| 2 -- libavcodec/x86/proresdsp_init.c | 7 --- 2 files changed, 9 deletions(-) diff --git a/libavcodec/x86/proresdsp.asm b/libavcodec/x86/proresdsp.asm index

[FFmpeg-devel] [PATCH 1/3] x86/proresdsp: remove unused macro

2015-03-15 Thread James Almer
Signed-off-by: James Almer jamr...@gmail.com --- libavcodec/x86/proresdsp.asm | 14 -- 1 file changed, 14 deletions(-) diff --git a/libavcodec/x86/proresdsp.asm b/libavcodec/x86/proresdsp.asm index 255eb24..752e504 100644 --- a/libavcodec/x86/proresdsp.asm +++

[FFmpeg-devel] [PATCH 2/3] x86/proresdsp: remove an unnecessary pxor

2015-03-15 Thread James Almer
Signed-off-by: James Almer jamr...@gmail.com --- libavcodec/x86/proresdsp.asm | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/libavcodec/x86/proresdsp.asm b/libavcodec/x86/proresdsp.asm index 752e504..b18de53 100644 --- a/libavcodec/x86/proresdsp.asm +++

Re: [FFmpeg-devel] [PATCH 1/3] x86/proresdsp: remove unused macro

2015-03-15 Thread Michael Niedermayer
On Sun, Mar 15, 2015 at 03:08:33PM -0300, James Almer wrote: Signed-off-by: James Almer jamr...@gmail.com --- libavcodec/x86/proresdsp.asm | 14 -- 1 file changed, 14 deletions(-) LGTM [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Let us

Re: [FFmpeg-devel] [PATCH v2] libavformat/mxfdec: export user comments metadata

2015-03-15 Thread James Almer
On 13/03/15 10:58 PM, Mark Reid wrote: --- libavformat/mxf.h| 1 + libavformat/mxfdec.c | 94 +--- 2 files changed, 91 insertions(+), 4 deletions(-) From fate-mxf-missing-index-demux using valgrind ==6422== ==6422== HEAP SUMMARY:

[FFmpeg-devel] [PATCH]Fix changed channel layout log info

2015-03-15 Thread Carl Eugen Hoyos
Hi! It seems to me that the line that is shown when the channel layout changes uses an incorrect new layout. The current output can be (line breaks for readability): Input stream #0:1 frame changed from rate:48000 fmt:fltp ch:8 chl:7.1 to rate:48000 fmt:fltp ch:8 chl:7.1 if the channel

Re: [FFmpeg-devel] [PATCH] store cookies returned in HLS key responses

2015-03-15 Thread Michael Niedermayer
On Sun, Mar 15, 2015 at 10:00:38AM +1100, Micah Galizia wrote: Hello, Neulion has added Set-Cookie fields in the response headers of their HLS key files. Those cookie values must be echoed back in the next key request or authentication on the subsequent key will fail. This fix will

Re: [FFmpeg-devel] [PATCH v2] libavformat/mxfdec: export user comments metadata

2015-03-15 Thread Mark Reid
On Sun, Mar 15, 2015 at 1:59 PM, James Almer jamr...@gmail.com wrote: On 13/03/15 10:58 PM, Mark Reid wrote: --- libavformat/mxf.h| 1 + libavformat/mxfdec.c | 94 +--- 2 files changed, 91 insertions(+), 4 deletions(-) From

Re: [FFmpeg-devel] [PATCH] store cookies returned in HLS key responses

2015-03-15 Thread Micah Galizia
Excellent, thank you -- patch to refactor that repeated free/opt_get/free code (it happens four times) will be submitted shortly... On Mon, Mar 16, 2015 at 12:00 PM, Michael Niedermayer michae...@gmx.at wrote: On Sun, Mar 15, 2015 at 10:00:38AM +1100, Micah Galizia wrote: Hello, Neulion has

Re: [FFmpeg-devel] [PATCH 1/3] x86/proresdsp: remove unused macro

2015-03-15 Thread James Almer
On 15/03/15 5:10 PM, Michael Niedermayer wrote: On Sun, Mar 15, 2015 at 03:08:33PM -0300, James Almer wrote: Signed-off-by: James Almer jamr...@gmail.com --- libavcodec/x86/proresdsp.asm | 14 -- 1 file changed, 14 deletions(-) LGTM Pushed, thanks.

Re: [FFmpeg-devel] [PATCH 3/3] x86/proresdsp: remove ff_prores_idct_put_10_sse4

2015-03-15 Thread Michael Niedermayer
On Sun, Mar 15, 2015 at 03:08:35PM -0300, James Almer wrote: It's exactly the same as the sse2 version. Signed-off-by: James Almer jamr...@gmail.com --- libavcodec/x86/proresdsp.asm| 2 -- libavcodec/x86/proresdsp_init.c | 7 --- 2 files changed, 9 deletions(-) if they are the

Re: [FFmpeg-devel] [PATCH] avformat/mov: Disallow .. in dref unless use_absolute_path is set

2015-03-15 Thread Michael Niedermayer
On Sat, Mar 14, 2015 at 09:43:07PM +0100, Michael Niedermayer wrote: as this kind of allows to circumvent it to some extend. We also could add a separate parameter or value to choose this Found-by: ramiro Signed-off-by: Michael Niedermayer michae...@gmx.at --- libavformat/mov.c |3 +++

Re: [FFmpeg-devel] [PATCH v2] libavformat/mxfdec: export user comments metadata

2015-03-15 Thread Michael Niedermayer
On Sun, Mar 15, 2015 at 02:46:57PM -0700, Mark Reid wrote: On Sun, Mar 15, 2015 at 1:59 PM, James Almer jamr...@gmail.com wrote: On 13/03/15 10:58 PM, Mark Reid wrote: --- libavformat/mxf.h| 1 + libavformat/mxfdec.c | 94 +---

Re: [FFmpeg-devel] [PATCH] AAC: [PATCH] AAC: Add support for 7350Hz sampling rates

2015-03-15 Thread Michael Niedermayer
On Fri, Mar 13, 2015 at 03:53:56PM -0300, Claudio Freire wrote: On Fri, Mar 13, 2015 at 3:06 PM, Michael Niedermayer michae...@gmx.at wrote: On Fri, Mar 13, 2015 at 02:34:08PM -0300, Claudio Freire wrote: On Fri, Mar 13, 2015 at 12:39 PM, Nedeljko Babic nedeljko.ba...@imgtec.com wrote:

Re: [FFmpeg-devel] ffmpeg issues

2015-03-15 Thread Dazzle Software
Tested this with different both ​1.7 and 2.0 release but the same issue still applies I have also tried static and shared but same issue always seems to come up it either shows the following when it does compile /usr/lib/gcc/x86_64-redhat-linux/4.8.2/../../../libflite_cmu_us_awb.so: undefined