Re: [FFmpeg-devel] [PATCH] libutvideo: remove libutvideo wrapper

2014-10-18 Thread Stephen Hutchinson
On Thu, Oct 16, 2014 at 11:02 PM, Michael Niedermayer wrote: > On Thu, Oct 16, 2014 at 04:29:13PM -0800, Lou Logan wrote: >> Native decoder and encoder exists. >> >> Signed-off-by: Lou Logan >> --- >> I don't know if libutvideo has any advantages over native; maybe Derek >> can elaborate (and ans

Re: [FFmpeg-devel] [PATCH 0/5] Add HTTP/RTSP specific AVERROR codes

2014-10-18 Thread wm4
On Sat, 18 Oct 2014 00:23:58 +0400 Andrey Utkin wrote: > Any comments and testing are appreciated. I have made a little amount of > testing, but RTSP, HTTP and HTTPS 401 and 404 work as expected. > > Andrey Utkin (5): > Introduce new error codes for 4XX and 5XX replies from remote servers >

Re: [FFmpeg-devel] [PATCH 0/5] Add HTTP/RTSP specific AVERROR codes

2014-10-18 Thread Andrey Utkin
On Sat, Oct 18, 2014 at 5:16 PM, wm4 wrote: > Why not just store the error code as separate field? I don't think it's a good idea. Introduces special behaviour, duplicates the objective of return codes. -- Bluecherry developer. ___ ffmpeg-devel mailin

[FFmpeg-devel] [PATCH] mxfdec: minor simplification.

2014-10-18 Thread Reimar Döffinger
Signed-off-by: Reimar Döffinger --- libavformat/mxfdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/mxfdec.c b/libavformat/mxfdec.c index 9306cc6..f916d01 100644 --- a/libavformat/mxfdec.c +++ b/libavformat/mxfdec.c @@ -2442,7 +2442,7 @@ static int mxf_read_pa

[FFmpeg-devel] [PATCH] libavutil: Add missing av_free() to cast5 selftest

2014-10-18 Thread Giorgio Vazzana
Hi, this should make fate green again. Giorgio Vazzana From 769cd50d4d3ba4a6f62db3c2599ba653e919e94a Mon Sep 17 00:00:00 2001 From: Giorgio Vazzana Date: Sat, 18 Oct 2014 16:50:59 +0200 Subject: [PATCH] libavutil: Add missing av_free() to cast5 selftest --- libavutil/cast5.c |1 + 1 file c

Re: [FFmpeg-devel] [PATCH] libavutil: Add missing av_free() to cast5 selftest

2014-10-18 Thread Michael Niedermayer
On Sat, Oct 18, 2014 at 04:54:08PM +0200, Giorgio Vazzana wrote: > Hi, > > this should make fate green again. > > Giorgio Vazzana > cast5.c |1 + > 1 file changed, 1 insertion(+) > 1f3a04d908581f1444d6985a7601ab8fe4f45540 > 0001-libavutil-Add-missing-av_free-to-cast5-selftest.patch > From

[FFmpeg-devel] [PATCH] lavd/fbdev_dec: use default device when not provided

2014-10-18 Thread Lukasz Marek
Signed-off-by: Lukasz Marek --- libavdevice/fbdev_dec.c | 10 -- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/libavdevice/fbdev_dec.c b/libavdevice/fbdev_dec.c index 1593b10..7b13a85 100644 --- a/libavdevice/fbdev_dec.c +++ b/libavdevice/fbdev_dec.c @@ -68,6 +68,7 @@ stat

Re: [FFmpeg-devel] [PATCH 3/3] opts: add list device sources/sinks options

