[FFmpeg-devel] [PATCH]lavf/apng: Do not print a warning when writing pngs

2015-04-07 Thread Carl Eugen Hoyos
Hi! Attached patch stops FFmpeg from printing a warning in the normal use case. Please comment, Carl Eugen diff --git a/libavformat/apngenc.c b/libavformat/apngenc.c index 8dbe9e4..4b31309 100644 --- a/libavformat/apngenc.c +++ b/libavformat/apngenc.c @@ -114,7 +114,7 @@ static void flush_packet

Re: [FFmpeg-devel] Error in mpegaudio_parser.c

2015-04-07 Thread Michael Niedermayer
On Mon, Apr 06, 2015 at 03:58:59PM -0700, Dan Haddix wrote: > 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_CODE

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

2015-04-07 Thread Michael Niedermayer
On Tue, Apr 07, 2015 at 04:17:49AM +, Timothy Gu wrote: > 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

Re: [FFmpeg-devel] Areas needing work

2015-04-07 Thread tim nicholson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 06/04/15 21:00, Michael Niedermayer wrote: [..] > we need to move things to a new server (we already have one but > against expectations moving things over is happening at a snails pace) > ATM fate-suite and samples are on the new server, rest is st

Re: [FFmpeg-devel] [PATCH]lavf/apng: Do not print a warning when writing pngs

