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 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 on the

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

2014-11-16 Thread Sylvester Zaluga
Yes, sorry. The messages didn't seem to get sent so I tried again... and then I realised all of them got sent. Sorry for the spam. All of them contain the same change. Let's pick this one for the review: https://lists.ffmpeg.org/pipermail/ffmpeg-devel/2014-November/165157.html > From: l...@lrcd

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 configu

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 --- ffserver_config.c | 237 -- ffserver_config.h | 2 - 2 files changed, 69 insertions(+), 170 deletions(-) @Reynaldo, you may check the test I submitted, and the com

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

2014-11-16 Thread Lukasz Marek
On 17.11.2014 02:46, Lukasz Marek wrote: Work in progress... Need support Signed-off-by: Lukasz Marek --- Makefile | 4 +- ffserver_config.c| 40 ++ ffserver_config.h| 7 ++ tools/ffserver_config_test.c | 178

[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 --- libavform

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

2014-11-16 Thread Lukasz Marek
Signed-off-by: Lukasz Marek --- 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 --- a/ffserver.c +++ b/ffserver.c @@

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

[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 --- 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 +++ b/libavformat/ffmdec.c @@ -24,6 +

[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 --- 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 100644 --- a/libavutil/dic

[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 --- Makefile | 4 +- ffserver_config.c| 40 ++ ffserver_config.h| 7 ++ tools/ffserver_config_test.c | 178 +++ 4 files changed, 228 inser

[FFmpeg-devel] [PATCH 02/11] ffserver_config: cosmetic: move line_num into FFServerConfig

2014-11-16 Thread Lukasz Marek
Moving line_num into FFServerConfig as parser state, saves many passes of it aside of FFServerConfig pointer. --- ffserver_config.c | 114 +++--- ffserver_config.h | 1 + 2 files changed, 58 insertions(+), 57 deletions(-) diff --git a/ffserver_con

[FFmpeg-devel] [PATCH 05/11] ffserver: allow skip setting defaults

2014-11-16 Thread Lukasz Marek
Signed-off-by: Lukasz Marek --- doc/ffserver.texi | 10 ++ ffserver.c| 1 + ffserver_config.c | 30 ++ ffserver_config.h | 2 ++ 4 files changed, 43 insertions(+) diff --git a/doc/ffserver.texi b/doc/ffserver.texi index b7c5b6a..d3ff13e 100644 --- a/

[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 --- ffserver_config.c | 23 ++- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/ffserver_config.c b/ffserver_config.c index 2ac159b..b372e4a 100644 --- a/

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

2014-11-16 Thread Lukasz Marek
Signed-off-by: Lukasz Marek --- ffserver_config.c | 237 -- ffserver_config.h | 2 - 2 files changed, 69 insertions(+), 170 deletions(-) diff --git a/ffserver_config.c b/ffserver_config.c index 7266455..2ac159b 100644 --- a/ffserver_config.c

[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 --- ffserver_config.c | 91 +++ 1 file cha

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 wil

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] 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: 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 htt

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 ffmpeg-devel@

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

2014-11-16 Thread Marton Balint
Signed-off-by: Marton Balint --- 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 +316,8 @@ static i

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

2014-11-16 Thread Marton Balint
Signed-off-by: Marton Balint --- 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 +++ b/doc/filters.texi @@ -10146,8

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 é

Re: [FFmpeg-devel] [PATCH] h264_mb: Use smaller data type for refs in await_references.

2014-11-16 Thread Michael Niedermayer
On Sat, Nov 15, 2014 at 07:02:44PM +0100, Reimar Döffinger wrote: > As far as I can tell the value can never go outside > the int16_t type. > And especially the cost of the initialization is > reduced quite a bit by making it smaller. > Overall decoding speedup not measurable though. > > Signed-of

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 > --- > Makefile | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) applied thanks [...] --

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 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 > --- > bower.json | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) applied thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Republics decline into democra

Re: [FFmpeg-devel] [PATCH 3/3] web/download.js: Detab

2014-11-16 Thread Michael Niedermayer
On Sat, Nov 15, 2014 at 09:26:10PM -0800, Timothy Gu wrote: > Also fix the indentation of a line. > > Signed-off-by: Timothy Gu applied thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Dictatorship naturally arises out of democracy, and the most aggrava

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