2014-10-18 Thread Lukasz Marek
On 13.08.2014 16:00, Michael Niedermayer wrote: On Thu, Aug 07, 2014 at 01:58:57AM +0200, Lukasz Marek wrote: Allows to list sources/sinks of the devices that implement that functionality. [...] +int show_sinks(void *optctx, const char *opt, const char *arg) +{ +#if CONFIG_AVDEVICE +AVDe

[FFmpeg-devel] [PATCH 1/2] lavd/fbdev_common: report error during probing fbdev device

2014-10-18 Thread Lukasz Marek
Signed-off-by: Lukasz Marek --- libavdevice/fbdev_common.c | 7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/libavdevice/fbdev_common.c b/libavdevice/fbdev_common.c index 634780d..713e4fd 100644 --- a/libavdevice/fbdev_common.c +++ b/libavdevice/fbdev_common.c @@ -84,8 +84

[FFmpeg-devel] [PATCH 2/2] opts: add list device sources/sinks options

2014-10-18 Thread Lukasz Marek
Allows to list sources/sinks of the devices that implement that functionality. Signed-off-by: Lukasz Marek --- cmdutils.c | 191 + cmdutils.h | 12 cmdutils_common_opts.h | 6 ++ 3 files changed, 209 insertions(+) d

[FFmpeg-devel] Bug in flac demuxer?

2014-10-18 Thread Marcus Johnson
I don't have access to my command line atm, but i was using the channel map feature to split a 24 bit 192khz 5.1 flac file into 6 mono wave files, and ffmpeg would downcovert it to 16 bit unless i added -acodec pcm_s24le after each -map flag, shouldn't ffmpeg read the bit depth of the input file

[FFmpeg-devel] [PATCH] lavd/alsa: implement get_device_list callbacks

2014-10-18 Thread Lukasz Marek
--- libavdevice/alsa-audio-common.c | 60 + libavdevice/alsa-audio-dec.c| 6 + libavdevice/alsa-audio-enc.c| 6 + libavdevice/alsa-audio.h| 2 ++ 4 files changed, 74 insertions(+) diff --git a/libavdevice/alsa-audio-common.c b/lib

Re: [FFmpeg-devel] [PATCH] lavd/alsa: implement get_device_list callbacks

2014-10-18 Thread Lukasz Marek
On 18.10.2014 20:36, Lukasz Marek wrote: --- libavdevice/alsa-audio-common.c | 60 + libavdevice/alsa-audio-dec.c| 6 + libavdevice/alsa-audio-enc.c| 6 + libavdevice/alsa-audio.h| 2 ++ 4 files changed, 74 insertions(+) I

Re: [FFmpeg-devel] [PATCH] libutvideo: remove libutvideo wrapper

2014-10-18 Thread Michael Niedermayer
On Sat, Oct 18, 2014 at 03:30:33AM -0400, Stephen Hutchinson wrote: > On Thu, Oct 16, 2014 at 11:02 PM, Michael Niedermayer > wrote: > > On Thu, Oct 16, 2014 at 04:29:13PM -0800, Lou Logan wrote: > >> Native decoder and encoder exists. > >> > >> Signed-off-by: Lou Logan > >> --- > >> I don't kno

Re: [FFmpeg-devel] [PATCH] mxfdec: minor simplification.

2014-10-18 Thread Michael Niedermayer
On Sat, Oct 18, 2014 at 03:26:52PM +0200, Reimar Döffinger wrote: > Signed-off-by: Reimar Döffinger > --- > libavformat/mxfdec.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) LGTM [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB I am the wisest man al

Re: [FFmpeg-devel] Bug in flac demuxer?

2014-10-18 Thread Michael Niedermayer
On Sat, Oct 18, 2014 at 02:30:55PM -0400, Marcus Johnson wrote: > I don't have access to my command line atm, but i was using the channel map > feature to split a 24 bit 192khz 5.1 flac file into 6 mono wave files, and > ffmpeg would downcovert it to 16 bit unless i added -acodec pcm_s24le after

[FFmpeg-devel] [PATCH] tools/crypto_bench: add CAST5 support

2014-10-18 Thread James Almer
Signed-off-by: James Almer --- tools/crypto_bench.c | 45 + 1 file changed, 45 insertions(+) diff --git a/tools/crypto_bench.c b/tools/crypto_bench.c index 0f62068..6037ead 100644 --- a/tools/crypto_bench.c +++ b/tools/crypto_bench.c @@ -75,6 +75,7 @@

[FFmpeg-devel] [PATCH] avdevice/oss_audio: avoid strerror() and errbuf

2014-10-18 Thread Michael Niedermayer
Signed-off-by: Michael Niedermayer --- libavdevice/oss_audio.c | 10 -- 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/libavdevice/oss_audio.c b/libavdevice/oss_audio.c index 4eb6a50..1f8b5e7 100644 --- a/libavdevice/oss_audio.c +++ b/libavdevice/oss_audio.c @@ -49,14 +49

Re: [FFmpeg-devel] Facebook page

2014-10-18 Thread Alexander Strasser
On 2014-10-15 10:49 +0200, Thomas Volkert wrote: > On 10/05/2014 09:09 PM, compn wrote: > >On Sun, 05 Oct 2014 20:19:49 +0200 > >Thomas Volkert wrote: > > > >>http://www.facebook.com/ffmpeg.devel, > >>http://www.facebook.com/ffmpeg.framework, > >>http://www.facebook.com/multimedia.framework, ... >

Re: [FFmpeg-devel] [PATCH 2/2] opts: add list device sources/sinks options

2014-10-18 Thread Michael Niedermayer
On Sat, Oct 18, 2014 at 08:25:30PM +0200, Lukasz Marek wrote: > Allows to list sources/sinks of the devices that implement > that functionality. > > Signed-off-by: Lukasz Marek [...] > +int show_sinks(void *optctx, const char *opt, const char *arg) > +{ > +#if CONFIG_AVDEVICE > +AVOutputForma

Re: [FFmpeg-devel] [PATCH] lavd/fbdev_dec: use default device when not provided

2014-10-18 Thread Michael Niedermayer
On Sat, Oct 18, 2014 at 07:38:16PM +0200, Lukasz Marek wrote: > Signed-off-by: Lukasz Marek > --- > libavdevice/fbdev_dec.c | 10 -- > 1 file changed, 8 insertions(+), 2 deletions(-) LGTM [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB The real ebay di

Re: [FFmpeg-devel] [PATCH 1/2] lavd/fbdev_common: report error during probing fbdev device

2014-10-18 Thread Michael Niedermayer
On Sat, Oct 18, 2014 at 08:25:29PM +0200, Lukasz Marek wrote: > Signed-off-by: Lukasz Marek > --- > libavdevice/fbdev_common.c | 7 ++- > 1 file changed, 6 insertions(+), 1 deletion(-) LGTM thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB it is not onc

[FFmpeg-devel] Patch to create trapezoid videos with ffmpeg.

2014-10-18 Thread Nicholas Robbins
> On Saturday, October 18, 2014 8:55 AM, Nicholas Robbins > wrote: > >> On Saturday, October 18, 2014 8:36 AM, Moritz Barsnick > wrote: > >> You basically got it right. (I happened to follow the thread on >> ffmpeg-devel, thanks for forwarding it.) >> >> a) An inverse calculation, like i

Re: [FFmpeg-devel] Patch to create trapezoid videos with ffmpeg.

2014-10-18 Thread Michael Niedermayer
On Sat, Oct 18, 2014 at 03:47:38PM -0700, Nicholas Robbins wrote: > > On Saturday, October 18, 2014 8:55 AM, Nicholas Robbins > > wrote: [...] > @@ -66,6 +73,10 @@ static const AVOption perspective_options[] = { > { "interpolation", "set interpolation", OFFSET(interpolation), > AV_OPT_TYPE_

Re: [FFmpeg-devel] [PATCH] tools/crypto_bench: add CAST5 support

2014-10-18 Thread Timothy Gu
On Sat, Oct 18, 2014 at 2:10 PM, James Almer wrote: > Signed-off-by: James Almer > --- > tools/crypto_bench.c | 45 + > 1 file changed, 45 insertions(+) > Any benchmark results available? Timothy ___ ffmpeg

Re: [FFmpeg-devel] [PATCH] tools/crypto_bench: add CAST5 support

2014-10-18 Thread James Almer
On 18/10/14 9:42 PM, Timothy Gu wrote: > On Sat, Oct 18, 2014 at 2:10 PM, James Almer wrote: >> Signed-off-by: James Almer >> --- >> tools/crypto_bench.c | 45 + >> 1 file changed, 45 insertions(+) >> > > Any benchmark results available? A Linux x86_

Re: [FFmpeg-devel] Bug in flac demuxer?

2014-10-18 Thread Carl Eugen Hoyos
Michael Niedermayer gmx.at> writes: > On Sat, Oct 18, 2014 at 02:30:55PM -0400, Marcus Johnson wrote: > > I don't have access to my command line atm, but i > was using the channel map feature to split a 24 bit > 192khz 5.1 flac file into 6 mono wave files, and > ffmpeg would downcovert it to 1

[FFmpeg-devel] [OPW] mentors and applicant ranking/status

2014-10-18 Thread Michael Niedermayer
Hi mentors (posting to ffmpeg-devel & opw@ff so noone misses it) please dont forget to set/update the rank & status of your potential applicants on https://opw.gnome.org/?q=manage_projects&prg=3 i see our wiki is containing a nice table with all kinds of info but the opw page appears a bit forgot

Re: [FFmpeg-devel] [PATCH] avcodec/utils: Display pixel format information as none ... if unknown instead of omitting it

2014-10-18 Thread Michael Niedermayer
On Fri, Oct 10, 2014 at 03:29:02AM +0200, Michael Niedermayer wrote: > This is similar to 20a5956b8daeee4cb59d6fa00ec809b02c04d7f8 > > The difference this change makes affects only rather few files > but looks like: > Stream #0:1: Video: mjpeg, 90k tbr, 90k tbn, 90k tbc > vs. > Stream #0:1: Video:

Re: [FFmpeg-devel] [PATCH 2/2] avformat: Add format_whitelist

2014-10-18 Thread Michael Niedermayer
On Tue, Sep 30, 2014 at 11:33:51PM +0200, Michael Niedermayer wrote: > This allows restricting demuxers to a list of needed ones for improved > security > Note, some demuxers themselfs open other demuxers, these are only restricted > if > AVOptions are forwarded to them. Please check that your co

Re: [FFmpeg-devel] [PATCH 1/2] avcodec: add codec_whitelist

2014-10-18 Thread Michael Niedermayer
On Tue, Sep 30, 2014 at 11:33:50PM +0200, Michael Niedermayer wrote: > This allows restricting decoders to a list of needed ones for improved > security > > Signed-off-by: Michael Niedermayer > --- > libavcodec/avcodec.h |8 > libavcodec/options_table.h |1 + > libavcodec

Re: [FFmpeg-devel] [PATCH] doc/filters: fix localtime drawtext example.

2014-10-18 Thread Michael Niedermayer
On Fri, Oct 03, 2014 at 02:57:50AM +0200, Simon Thelen wrote: > On 10/09/14 at 00:01, Simon Thelen wrote: > > The colon after the localtime function call needs an additional layer of > > escaping or else everything until the next colon is treated as a > > fontfile. > > > > Signed-off-by: Simon The