2015-04-07 Thread Michael Niedermayer
On Tue, Apr 07, 2015 at 12:19:03PM +0200, Carl Eugen Hoyos wrote: > Hi! > > Attached patch stops FFmpeg from printing a warning in > the normal use case. > > Please comment, Carl Eugen LGTM [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Old school: Use the

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

2015-04-07 Thread Michael Niedermayer
On Tue, Apr 07, 2015 at 03:31:25AM +0530, Himangi Saraogi wrote: > --- > 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/for

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

2015-04-07 Thread Michael Niedermayer
On Mon, Apr 06, 2015 at 02:52:24PM -0700, Vignesh Venkatasubramanian wrote: > On Mon, Apr 6, 2015 at 2:25 PM, Michael Niedermayer wrote: > > 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

Re: [FFmpeg-devel] Areas needing work

2015-04-07 Thread Derek Buitenhuis
On 4/6/2015 11:23 PM, compn wrote: > i think we tried this a few years ago and found that we do still have > ffserver users, they are just quiet until we threaten to rm it. if/when > it breaks, someone will either be there to fix it or it will rot. That's stupid. Either someone steps up to fix it

Re: [FFmpeg-devel] Areas needing work

2015-04-07 Thread Stefano Sabatini
On date Tuesday 2015-04-07 14:40:50 +0100, Derek Buitenhuis encoded: > On 4/6/2015 11:23 PM, compn wrote: > > i think we tried this a few years ago and found that we do still have > > ffserver users, they are just quiet until we threaten to rm it. if/when > > it breaks, someone will either be there

[FFmpeg-devel] [PATCH] microdvd: do not export framerate hint as subtitle packet

2015-04-07 Thread wm4
MicroDVD has a "hack" for specifying the video framerate the subtitle was authored against. The demuxer reads this hint correctly, but didn't skip it correctly. This was not noticed, because the exported packet has its duration set to 0, making it invisible (depending on the API user's rendering l

Re: [FFmpeg-devel] [PATCH] webmdashenc: Fix fate in MSVC

2015-04-07 Thread Michael Niedermayer
On Tue, Apr 07, 2015 at 12:21:02PM -0700, Vignesh Venkatasubramanian wrote: > MSVC does not support the %F and %T format specifiers in strftime. > Replace that with the expanded version. This fixes the broken fate > tests in MSVC (webm-dash-manifest-*). > > Signed-off-by: Vignesh Venkatasubramania

Re: [FFmpeg-devel] [PATCH] webmdashenc: Fix fate in MSVC

2015-04-07 Thread Vignesh Venkatasubramanian
On Tue, Apr 7, 2015 at 12:50 PM, Michael Niedermayer wrote: > On Tue, Apr 07, 2015 at 12:21:02PM -0700, Vignesh Venkatasubramanian wrote: >> MSVC does not support the %F and %T format specifiers in strftime. >> Replace that with the expanded version. This fixes the broken fate >> tests in MSVC (we

[FFmpeg-devel] hqx codec patch: faster decode with multi threaded decoding of slices; fixed clipping bug

2015-04-07 Thread Ferdinand Oeinck
From e750ddd8b1b79cfad04f2cdd58b5ba438390adf1 Mon Sep 17 00:00:00 2001 From: fo Date: Mon, 6 Apr 2015 15:47:14 +0200 Subject: [PATCH 1/2] libavcodec/hqx: made decoding multi threaded! --- libavcodec/hqx.c | 142 +++ libavcodec/hqx.h | 9 +++

Re: [FFmpeg-devel] Areas needing work

2015-04-07 Thread Mayank Agarwal
Hi I am interested in contributing to any of the projects.Please enroll me and tell me the procedure how can i contribute to ffmpeg Regards Mayank On Mon, Apr 6, 2015 at 10:18 PM, Timothy Gu wrote: > On Sun, Apr 5, 2015 at 8:43 PM Michael Niedermayer wrote: > >> Hi all >> >> There are various

[FFmpeg-devel] [PATCH 0/3] Authentication callbacks

2015-04-07 Thread Lukasz Marek
One of the most annoying things with ffmpeg is that password must be provided as a program param. It is visible while typing and on process list. (I'm talking about ffplay/ffmpeg/ffprobe here.) This patchset provides API that protocols may use to ask user for password interactively. I added imp

[FFmpeg-devel] [PATCH 3/3] lavf/ftp: support credentials callback

2015-04-07 Thread Lukasz Marek
--- libavformat/ftp.c | 96 +++ 1 file changed, 83 insertions(+), 13 deletions(-) diff --git a/libavformat/ftp.c b/libavformat/ftp.c index 27a172e..1133e02 100644 --- a/libavformat/ftp.c +++ b/libavformat/ftp.c @@ -74,6 +74,36 @@ static const AV

[FFmpeg-devel] [PATCH 1/3] [RFC]lavf/avio: add custom authentication API

2015-04-07 Thread Lukasz Marek
Signed-off-by: Lukasz Marek --- libavformat/avio.c | 46 ++ libavformat/avio.h | 28 libavformat/url.h | 12 3 files changed, 86 insertions(+) diff --git a/libavformat/avio.c b/libavformat/avio.c index a990ea2

[FFmpeg-devel] [PATCH 2/3] ffplay: add basic credentials handler

2015-04-07 Thread Lukasz Marek
Signed-off-by: Lukasz Marek --- ffplay.c | 63 ++- 1 file changed, 62 insertions(+), 1 deletion(-) diff --git a/ffplay.c b/ffplay.c index 8fa8566..692773e 100644 --- a/ffplay.c +++ b/ffplay.c @@ -29,6 +29,9 @@ #include #include #in

Re: [FFmpeg-devel] Patch for High color and High bit-depth support

2015-04-07 Thread Michael Niedermayer
On Tue, Apr 07, 2015 at 02:30:34PM -0700, Debargha Mukherjee wrote: > Resolutions inline. > > On Mon, Apr 6, 2015 at 3:21 PM, James Zern wrote: > > > On Fri, Apr 3, 2015 at 6:37 PM, Debargha Mukherjee > > wrote: > > > > >> > > >> You can probably merge profile 1 like 2/3 to cut down on the > >

Re: [FFmpeg-devel] hqx codec patch: faster decode with multi threaded decoding of slices; fixed clipping bug

2015-04-07 Thread Michael Niedermayer
On Tue, Apr 07, 2015 at 03:49:09PM +0200, Ferdinand Oeinck wrote: > From e750ddd8b1b79cfad04f2cdd58b5ba438390adf1 Mon Sep 17 00:00:00 2001 > From: fo > Date: Mon, 6 Apr 2015 15:47:14 +0200 > Subject: [PATCH 1/2] libavcodec/hqx: made decoding multi threaded! > > --- > libavcodec/hqx.c | 142 >

Re: [FFmpeg-devel] hqx codec patch: faster decode with multi threaded decoding of slices; fixed clipping bug

2015-04-07 Thread James Almer
On 07/04/15 10:49 AM, Ferdinand Oeinck wrote: > From 77116c82d128cb7efcdf5f55481fa5f349c31f22 Mon Sep 17 00:00:00 2001 > From: fo > Date: Tue, 7 Apr 2015 12:42:17 +0200 > Subject: [PATCH 2/2] libavcodec/hqx: correct clipping error > > --- > libavcodec/hqx.c | 2 +- > 1 file changed, 1 insertion(+)

[FFmpeg-devel] [PATCH] Support parsing version 1 headers

2015-04-07 Thread Timothy Gu
--- FATE.pm | 9 +++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/FATE.pm b/FATE.pm index 544e80f..30c220b 100644 --- a/FATE.pm +++ b/FATE.pm @@ -47,7 +47,7 @@ our $gitweb = "http://git.videolan.org/?p=ffmpeg.git";; sub split_header { my @hdr = split /:/, $_[0]; $

[FFmpeg-devel] [PATCH] fateserver: Support parsing version 1 headers

2015-04-07 Thread Timothy Gu
--- Now with proper commit message --- FATE.pm | 9 +++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/FATE.pm b/FATE.pm index 544e80f..30c220b 100644 --- a/FATE.pm +++ b/FATE.pm @@ -47,7 +47,7 @@ our $gitweb = "http://git.videolan.org/?p=ffmpeg.git";; sub split_header {

Re: [FFmpeg-devel] [PATCH] fateserver: Support parsing version 1 headers

2015-04-07 Thread Timothy Gu
To clarify this patch, a key component in the new fateserver is the support for the separation of release branches from the master branch. This depends on adding the branch information to the FATE payload headers. Libav has already made the change to both fateserver and fate.sh a while ago, but unf

Re: [FFmpeg-devel] [PATCH] fateserver: Support parsing version 1 headers

2015-04-07 Thread Lou Logan
On Tue, Apr 7, 2015, at 06:53 PM, Timothy Gu wrote: > ...but unfortunately their fateserver source code is not open to public Why? ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH] fateserver: Support parsing version 1 headers

2015-04-07 Thread Timothy Gu
On Tue, Apr 7, 2015 at 8:04 PM Lou Logan wrote: > On Tue, Apr 7, 2015, at 06:53 PM, Timothy Gu wrote: > > ...but unfortunately their fateserver source code is not open to public > > Why? > Last year when I asked Luca he said it was Janne's territory, and an email to Janne was not replied. That w

[FFmpeg-devel] [PATCH] [BACKPORT] tests: Fix test name for pixfmts tests

2015-04-07 Thread Timothy Gu
Hi, Please if possible backport the following commit to all release branches currently being tested: >From e1ee0521a698809ed216e9e5c11bd2bbb466ed04 Mon Sep 17 00:00:00 2001 From: Timothy Gu Date: Sun, 9 Nov 2014 21:37:18 -0800 Subject: [PATCH] tests: Fix test name for pixfmts tests --- tests/f