Re: [FFmpeg-devel] [PATCH] ppc: replace vec_ld(0), vec_ld(1) by VEC_LD2() which has fewer loads

2014-11-16 Thread Michael Niedermayer
On Sat, Nov 15, 2014 at 07:28:25PM -0700, Pavel Koshevoy wrote: On 11/15/14 18:12, James Almer wrote: On 15/11/14 1:50 AM, Michael Niedermayer wrote: On Fri, Nov 14, 2014 at 09:00:31PM -0700, Pavel Koshevoy wrote: I ran both builds twice and captured the output from the second run of each

Re: [FFmpeg-devel] [PATCH 2/3] web/bower.json: Detab

2014-11-16 Thread Michael Niedermayer
On Sat, Nov 15, 2014 at 09:26:09PM -0800, Timothy Gu wrote: Signed-off-by: Timothy Gu timothyg...@gmail.com --- bower.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) applied thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Republics

Re: [FFmpeg-devel] Experiences in using ffmpeg to transcode broadcast video

2014-11-16 Thread Mika Raento
A follow-up (I'll write this up better somewhere too once I get a chance). I've rewritten my transcoding pipeline, avoiding -copyts and it looks pretty promising. I now: 1. cut the input mpegts into pieces that have a) the same aspect ratio and b) monotonic timestamps (for both audio and video);

Re: [FFmpeg-devel] [PATCH 1/3] web: Remove all comments in the cleaned CSS

2014-11-16 Thread Michael Niedermayer
On Sat, Nov 15, 2014 at 09:26:08PM -0800, Timothy Gu wrote: http://ffmpeg.org/css/style.min.css and the copy in ffmpeg/doc are both generated using this option. Signed-off-by: Timothy Gu timothyg...@gmail.com --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) applied

Re: [FFmpeg-devel] Modified force_key_frames option to accept frame numbers

2014-11-16 Thread Sylvester Zaluga
Thank you for your reply. Date: Mon, 10 Nov 2014 14:18:25 +0100 From: geo...@nsup.org To: ffmpeg-devel@ffmpeg.org CC: sylwek...@outlook.com Subject: Re: [FFmpeg-devel] Modified force_key_frames option to accept frame numbers Le nonidi 19 brumaire, an CCXXIII, Sylvester Zaluga a écrit :

[FFmpeg-devel] [PATCH 1/2] lavfi/ebur128: add support for smaller video sizes

2014-11-16 Thread Marton Balint
Signed-off-by: Marton Balint c...@passwd.hu --- doc/filters.texi| 4 ++-- libavfilter/f_ebur128.c | 11 --- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/doc/filters.texi b/doc/filters.texi index 53f4cb2..713989c 100644 --- a/doc/filters.texi +++

[FFmpeg-devel] [PATCH 2/2] lavfi/ebur128: fix indentation after last commit

2014-11-16 Thread Marton Balint
Signed-off-by: Marton Balint c...@passwd.hu --- libavfilter/f_ebur128.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavfilter/f_ebur128.c b/libavfilter/f_ebur128.c index 8780062..63b4dad 100644 --- a/libavfilter/f_ebur128.c +++ b/libavfilter/f_ebur128.c @@ -316,8

Re: [FFmpeg-devel] [PATCH 6/9] ffserver_config: handle codec private options

2014-11-16 Thread Reynaldo H. Verdejo Pinochet
Hi Lukasz. Sry for the delay at answering, been traveling the whole week. Patch looks OK, feel free to push. Bests, -- Reynaldo H. Verdejo Pinochet Open Source Group Samsung Research America / Silicon Valley ___ ffmpeg-devel mailing list

Re: [FFmpeg-devel] [PATCH] ffserver_config: do not store preset name

2014-11-16 Thread Reynaldo H. Verdejo Pinochet
Looks. OK. Feel free to push after some testing. Can't try it out right now but seems harmless. Bests, -- Reynaldo H. Verdejo Pinochet Open Source Group Samsung Research America / Silicon Valley ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org

Re: [FFmpeg-devel] [PATCH] ffserver_config: fix possible crash

2014-11-16 Thread Reynaldo H. Verdejo Pinochet
OK to push. Thanks. -- Reynaldo H. Verdejo Pinochet Open Source Group Samsung Research America / Silicon Valley ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH] ffserver_config: fix possible crash

2014-11-16 Thread Lukasz Marek
On 16.11.2014 23:41, Reynaldo H. Verdejo Pinochet wrote: OK to push. Thanks. Pushed both ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH] h264_i386: Optimize decode_significance_8x8_x86 for 64 bit.

2014-11-16 Thread Michael Niedermayer
On Sat, Nov 15, 2014 at 06:16:03PM +0100, Reimar Döffinger wrote: 11674 - 10877 decicycles on my Phenom II. Overall speedup was unfortunately within measurement error. here its 10153 -10135 but ive a slightly odd feeling about the chnages to the asm code, iam not sure if all assemblers will

