[FFmpeg-devel] Backporting tests/fate.sh: report different status for different errors

2015-04-06 Thread Timothy Gu
Hi all, The aforementioned commit: >From cc0057a31c7097839f9c4e4da61e2933b5b0e055 Mon Sep 17 00:00:00 2001 From: Timothy Gu Date: Mon, 9 Jun 2014 21:46:37 -0700 Subject: [PATCH] tests/fate.sh: report different status for different errors The order of error codes will be useful in my future fate

Re: [FFmpeg-devel] Areas needing work

2015-04-06 Thread Peter Ross
On Mon, Apr 06, 2015 at 07:24:35PM +0100, Derek Buitenhuis wrote: > On 4/6/2015 4:43 AM, Michael Niedermayer wrote: [..] > > * Conferences / exhibitions, public stuff > > Theres a conference, linuxtag, fosdem, whatever, wherever in your local > > area > > and you think FFmpeg should be represe

Re: [FFmpeg-devel] Areas needing work

2015-04-06 Thread Michael Niedermayer
On Mon, Apr 06, 2015 at 10:17:22PM +, Timothy Gu wrote: > On Mon, Apr 6, 2015 at 10:42 AM Michael Niedermayer > wrote: > > > On Mon, Apr 06, 2015 at 04:48:24PM +, Timothy Gu wrote: > > > On Sun, Apr 5, 2015 at 8:43 PM Michael Niedermayer > > wrote: > > [...] > > > > > > > > > > * our fat

[FFmpeg-devel] Error in mpegaudio_parser.c

2015-04-06 Thread Dan Haddix
I think this line in mpegaudio_parser.c is wrong int header_threshold = avctx->codec_id != AV_CODEC_ID_NONE && avctx->codec_id != codec_id; I believe it should be... int header_threshold = avctx->codec_id != AV_CODEC_ID_NONE && avctx->codec_id == codec_id; I believe the intention of the l

Re: [FFmpeg-devel] Areas needing work

2015-04-06 Thread compn
On Mon, 6 Apr 2015 05:43:29 +0200 Michael Niedermayer wrote: > * Decentralize > Too many things are done and admined by me, iam doing security > updates to the servers, doing the git merges, maintaining all > releases, maintaining half the fate clients, submitting data to > coverity and doing al

Re: [FFmpeg-devel] Areas needing work

2015-04-06 Thread compn
On Mon, 06 Apr 2015 19:24:35 +0100 Derek Buitenhuis wrote: > On 4/6/2015 4:43 AM, Michael Niedermayer wrote: > > * ffserver lacks a regression test > > code that is not tested will accumulate bugs. period > > there are people who use ffserver, they clearly like the lack of > > regression test

Re: [FFmpeg-devel] Areas needing work

2015-04-06 Thread Timothy Gu
On Mon, Apr 6, 2015 at 10:42 AM Michael Niedermayer wrote: > On Mon, Apr 06, 2015 at 04:48:24PM +, Timothy Gu wrote: > > On Sun, Apr 5, 2015 at 8:43 PM Michael Niedermayer > wrote: > [...] > > > > > > > * our fate server lacks the ability to display a user specified release > > > this make

[FFmpeg-devel] [PATCH] avformat: Drop const qualifier to avoid compiler warning

