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 michae...@gmx.at 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

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 michae...@gmx.at 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

Re: [FFmpeg-devel] Areas needing work

2015-04-06 Thread Derek Buitenhuis
On 4/6/2015 4:43 AM, Michael Niedermayer wrote: * Post merge reviewcleanup, 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 fix

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 lukasz.m.lu...@gmail.com wrote: On Apr 5, 2015 6:02 PM, Stephan Holljes klaxa1...@googlemail.com 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 klaxa1...@googlemail.com

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 Holljesklaxa1...@googlemail.com --- 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

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

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 reviewcleanup, changes merged from libav would benefit from people reviewing and MUCH MUCH more importantly also people actually caring about and taking

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 linked in

Re: [FFmpeg-devel] Areas needing work

2015-04-06 Thread compn
On Mon, 6 Apr 2015 05:43:29 +0200 Michael Niedermayer michae...@gmx.at 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

Re: [FFmpeg-devel] Areas needing work

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

[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 line is

[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 michae...@gmx.at 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

Re: [FFmpeg-devel] Areas needing work

2015-04-06 Thread compn
On Mon, 06 Apr 2015 19:24:35 +0100 Derek Buitenhuis derek.buitenh...@gmail.com 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

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 lukasz.m.lu...@gmail.com --- doc/examples/avio_list_dir.c | 9 ++--- 1 file changed, 6 insertions(+), 3 deletions(-) LGTM pushed

Re: [FFmpeg-devel] Areas needing work

2015-04-06 Thread Timothy Gu
On Sun, Apr 5, 2015 at 8:43 PM Michael Niedermayer michae...@gmx.at 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