[FFmpeg-devel] [PATCH 01/11] ffserver_config: cosmetic: simplify functions calls.

2014-11-16 Thread Lukasz Marek
ffserver_save_avoption() and ffserver_opt_preset() have redundant arguments. They can be obtained basing on media type. This simplifies uses and reduce chance for a mistake. Signed-off-by: Lukasz Marek lukasz.m.lu...@gmail.com --- ffserver_config.c | 91

[FFmpeg-devel] [PATCH 04/11] ffserver_config: remove ffserver_apply_stream_config function

2014-11-16 Thread Lukasz Marek
This function became very short and can be logically merged with add_codec(). Signed-off-by: Lukasz Marek lukasz.m.lu...@gmail.com --- ffserver_config.c | 23 ++- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/ffserver_config.c b/ffserver_config.c index

[FFmpeg-devel] [PATCH 06/11] [WIP][RFC]tools: add ffserver_config_test

2014-11-16 Thread Lukasz Marek
Work in progress... Need support Signed-off-by: Lukasz Marek lukasz.m.lu...@gmail.com --- Makefile | 4 +- ffserver_config.c| 40 ++ ffserver_config.h| 7 ++ tools/ffserver_config_test.c | 178 +++ 4

[FFmpeg-devel] [PATCH 07/11] lavu/dict: add av_dict_serialize

2014-11-16 Thread Lukasz Marek
TODO: bump minor, update doc/APIchanges Signed-off-by: Lukasz Marek lukasz.m.lu...@gmail.com --- libavutil/dict.c | 27 +++ libavutil/dict.h | 16 2 files changed, 43 insertions(+) diff --git a/libavutil/dict.c b/libavutil/dict.c index 475e906..a41d61e

[FFmpeg-devel] [PATCH 09/11] lavf/ffmdec: add common options to recommended encoder configuration

2014-11-16 Thread Lukasz Marek
Signed-off-by: Lukasz Marek lukasz.m.lu...@gmail.com --- libavformat/ffmdec.c | 36 +++- 1 file changed, 31 insertions(+), 5 deletions(-) diff --git a/libavformat/ffmdec.c b/libavformat/ffmdec.c index 7ae906b..987f419 100644 --- a/libavformat/ffmdec.c +++

[FFmpeg-devel] [PATCH 10/11] lavf/ffmenc: store recommended encoder configuration

2014-11-16 Thread Lukasz Marek
ffmenc will store recommended encoder configuration if present. This will allow the user to base on local defaults and apply only explicitly set options. If recommended encoder configuration is not present, then non-default context's options are stored. Signed-off-by: Lukasz Marek

[FFmpeg-devel] [PATCH 08/11] ffserver: export recommented encoder configuration

2014-11-16 Thread Lukasz Marek
Signed-off-by: Lukasz Marek lukasz.m.lu...@gmail.com --- ffserver.c| 6 +++-- ffserver_config.c | 77 ++- 2 files changed, 63 insertions(+), 20 deletions(-) diff --git a/ffserver.c b/ffserver.c index e24243d..3702fd6 100644 ---

[FFmpeg-devel] [PATCH 11/11] ffmpeg_opt: make use of recommended encoder configuration

2014-11-16 Thread Lukasz Marek
So far ffmpeg used recommended configuration only for codec priv options. ffmpeg will use now codec defaults and then apply recommended configuration for all options. Recommended configuration possibly contains minimal set of options to filful user configuration. Signed-off-by: Lukasz Marek

Re: [FFmpeg-devel] [PATCH 03/11] ffserver_config: map ffserver options to AVOptions

2014-11-16 Thread Lukasz Marek
On 17.11.2014 02:46, Lukasz Marek wrote: Signed-off-by: Lukasz Marek lukasz.m.lu...@gmail.com --- ffserver_config.c | 237 -- ffserver_config.h | 2 - 2 files changed, 69 insertions(+), 170 deletions(-) @Reynaldo, you may check the test

Re: [FFmpeg-devel] [PATCH 11/11] ffmpeg_opt: make use of recommended encoder configuration

2014-11-16 Thread Lukasz Marek
On 17.11.2014 02:46, Lukasz Marek wrote: So far ffmpeg used recommended configuration only for codec priv options. ffmpeg will use now codec defaults and then apply recommended configuration for all options. Recommended configuration possibly contains minimal set of options to filful user

Re: [FFmpeg-devel] [PATCH] h264_i386: Optimize decode_significance_8x8_x86 for 64 bit.

2014-11-16 Thread Reimar Döffinger
On 17.11.2014, at 02:37, Michael Niedermayer michae...@gmx.at wrote: On Sat, Nov 15, 2014 at 06:16:03PM +0100, Reimar Döffinger wrote: 11674 - 10877 decicycles on my Phenom II. Overall speedup was unfortunately within measurement error. here its 10153 -10135 I suspect it also depends a bit