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 michae...@gmx.at wrote: On Thu, Oct 16, 2014 at 04:29:13PM -0800, Lou Logan wrote: Native decoder and encoder exists. Signed-off-by: Lou Logan l...@lrcd.com --- I don't know if libutvideo has any advantages over native; maybe Derek can

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 andrey.ut...@corp.bluecherry.net 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

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 nfx...@googlemail.com 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] [PATCH] mxfdec: minor simplification.

2014-10-18 Thread Reimar Döffinger
Signed-off-by: Reimar Döffinger reimar.doeffin...@gmx.de --- 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

[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 mywin...@gmail.com Date: Sat, 18 Oct 2014 16:50:59 +0200 Subject: [PATCH] libavutil: Add missing av_free() to cast5 selftest --- libavutil/cast5.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 lukasz.m.lu...@gmail.com --- 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 +++

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 +

[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 lukasz.m.lu...@gmail.com --- cmdutils.c | 191 + cmdutils.h | 12 cmdutils_common_opts.h | 6 ++ 3 files

[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

[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

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(+)

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 michae...@gmx.at wrote: On Thu, Oct 16, 2014 at 04:29:13PM -0800, Lou Logan wrote: Native decoder and encoder exists. Signed-off-by: Lou Logan l...@lrcd.com ---

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 reimar.doeffin...@gmx.de --- libavformat/mxfdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) LGTM [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB I

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 jamr...@gmail.com --- 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

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

2014-10-18 Thread Michael Niedermayer
Signed-off-by: Michael Niedermayer michae...@gmx.at --- 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 +++

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 si...@gmx.net 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 lukasz.m.lu...@gmail.com [...] +int show_sinks(void *optctx, const char *opt, const char *arg) +{ +#if CONFIG_AVDEVICE +

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 lukasz.m.lu...@gmail.com --- libavdevice/fbdev_dec.c | 10 -- 1 file changed, 8 insertions(+), 2 deletions(-) LGTM [...] -- Michael GnuPG fingerprint:

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 lukasz.m.lu...@gmail.com --- libavdevice/fbdev_common.c | 7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) LGTM thx [...] -- Michael GnuPG fingerprint:

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 nickrobbins-at-yahoo@ffmpeg.org wrote: [...] @@ -66,6 +73,10 @@ static const AVOption perspective_options[] = { { interpolation, set interpolation,

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 jamr...@gmail.com wrote: Signed-off-by: James Almer jamr...@gmail.com --- tools/crypto_bench.c | 45 + 1 file changed, 45 insertions(+) Any benchmark results available? Timothy

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 jamr...@gmail.com wrote: Signed-off-by: James Almer jamr...@gmail.com --- tools/crypto_bench.c | 45 + 1 file changed, 45 insertions(+) Any benchmark results

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

2014-10-18 Thread Carl Eugen Hoyos
Michael Niedermayer michaelni at 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

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 code

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 michae...@gmx.at --- libavcodec/avcodec.h |8 libavcodec/options_table.h |1 +