2015-04-06 Thread Himangi Saraogi
--- libavformat/format.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavformat/format.c b/libavformat/format.c index fa94b7d..0713849 100644 --- a/libavformat/format.c +++ b/libavformat/format.c @@ -172,7 +172,8 @@ AVInputFormat *av_probe_input_format3(AVProbeData *pd,

Re: [FFmpeg-devel] [PATCH] lavf: Add support for WebM Live Muxing

2015-04-06 Thread Michael Niedermayer
On Mon, Apr 06, 2015 at 11:19:36AM -0700, Vignesh Venkatasubramanian wrote: > On Sat, Apr 4, 2015 at 3:38 PM, Michael Niedermayer wrote: > > On Mon, Mar 30, 2015 at 02:46:10PM -0700, Vignesh Venkatasubramanian wrote: > >> This patch adds support for WebM Live Muxing by adding a new WebM > >> Chunk

Re: [FFmpeg-devel] [PATCH 3/4] avcodec: add unpack packed B-frames bitstream filter

2015-04-06 Thread Michael Niedermayer
On Sun, Apr 05, 2015 at 07:15:20PM +0200, Andreas Cadhalpun wrote: > On 05.04.2015 04:23, Michael Niedermayer wrote: > > maybe you want to add a fate test ? > > Sure, patch attached. > > > i can upload a small sample to the fate samples if you have one > > I just created one from the sample lin

Re: [FFmpeg-devel] [PATCH] libavformat/http.c: Make http-listen work as an input stream.

2015-04-06 Thread Michael Niedermayer
On Mon, Apr 06, 2015 at 08:29:42PM +0200, Stephan Holljes wrote: [...] > http.c |6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > 2df39e4d329e2a1fbdb6fa4edc49ec7381ff601f > 0001-libavformat-http.c-Fix-missing-parenthesis-in-http_l.patch > From 8aedd2767d825307fc0d9f6e5b461e2ef68

Re: [FFmpeg-devel] Areas needing work

2015-04-06 Thread Michael Niedermayer
On Mon, Apr 06, 2015 at 07:24:35PM +0100, Derek Buitenhuis wrote: > On 4/6/2015 4:43 AM, Michael Niedermayer wrote: > > * Post merge review&cleanup, changes merged from libav would benefit from > > people reviewing and MUCH MUCH more importantly also people actually > > caring > > about and ta

Re: [FFmpeg-devel] [PATCH] libavformat/http.c: Make http-listen work as an input stream.

2015-04-06 Thread Lukasz Marek
On 06.04.2015 20:29, Stephan Holljes wrote: Signed-off-by: Stephan Holljes --- doc/protocols.texi | 4 +++- libavformat/http.c | 7 +-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/doc/protocols.texi b/doc/protocols.texi index 5b7b6cf..5e9173f 100644 --- a/doc/protocols.

Re: [FFmpeg-devel] [PATCH] libavformat/http.c: Make http-listen work as an input stream.

2015-04-06 Thread Stephan Holljes
On Mon, Apr 6, 2015 at 1:47 PM, Lukasz Marek wrote: > On Apr 5, 2015 6:02 PM, "Stephan Holljes" wrote: >> >> With this patch http can be used to listen for POST data to be used as an > input stream. >> >> Signed-off-by: Stephan Holljes >> --- >> libavformat/http.c | 7 +-- >> 1 file changed

Re: [FFmpeg-devel] Areas needing work

2015-04-06 Thread Derek Buitenhuis
On 4/6/2015 4:43 AM, Michael Niedermayer wrote: > * Post merge review&cleanup, changes merged from libav would benefit from > people reviewing and MUCH MUCH more importantly also people actually caring > about and taking responsibility not just dumping comments with the idea > "someone" will

Re: [FFmpeg-devel] [PATCH] lavf: Add support for WebM Live Muxing

2015-04-06 Thread Vignesh Venkatasubramanian
On Sat, Apr 4, 2015 at 3:38 PM, Michael Niedermayer wrote: > On Mon, Mar 30, 2015 at 02:46:10PM -0700, Vignesh Venkatasubramanian wrote: >> This patch adds support for WebM Live Muxing by adding a new WebM >> Chunk muxer. It writes out live WebM Chunks which can be used for >> playback using Live

Re: [FFmpeg-devel] Areas needing work

2015-04-06 Thread Michael Niedermayer
On Mon, Apr 06, 2015 at 04:48:24PM +, Timothy Gu wrote: > On Sun, Apr 5, 2015 at 8:43 PM Michael Niedermayer wrote: [...] > > > > * our fate server lacks the ability to display a user specified release > > this makes the output look quite unwieldy > > Timothy was working on a rewrite > >

Re: [FFmpeg-devel] Areas needing work

2015-04-06 Thread Timothy Gu
On Sun, Apr 5, 2015 at 8:43 PM Michael Niedermayer wrote: > Hi all > > There are various areas in the project that are not maintained as well as > they > should be, heres a certainly not comlpete list, dont hesitate to reply and > add to it. > If someone wants to pick something up and contribute

Re: [FFmpeg-devel] [PATCH] examples/avio_list_dir: init/deinit network

2015-04-06 Thread Lukasz Marek
On 05.04.2015 15:42, Michael Niedermayer wrote: On Fri, Apr 03, 2015 at 11:56:03PM +0200, Lukasz Marek wrote: Signed-off-by: Lukasz Marek --- doc/examples/avio_list_dir.c | 9 ++--- 1 file changed, 6 insertions(+), 3 deletions(-) LGTM pushed _

[FFmpeg-devel] [PATCH] avfilter: handle error in query_formats() in bunch of filters

2015-04-06 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- libavfilter/aeval.c| 24 libavfilter/af_adelay.c| 13 - libavfilter/af_aecho.c | 13 - libavfilter/af_afade.c | 13 - libavfilter/af_aformat.c

Re: [FFmpeg-devel] [PATCH] libavformat/http.c: Make http-listen work as an input stream.

2015-04-06 Thread Lukasz Marek
On Apr 5, 2015 6:02 PM, "Stephan Holljes" wrote: > > With this patch http can be used to listen for POST data to be used as an input stream. > > Signed-off-by: Stephan Holljes > --- > libavformat/http.c | 7 +-- > 1 file changed, 5 insertions(+), 2 deletions(-) This should be documented I g

Re: [FFmpeg-devel] [PATCH] libavformat/http.c: Make http-listen work as an input stream.

2015-04-06 Thread Michael Niedermayer
On Mon, Apr 06, 2015 at 05:17:09AM +0200, Stephan Holljes wrote: > On Mon, Apr 6, 2015 at 1:02 AM, Michael Niedermayer wrote: > > On Sun, Apr 05, 2015 at 05:58:39PM +0200, Stephan Holljes wrote: > >> With this patch http can be used to listen for POST data to be used as an > >> input stream. > >>

Re: [FFmpeg-devel] [PATCH 1/3] mpegtsenc: Allow user to set SDT retransmission period

2015-04-06 Thread Michael Niedermayer
Hi On Mon, Apr 06, 2015 at 07:37:14AM +0100, JULIAN GARDNER wrote: [...] > >On 4/5/2015 11:34 PM, Michael Niedermayer wrote: > >> this is missing documentation about the units in which sdt_period is. > >> as is this depends on "mux_rate > 1" > >> if its intended to stay that way, then this should