Re: [libav-devel] [RFC] doc: update developer guide

2011-04-09 Thread Anton Khirnov
On Sat, Apr 09, 2011 at 11:58:35PM +0200, Luca Barbato wrote: > developer.texi is quite outdated, I started fixing some details and ended > up rewriting a large part, this rfc patch is just for discussion. > > --- > doc/developer.texi | 201 --- >

Re: [libav-devel] [PATCH 6/7] avio: cosmetics, vertically align comments.

2011-04-09 Thread Anton Khirnov
On Sat, Apr 09, 2011 at 05:03:34PM -0400, Ronald S. Bultje wrote: > Hi, > > On Sat, Apr 9, 2011 at 8:57 AM, Anton Khirnov wrote: > > --- > >  libavformat/avio.h |   10 +- > >  1 files changed, 5 insertions(+), 5 deletions(-) > > This mostly looks OK. > > If you (optionally) want to docu

Re: [libav-devel] [PATCH 5/7] avio: document some members of AVIOContext.

2011-04-09 Thread Anton Khirnov
On Sun, Apr 10, 2011 at 12:20:03AM +0300, Martin Storsjö wrote: > On Sat, 9 Apr 2011, Anton Khirnov wrote: > > > --- > > libavformat/avio.h | 12 > > 1 files changed, 8 insertions(+), 4 deletions(-) > > > > diff --git a/libavformat/avio.h b/libavformat/avio.h > > index b30866c..e1

[libav-devel] FATE assert failures

2011-04-09 Thread Alexander Strange
While doing some other work I noticed that pretty much none of the assert()s in the code are actually enabled when building. Several fate tests fail when they're reenabled via ./configure --extra-cflags=-DDEBUG. Here they are for the record. All H.264 decodes fail on the assert at the top of MP

[libav-devel] [RFC] log_level_offset and av_log changes

2011-04-09 Thread Luca Barbato
Today I planned to add to av_log() some optional features in order to track file, line and function. I noticed some strange code introduced with this commit[1] if(avc && avc->version >= (50<<16 | 15<<8 | 2) && avc->log_level_offset_offset && level>=AV_LOG_FATAL) level += *(int*)(((uint8_t

Re: [libav-devel] [PATCH] OpenBSD/PowerPC compilation fix for libavutil ff_get_cpu_flags_ppc()

2011-04-09 Thread Luca Barbato
On 04/10/2011 03:19 AM, Brad wrote: > On 02/04/11 6:46 PM, Brad wrote: >> On 02/04/11 6:40 PM, Måns Rullgård wrote: >>> Brad writes: >>> On 02/04/11 6:25 PM, Ronald S. Bultje wrote: > Hi, > > On Sat, Apr 2, 2011 at 2:37 PM, Luca Barbato > wrote: >> On 04/02/2011 11:16 PM, B

Re: [libav-devel] [PATCH 10/27] drawtext: fix wrong reference in boxcolor option description

2011-04-09 Thread Ronald S. Bultje
Hi, On Sat, Apr 9, 2011 at 7:49 AM, Reinhard Tartler wrote: > From: Stefano Sabatini > > --- >  doc/filters.texi |    3 +-- >  1 files changed, 1 insertions(+), 2 deletions(-) Here also, please squash with 7. Ronald ___ libav-devel mailing list libav

Re: [libav-devel] [PATCH 09/27] drawtext: extend/clarify examples in the filter description

2011-04-09 Thread Ronald S. Bultje
Hi, On Sat, Apr 9, 2011 at 7:49 AM, Reinhard Tartler wrote: > From: Stefano Sabatini > > --- >  doc/filters.texi |   18 ++ >  1 files changed, 14 insertions(+), 4 deletions(-) Please squash this with 7 also. Ronald ___ libav-devel mai

Re: [libav-devel] [PATCH 08/27] drawtext: add documentation for the shadow parameters

2011-04-09 Thread Ronald S. Bultje
Hi, On Sat, Apr 9, 2011 at 7:49 AM, Reinhard Tartler wrote: > From: Stefano Sabatini > > --- >  doc/filters.texi |   11 +++ >  1 files changed, 11 insertions(+), 0 deletions(-) You can squash this with 7. Ronald ___ libav-devel mailing list l

Re: [libav-devel] [PATCH 07/27] documentation: sort filter descriptions in filters.texi

2011-04-09 Thread Ronald S. Bultje
Hi, On Sat, Apr 9, 2011 at 7:49 AM, Reinhard Tartler wrote: > From: Stefano Sabatini > > Change position of the fade filter description, put it between > drawtext and fifo descriptions. [..] > +@section drawtext The log message is wrong, this patch adds a filter description for the drawtext fil

Re: [libav-devel] [PATCH 05/27] documentation: add setdar and setsar description to filters.texi

2011-04-09 Thread Ronald S. Bultje
Hi, On Sat, Apr 9, 2011 at 7:49 AM, Reinhard Tartler wrote: > From: Stefano Sabatini > > --- >  doc/filters.texi |   56 > ++ >  1 files changed, 56 insertions(+), 0 deletions(-) Looks OK to me. Ronald

Re: [libav-devel] [PATCH] OpenBSD/PowerPC compilation fix for libavutil ff_get_cpu_flags_ppc()

2011-04-09 Thread Brad
On 02/04/11 6:46 PM, Brad wrote: On 02/04/11 6:40 PM, Måns Rullgård wrote: Brad writes: On 02/04/11 6:25 PM, Ronald S. Bultje wrote: Hi, On Sat, Apr 2, 2011 at 2:37 PM, Luca Barbato wrote: On 04/02/2011 11:16 PM, Brad wrote: When attempting to re-enable the AltiVec support it was noticed t

Re: [libav-devel] [PATCH] Convert some undefined 1<<31 shifts into 1U<<31.

2011-04-09 Thread Luca Barbato
On 04/10/2011 02:41 AM, Alex Converse wrote: > Passes make fate, altivec untested. Altivec should not have problems (the variable is already unsigned). lu -- Luca Barbato Gentoo/linux http://dev.gentoo.org/~lu_zero ___ libav-devel mailing list libav

[libav-devel] [PATCH] Convert some undefined 1<<31 shifts into 1U<<31.

2011-04-09 Thread Alex Converse
These are the "no-brainer" cases where 1<<31 is used as a bitmask. Passes make fate, altivec untested. From acacc0eef1cd5f8a69aba337fe998c4d8cd9f6e6 Mon Sep 17 00:00:00 2001 From: Alex Converse Date: Sat, 9 Apr 2011 17:22:04 -0700 Subject: [PATCH] Convert some undefined 1<<31 shifts into 1U<<31.

Re: [libav-devel] [PATCH 1/3] Add avio_check() function.

2011-04-09 Thread Luca Barbato
On 04/10/2011 12:52 AM, Stefano Sabatini wrote: > Other notes: > > * avio_check() or ffurl_check()? It would be used by ffmpeg so avio_check() > * for checking existence avio_check() is slightly more awkward than > url_exist(), possibilities are: keep url_exist() as inline and make > it use

Re: [libav-devel] [PATCH] daud: Don't write packets that are too large to have their size expressed in the bytestream.

2011-04-09 Thread Alex Converse
On Fri, Apr 8, 2011 at 6:46 PM, Luca Barbato wrote: > On 4/9/11 12:53 AM, Aℓex Converse wrote: >> >> On Fri, Apr 8, 2011 at 2:38 PM, Alex Converse >>  wrote: >>> >>> --- >>>  libavformat/daud.c |    5 + >>>  1 files changed, 5 insertions(+), 0 deletions(-) >>> >> >> Let's try it again with the

[libav-devel] [PATCH] Extend and shuffle content

2011-04-09 Thread Luca Barbato
We should focus on what we provide first, then how we are organized and then on which is our origin. --- src/about | 146 +--- 1 files changed, 100 insertions(+), 46 deletions(-) diff --git a/src/about b/src/about index dffc32d..594fbff 100

Re: [libav-devel] [PATCH 1/3] Add avio_check() function.

2011-04-09 Thread Stefano Sabatini
[CC-ing ffmpeg-devel] On date Saturday 2011-04-09 12:35:58 +0200, Anton Khirnov wrote: > On Sat, Apr 09, 2011 at 02:47:35AM +0200, Stefano Sabatini wrote: > > From b563c12cb285f1e6eb8dc19d1a18323cd9280ea1 Mon Sep 17 00:00:00 2001 > > From: Stefano Sabatini > > Date: Fri, 8 Apr 2011 18:32:25 +0200

Re: [libav-devel] [PATCH 19/27] patch checklist:git format-patch Signed-off-by: Michael Niedermayer

2011-04-09 Thread Luca Barbato
On 04/09/2011 11:10 PM, Ronald S. Bultje wrote: > I don't think this is right. Git still doesn't write your log messages > for you. You could reword it as "did you provide a clear git commit > log message?". I tried to reshape the whole document a bit rfc patch sent since the change grew too big.

[libav-devel] [RFC] doc: update developer guide

2011-04-09 Thread Luca Barbato
developer.texi is quite outdated, I started fixing some details and ended up rewriting a large part, this rfc patch is just for discussion. --- doc/developer.texi | 201 --- 1 files changed, 79 insertions(+), 122 deletions(-) diff --git a/doc/deve

Re: [libav-devel] [PATCH 11/27] eval: add support for trunc, ceil, and floor functions

2011-04-09 Thread Ronald S. Bultje
Hi, On Sat, Apr 9, 2011 at 7:49 AM, Reinhard Tartler wrote: > From: Stefano Sabatini > > Signed-off-by: Stefano Sabatini > --- >  doc/eval.texi      |   12 >  libavutil/avutil.h |    2 +- >  libavutil/eval.c   |   21 +++-- >  3 files changed, 32 insertions(+), 3 del

Re: [libav-devel] [PATCH 5/7] avio: document some members of AVIOContext.

2011-04-09 Thread Martin Storsjö
On Sat, 9 Apr 2011, Anton Khirnov wrote: > --- > libavformat/avio.h | 12 > 1 files changed, 8 insertions(+), 4 deletions(-) > > diff --git a/libavformat/avio.h b/libavformat/avio.h > index b30866c..e1c4876 100644 > --- a/libavformat/avio.h > +++ b/libavformat/avio.h > @@ -43,10 +

Re: [libav-devel] [PATCH 20/27] patch checklist:uggest fate instead of regression tests Signed-off-by: Michael Niedermayer

2011-04-09 Thread Ronald S. Bultje
Hi, On Sat, Apr 9, 2011 at 7:50 AM, Reinhard Tartler wrote: > From: Michael Niedermayer > --- >  doc/developer.texi |    2 +- >  1 files changed, 1 insertions(+), 1 deletions(-) [..] > -    Do the regression tests pass with the patch applied? > +    Does fate pass with the patch applied? (make f

Re: [libav-devel] [PATCH 19/27] patch checklist:git format-patch Signed-off-by: Michael Niedermayer

2011-04-09 Thread Ronald S. Bultje
Hi, On Sat, Apr 9, 2011 at 7:50 AM, Reinhard Tartler wrote: > From: Michael Niedermayer > --- >  doc/developer.texi |    7 +-- >  1 files changed, 1 insertions(+), 6 deletions(-) [..] >  @item > -    Is the patch a unified diff? > +    Was the patch generated with git format-patch or send-em

Re: [libav-devel] [PATCH 14/27] gradfun: add notice from the MPlayer manual

2011-04-09 Thread Ronald S. Bultje
Hi, On Sat, Apr 9, 2011 at 7:49 AM, Reinhard Tartler wrote: > From: Stefano Sabatini > > Add notice telling that the filter is designed for playback only. > --- >  doc/filters.texi |    4 >  1 files changed, 4 insertions(+), 0 deletions(-) > > diff --git a/doc/filters.texi b/doc/filters.tex

Re: [libav-devel] [PATCH 7/7] avio: document avio_close().

2011-04-09 Thread Ronald S. Bultje
Hi, On Sat, Apr 9, 2011 at 8:57 AM, Anton Khirnov wrote: > --- >  libavformat/avio.h |    6 ++ >  1 files changed, 6 insertions(+), 0 deletions(-) > > diff --git a/libavformat/avio.h b/libavformat/avio.h > index b1bce4c..cfe1bf8 100644 > --- a/libavformat/avio.h > +++ b/libavformat/avio.h > @

Re: [libav-devel] [PATCH 6/7] avio: cosmetics, vertically align comments.

2011-04-09 Thread Ronald S. Bultje
Hi, On Sat, Apr 9, 2011 at 8:57 AM, Anton Khirnov wrote: > --- >  libavformat/avio.h |   10 +- >  1 files changed, 5 insertions(+), 5 deletions(-) This mostly looks OK. If you (optionally) want to document more: >     unsigned long checksum; >     unsigned char *checksum_ptr; >     uns

Re: [libav-devel] [PATCH 5/7] avio: document some members of AVIOContext.

2011-04-09 Thread Ronald S. Bultje
Hi, On Sat, Apr 9, 2011 at 8:57 AM, Anton Khirnov wrote: > --- >  libavformat/avio.h |   12 >  1 files changed, 8 insertions(+), 4 deletions(-) > > diff --git a/libavformat/avio.h b/libavformat/avio.h > index b30866c..e1c4876 100644 > --- a/libavformat/avio.h > +++ b/libavformat/avio

Re: [libav-devel] [PATCH 4/7] avio: cosmetics, group the reading functions.

2011-04-09 Thread Ronald S. Bultje
Hi, On Sat, Apr 9, 2011 at 8:57 AM, Anton Khirnov wrote: > --- >  libavformat/avio.h |   20 ++-- >  1 files changed, 14 insertions(+), 6 deletions(-) OK. Ronald ___ libav-devel mailing list libav-devel@libav.org https://lists.libav.org

Re: [libav-devel] [PATCH 3/7] avio: cosmetics, merge all the FF_API_OLD_AVIO blocks.

2011-04-09 Thread Ronald S. Bultje
Hi, On Sat, Apr 9, 2011 at 8:57 AM, Anton Khirnov wrote: > --- >  libavformat/avio.h |  196 > ++-- >  1 files changed, 84 insertions(+), 112 deletions(-) Looks OK to me (no strong opinion). Ronald ___ l

Re: [libav-devel] [PATCH 2/7] avio: cosmetics, move AVIOContext to start of the file.

2011-04-09 Thread Ronald S. Bultje
Hi, On Sat, Apr 9, 2011 at 8:57 AM, Anton Khirnov wrote: > --- >  libavformat/avio.h |   77 ++- >  1 files changed, 39 insertions(+), 38 deletions(-) OK. Ronald ___ libav-devel mailing list libav-devel@l

Re: [libav-devel] [PATCH 1/7] avio: update file header.

2011-04-09 Thread Ronald S. Bultje
Hi, On Sat, Apr 9, 2011 at 8:57 AM, Anton Khirnov wrote: > --- >  libavformat/avio.h |    5 + >  1 files changed, 1 insertions(+), 4 deletions(-) > > diff --git a/libavformat/avio.h b/libavformat/avio.h > index 7bb8d17..6dfed4a 100644 > --- a/libavformat/avio.h > +++ b/libavformat/avio.h > @@

Re: [libav-devel] [PATCH 04/27] Apply misc fixes to the image2 muxer documentation.

2011-04-09 Thread Ronald S. Bultje
Hi, On Sat, Apr 9, 2011 at 8:27 AM, Anton Khirnov wrote: > On Sat, Apr 09, 2011 at 01:49:47PM +0200, Reinhard Tartler wrote: >> From: Stefano Sabatini >> >> The fixes were pointed out by Diego. >> >> Signed-off-by: Janne Grunau >> (cherry picked from commit 0cad24ce9b02037c9cdad84cae905f96b04d7

Re: [libav-devel] [PATCH 01/27] Add documentation for the image2 muxer.

2011-04-09 Thread Ronald S. Bultje
Hi, On Sat, Apr 9, 2011 at 7:49 AM, Reinhard Tartler wrote: > From: Stefano Sabatini > > Signed-off-by: Ronald S. Bultje Isn't it highly unlikely that I committed this? Or did a videolan committer change the commit before re-committing it? I'd remove this line, I had nothing to do with it. :-)

Re: [libav-devel] [PATCH 02/27] Add PIX_FMT_BGR48LE and PIX_FMT_BGR48BE pixel formats

2011-04-09 Thread Luca Barbato
On 04/09/2011 03:24 PM, Peter Ross wrote: > On Sat, Apr 09, 2011 at 02:36:13PM +0200, Luca Barbato wrote: >> On 4/9/11 1:49 PM, Reinhard Tartler wrote: >>> From: Peter Ross >>> >> >> Would be nicer having one more line of commit message stating where >> they are going to be used for future referenc

Re: [libav-devel] [PATCH 02/27] Add PIX_FMT_BGR48LE and PIX_FMT_BGR48BE pixel formats

2011-04-09 Thread Peter Ross
On Sat, Apr 09, 2011 at 02:36:13PM +0200, Luca Barbato wrote: > On 4/9/11 1:49 PM, Reinhard Tartler wrote: > >From: Peter Ross > > > > Would be nicer having one more line of commit message stating where > they are going to be used for future reference. Patch looks ok. Duly noted. PIX_FMT_BGR48LE

Re: [libav-devel] [PATCH 1/2] introduce side information for AVPacket

2011-04-09 Thread Kostya
On Sat, Apr 09, 2011 at 10:24:53PM +0800, can wu wrote: > On Sat, Apr 9, 2011 at 9:59 PM, Kostya Shishkov > wrote: > > > This implementation should work fine with multiple side information types > > present. > > > > --- > > libavcodec/avcodec.h | 41 + > > libavcodec/avpacket.c

Re: [libav-devel] [PATCH 22/27] Redefine sameq

2011-04-09 Thread Luca Barbato
On 04/09/2011 01:50 PM, Reinhard Tartler wrote: > I think the documentation of sameq is causing confusion and misuse of ok. -- Luca Barbato Gentoo/linux http://dev.gentoo.org/~lu_zero ___ libav-devel mailing list libav-devel@libav.org https://lists.l

Re: [libav-devel] [PATCH 1/2] introduce side information for AVPacket

2011-04-09 Thread can wu
On Sat, Apr 9, 2011 at 9:59 PM, Kostya Shishkov wrote: > This implementation should work fine with multiple side information types > present. > > --- > libavcodec/avcodec.h | 41 + > libavcodec/avpacket.c | 117 > > libavcodec/v

[libav-devel] [PATCH 2/2] make containers pass palette change in AVPacket

2011-04-09 Thread Kostya Shishkov
An example of usage, effectively deprecates AVPaletteControl too. --- libavcodec/8bps.c | 19 +-- libavcodec/cinepak.c| 19 +++ libavcodec/idcinvideo.c | 12 ++-- libavcodec/interplayvideo.c | 21 ++--- libavcod

[libav-devel] [PATCH 1/2] introduce side information for AVPacket

2011-04-09 Thread Kostya Shishkov
This implementation should work fine with multiple side information types present. --- libavcodec/avcodec.h | 41 + libavcodec/avpacket.c | 117 libavcodec/version.h |2 +- 3 files changed, 149 insertions(+), 11 deletions(-

Re: [libav-devel] [PATCH 24/27] Replace outdated info on the FAQ

2011-04-09 Thread Luca Barbato
On 04/09/2011 01:50 PM, Reinhard Tartler wrote: > From: Lou Logan > > FAQ could use some work. This updates a few little details. Seems ok. -- Luca Barbato Gentoo/linux http://dev.gentoo.org/~lu_zero ___ libav-devel mailing list libav-devel@libav.

Re: [libav-devel] [PATCH 1/7] avio: update file header.

2011-04-09 Thread Luca Barbato
The whole patchset seems fine to me. lu -- Luca Barbato Gentoo/linux http://dev.gentoo.org/~lu_zero ___ libav-devel mailing list libav-devel@libav.org https://lists.libav.org/mailman/listinfo/libav-devel

Re: [libav-devel] Misc cherry-picks from FFmpeg

2011-04-09 Thread Luca Barbato
On 4/9/11 1:48 PM, Reinhard Tartler wrote: Hi, I'll have only limited internet access for one week, but I still wanted to drop my pile of misc cherry-picks from FFmpeg. All of them touch doc/ in some way, but some have also other changes. Please feel free to push/rebase/squash them yourself, at

[libav-devel] [PATCH 6/7] avio: cosmetics, vertically align comments.

2011-04-09 Thread Anton Khirnov
--- libavformat/avio.h | 10 +- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/libavformat/avio.h b/libavformat/avio.h index e1c4876..b1bce4c 100644 --- a/libavformat/avio.h +++ b/libavformat/avio.h @@ -54,10 +54,10 @@ typedef struct { int (*read_packet)(void *opaque

[libav-devel] [PATCH 7/7] avio: document avio_close().

2011-04-09 Thread Anton Khirnov
--- libavformat/avio.h |6 ++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/libavformat/avio.h b/libavformat/avio.h index b1bce4c..cfe1bf8 100644 --- a/libavformat/avio.h +++ b/libavformat/avio.h @@ -559,6 +559,12 @@ int url_resetbuf(AVIOContext *s, int flags); */ int a

[libav-devel] [PATCH 3/7] avio: cosmetics, merge all the FF_API_OLD_AVIO blocks.

2011-04-09 Thread Anton Khirnov
--- libavformat/avio.h | 196 ++-- 1 files changed, 84 insertions(+), 112 deletions(-) diff --git a/libavformat/avio.h b/libavformat/avio.h index 5a354b2..73b023c 100644 --- a/libavformat/avio.h +++ b/libavformat/avio.h @@ -95,12 +95,38 @@ typedef

[libav-devel] [PATCH 4/7] avio: cosmetics, group the reading functions.

2011-04-09 Thread Anton Khirnov
--- libavformat/avio.h | 20 ++-- 1 files changed, 14 insertions(+), 6 deletions(-) diff --git a/libavformat/avio.h b/libavformat/avio.h index 73b023c..b30866c 100644 --- a/libavformat/avio.h +++ b/libavformat/avio.h @@ -461,13 +461,25 @@ void avio_flush(AVIOContext *s); */ i

[libav-devel] [PATCH 5/7] avio: document some members of AVIOContext.

2011-04-09 Thread Anton Khirnov
--- libavformat/avio.h | 12 1 files changed, 8 insertions(+), 4 deletions(-) diff --git a/libavformat/avio.h b/libavformat/avio.h index b30866c..e1c4876 100644 --- a/libavformat/avio.h +++ b/libavformat/avio.h @@ -43,10 +43,14 @@ * sizeof(AVIOContext) must not be used outside li

[libav-devel] [PATCH 2/7] avio: cosmetics, move AVIOContext to start of the file.

2011-04-09 Thread Anton Khirnov
--- libavformat/avio.h | 77 ++- 1 files changed, 39 insertions(+), 38 deletions(-) diff --git a/libavformat/avio.h b/libavformat/avio.h index 6dfed4a..5a354b2 100644 --- a/libavformat/avio.h +++ b/libavformat/avio.h @@ -32,6 +32,45 @@ #include

[libav-devel] [PATCH 1/7] avio: update file header.

2011-04-09 Thread Anton Khirnov
--- libavformat/avio.h |5 + 1 files changed, 1 insertions(+), 4 deletions(-) diff --git a/libavformat/avio.h b/libavformat/avio.h index 7bb8d17..6dfed4a 100644 --- a/libavformat/avio.h +++ b/libavformat/avio.h @@ -22,10 +22,7 @@ /** * @file - * unbuffered I/O operations - * - * @war

Re: [libav-devel] [PATCH 23/27] mpegts: Replace defines in with AVOptions

2011-04-09 Thread Ronald S. Bultje
Hi, On Sat, Apr 9, 2011 at 7:50 AM, Reinhard Tartler wrote: > From: Georgi Chorbadzhiyski > > This patch adds support for setting transport_stream_id, > original_network_id, service_id, pmt_start_pid and start_pid > in mpegts muxer. > > Signed-off-by: Ronald S. Bultje > (cherry picked from comm

Re: [libav-devel] [PATCH 26/27] Reword make fate patch checklist entry

2011-04-09 Thread Luca Barbato
On 4/9/11 1:50 PM, Reinhard Tartler wrote: From: compn Drop it. ___ libav-devel mailing list libav-devel@libav.org https://lists.libav.org/mailman/listinfo/libav-devel

Re: [libav-devel] [PATCH 18/27] pad: fix example explanation

2011-04-09 Thread Luca Barbato
On 4/9/11 1:50 PM, Reinhard Tartler wrote: From: Stefano Sabatini "row" and "column" term positions in the explanation were inverted. ok ___ libav-devel mailing list libav-devel@libav.org https://lists.libav.org/mailman/listinfo/libav-devel

Re: [libav-devel] [PATCH 17/27] mp: add filter description to filters.texi

2011-04-09 Thread Luca Barbato
On 4/9/11 1:50 PM, Reinhard Tartler wrote: From: Stefano Sabatini --- doc/filters.texi | 98 ++ 1 files changed, 98 insertions(+), 0 deletions(-) Doesn't apply here I guess. lu ___ libav-dev

Re: [libav-devel] [PATCH 15/27] img2: stop using CODEC_ID_RAWVIDEO to trigger processing of independant y/u/v image files

2011-04-09 Thread Luca Barbato
On 4/9/11 1:49 PM, Reinhard Tartler wrote: From: Peter Ross This is requireed, as img2 will be modified soon to support .raw image file sequences. The formatting and the commit message should be improved. ___ libav-devel mailing list libav-devel@li

Re: [libav-devel] [PATCH 02/27] Add PIX_FMT_BGR48LE and PIX_FMT_BGR48BE pixel formats

2011-04-09 Thread Luca Barbato
On 4/9/11 1:49 PM, Reinhard Tartler wrote: From: Peter Ross Would be nicer having one more line of commit message stating where they are going to be used for future reference. Patch looks ok. ___ libav-devel mailing list libav-devel@libav.org http

Re: [libav-devel] [PATCH 16/27] Match the documentation of -s with the current implementation.

2011-04-09 Thread Luca Barbato
On 4/9/11 1:49 PM, Reinhard Tartler wrote: From: Carl Eugen Hoyos --- doc/ffmpeg.texi |5 - 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/doc/ffmpeg.texi b/doc/ffmpeg.texi index 0fee4b7..4fa31f0 100644 --- a/doc/ffmpeg.texi +++ b/doc/ffmpeg.texi @@ -168,7 +168,10 @@ S

Re: [libav-devel] [PATCH 13/27] fix typo

2011-04-09 Thread Luca Barbato
On 4/9/11 1:49 PM, Reinhard Tartler wrote: From: Compn --- doc/git-howto.txt |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/doc/git-howto.txt b/doc/git-howto.txt index 3ac21c8..ba377c9 100644 --- a/doc/git-howto.txt +++ b/doc/git-howto.txt @@ -120,7 +120,7 @@ I. BAS

Re: [libav-devel] [PATCH 04/27] Apply misc fixes to the image2 muxer documentation.

2011-04-09 Thread Anton Khirnov
On Sat, Apr 09, 2011 at 01:49:47PM +0200, Reinhard Tartler wrote: > From: Stefano Sabatini > > The fixes were pointed out by Diego. > > Signed-off-by: Janne Grunau > (cherry picked from commit 0cad24ce9b02037c9cdad84cae905f96b04d7d4c) > --- > doc/muxers.texi |9 + > 1 files changed

Re: [libav-devel] [PATCH 21/27] Port drawtext filter by Hemanth from the libavfilter soc repo, with the following additions: * support to anti-aliased glyph rendering * support to UTF-8 text and Unico

2011-04-09 Thread Anton Khirnov
This one is already under review on our ML. -- Anton Khirnov signature.asc Description: Digital signature ___ libav-devel mailing list libav-devel@libav.org https://lists.libav.org/mailman/listinfo/libav-devel

Re: [libav-devel] [PATCH 12/27] ffmpeg.c: rename map_meta_data option to map_metadata

2011-04-09 Thread Anton Khirnov
On Sat, Apr 09, 2011 at 02:19:05PM +0200, Kostya wrote: > On Sat, Apr 09, 2011 at 01:49:55PM +0200, Reinhard Tartler wrote: > > From: Anton Khirnov > > > > It's consistent with the -metadata option and easier to write. > > > > Signed-off-by: Janne Grunau > > (cherry picked from commit 87e4d9b25

Re: [libav-devel] [PATCH] pthread: validate_thread_parameters() ignored slice-threading being intentionally off

2011-04-09 Thread Ronald S. Bultje
Hi, On Sat, Apr 9, 2011 at 12:08 AM, Alexander Strange wrote: > On Sun, Apr 3, 2011 at 6:25 PM, Ronald S. Bultje wrote: >> Hi, >> >> On Sun, Apr 3, 2011 at 1:56 PM, Luca Barbato wrote: >>> On 04/03/2011 10:15 PM, Alexander Strange wrote: The thread_type API allows you to request only FF_TH

Re: [libav-devel] [PATCH 12/27] ffmpeg.c: rename map_meta_data option to map_metadata

2011-04-09 Thread Kostya
On Sat, Apr 09, 2011 at 01:49:55PM +0200, Reinhard Tartler wrote: > From: Anton Khirnov > > It's consistent with the -metadata option and easier to write. > > Signed-off-by: Janne Grunau > (cherry picked from commit 87e4d9b252bc6fa3b982f7050013069c9dc3e05b) > --- wasn't it applied here in the

Re: [libav-devel] [PATCH 25/27] Revert some silly renamings that leaked in from a pull.

2011-04-09 Thread Kostya
On Sat, Apr 09, 2011 at 01:50:08PM +0200, Reinhard Tartler wrote: > From: Michael Niedermayer > > --- > doc/build_system.txt |2 +- > libavcodec/arm/ac3dsp_init_arm.c |8 > 2 files changed, 5 insertions(+), 5 deletions(-) > > diff --git a/doc/build_system.txt b/doc/

Re: [libav-devel] [PATCH] add table with distro status

2011-04-09 Thread Reinhard Tartler
On Sat, Apr 09, 2011 at 12:22:48 (CEST), Luca Barbato wrote: > On 4/9/11 11:25 AM, Reinhard Tartler wrote: >> --- >> htdocs/default.css | 17 +++ >> src/download | 59 >> +-- >> 2 files changed, 73 insertions(+), 3 deletion

[libav-devel] [PATCH 21/27] Port drawtext filter by Hemanth from the libavfilter soc repo, with the following additions: * support to anti-aliased glyph rendering * support to UTF-8 text and Unicode c

2011-04-09 Thread Reinhard Tartler
From: Stefano Sabatini Signed-off-by: Michael Niedermayer --- configure |6 + doc/filters.texi | 112 libavfilter/Makefile |1 + libavfilter/allfilters.c |1 + libavfilter/vf_drawtext.c | 650 + 5

[libav-devel] [PATCH 27/27] scale: make the filter parametric

2011-04-09 Thread Reinhard Tartler
From: Stefano Sabatini Make the filter accept parametric expressions for the output video size. Signed-off-by: Stefano Sabatini --- doc/filters.texi | 60 --- libavfilter/avfilter.h |2 +- libavfilter/vf_scale.c | 94 +++

[libav-devel] [PATCH 25/27] Revert some silly renamings that leaked in from a pull.

2011-04-09 Thread Reinhard Tartler
From: Michael Niedermayer --- doc/build_system.txt |2 +- libavcodec/arm/ac3dsp_init_arm.c |8 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/build_system.txt b/doc/build_system.txt index 1011f57..fd7feac 100644 --- a/doc/build_system.txt +++ b/do

[libav-devel] [PATCH 24/27] Replace outdated info on the FAQ

2011-04-09 Thread Reinhard Tartler
From: Lou Logan FAQ could use some work. This updates a few little details. Signed-off-by: Michael Niedermayer --- doc/faq.texi | 14 +++--- 1 files changed, 7 insertions(+), 7 deletions(-) diff --git a/doc/faq.texi b/doc/faq.texi index 27b26b6..3daf44f 100644 --- a/doc/faq.texi +++

[libav-devel] [PATCH 26/27] Reword make fate patch checklist entry

2011-04-09 Thread Reinhard Tartler
From: compn Signed-off-by: Michael Niedermayer --- doc/developer.texi |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/doc/developer.texi b/doc/developer.texi index 430dc60..1736908 100644 --- a/doc/developer.texi +++ b/doc/developer.texi @@ -319,7 +319,7 @@ send a remi

[libav-devel] [PATCH 22/27] Redefine sameq

2011-04-09 Thread Reinhard Tartler
From: Lou Logan I think the documentation of sameq is causing confusion and misuse of this option. Signed-off-by: Michael Niedermayer --- doc/ffmpeg.texi |2 +- ffmpeg.c|2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/ffmpeg.texi b/doc/ffmpeg.texi index

[libav-devel] [PATCH 23/27] mpegts: Replace defines in with AVOptions

2011-04-09 Thread Reinhard Tartler
From: Georgi Chorbadzhiyski This patch adds support for setting transport_stream_id, original_network_id, service_id, pmt_start_pid and start_pid in mpegts muxer. Signed-off-by: Ronald S. Bultje (cherry picked from commit 445996aa51f4f1d9a26456a8511988291a720ba0) --- libavformat/mpegtsenc.c |

[libav-devel] [PATCH 19/27] patch checklist:git format-patch Signed-off-by: Michael Niedermayer

2011-04-09 Thread Reinhard Tartler
From: Michael Niedermayer --- doc/developer.texi |7 +-- 1 files changed, 1 insertions(+), 6 deletions(-) diff --git a/doc/developer.texi b/doc/developer.texi index ec196d7..e55f70b 100644 --- a/doc/developer.texi +++ b/doc/developer.texi @@ -323,7 +323,7 @@ send a reminder by email. Yo

[libav-devel] [PATCH 20/27] patch checklist:uggest fate instead of regression tests Signed-off-by: Michael Niedermayer

2011-04-09 Thread Reinhard Tartler
From: Michael Niedermayer --- doc/developer.texi |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/doc/developer.texi b/doc/developer.texi index e55f70b..430dc60 100644 --- a/doc/developer.texi +++ b/doc/developer.texi @@ -319,7 +319,7 @@ send a reminder by email. Your pa

[libav-devel] [PATCH 17/27] mp: add filter description to filters.texi

2011-04-09 Thread Reinhard Tartler
From: Stefano Sabatini --- doc/filters.texi | 98 ++ 1 files changed, 98 insertions(+), 0 deletions(-) diff --git a/doc/filters.texi b/doc/filters.texi index a973f74..952b80c 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -668,6 +66

[libav-devel] [PATCH 18/27] pad: fix example explanation

2011-04-09 Thread Reinhard Tartler
From: Stefano Sabatini "row" and "column" term positions in the explanation were inverted. Signed-off-by: Stefano Sabatini --- doc/filters.texi |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/doc/filters.texi b/doc/filters.texi index 952b80c..33e621a 100644 --- a/doc/

[libav-devel] [PATCH 12/27] ffmpeg.c: rename map_meta_data option to map_metadata

2011-04-09 Thread Reinhard Tartler
From: Anton Khirnov It's consistent with the -metadata option and easier to write. Signed-off-by: Janne Grunau (cherry picked from commit 87e4d9b252bc6fa3b982f7050013069c9dc3e05b) --- ffmpeg.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/ffmpeg.c b/ffmpeg.c index 4

[libav-devel] [PATCH 16/27] Match the documentation of -s with the current implementation.

2011-04-09 Thread Reinhard Tartler
From: Carl Eugen Hoyos --- doc/ffmpeg.texi |5 - 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/doc/ffmpeg.texi b/doc/ffmpeg.texi index 0fee4b7..4fa31f0 100644 --- a/doc/ffmpeg.texi +++ b/doc/ffmpeg.texi @@ -168,7 +168,10 @@ Set the number of video frames to record. @ite

[libav-devel] [PATCH 04/27] Apply misc fixes to the image2 muxer documentation.

2011-04-09 Thread Reinhard Tartler
From: Stefano Sabatini The fixes were pointed out by Diego. Signed-off-by: Janne Grunau (cherry picked from commit 0cad24ce9b02037c9cdad84cae905f96b04d7d4c) --- doc/muxers.texi |9 + 1 files changed, 5 insertions(+), 4 deletions(-) diff --git a/doc/muxers.texi b/doc/muxers.texi in

[libav-devel] [PATCH 15/27] img2: stop using CODEC_ID_RAWVIDEO to trigger processing of independant y/u/v image files

2011-04-09 Thread Reinhard Tartler
From: Peter Ross This is requireed, as img2 will be modified soon to support .raw image file sequences. Signed-off-by: Michael Niedermayer --- doc/muxers.texi|6 ++ libavformat/img2.c | 12 +--- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/doc/muxers.t

[libav-devel] [PATCH 13/27] fix typo

2011-04-09 Thread Reinhard Tartler
From: Compn --- doc/git-howto.txt |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/doc/git-howto.txt b/doc/git-howto.txt index 3ac21c8..ba377c9 100644 --- a/doc/git-howto.txt +++ b/doc/git-howto.txt @@ -120,7 +120,7 @@ I. BASICS: For cosmetics-only commits you shoul

[libav-devel] [PATCH 14/27] gradfun: add notice from the MPlayer manual

2011-04-09 Thread Reinhard Tartler
From: Stefano Sabatini Add notice telling that the filter is designed for playback only. --- doc/filters.texi |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/doc/filters.texi b/doc/filters.texi index 4e6796f..a973f74 100644 --- a/doc/filters.texi +++ b/doc/filters.tex

[libav-devel] [PATCH 08/27] drawtext: add documentation for the shadow parameters

2011-04-09 Thread Reinhard Tartler
From: Stefano Sabatini --- doc/filters.texi | 11 +++ 1 files changed, 11 insertions(+), 0 deletions(-) diff --git a/doc/filters.texi b/doc/filters.texi index db0f208..5d7405e 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -418,6 +418,17 @@ Used to draw a box around text usin

[libav-devel] [PATCH 10/27] drawtext: fix wrong reference in boxcolor option description

2011-04-09 Thread Reinhard Tartler
From: Stefano Sabatini --- doc/filters.texi |3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/doc/filters.texi b/doc/filters.texi index f9af588..4e6796f 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -410,8 +410,7 @@ The default value of @var{fontcolor} is "blac

[libav-devel] [PATCH 09/27] drawtext: extend/clarify examples in the filter description

2011-04-09 Thread Reinhard Tartler
From: Stefano Sabatini --- doc/filters.texi | 18 ++ 1 files changed, 14 insertions(+), 4 deletions(-) diff --git a/doc/filters.texi b/doc/filters.texi index 5d7405e..f9af588 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -465,12 +465,22 @@ Default value is 4. For

[libav-devel] [PATCH 11/27] eval: add support for trunc, ceil, and floor functions

2011-04-09 Thread Reinhard Tartler
From: Stefano Sabatini Signed-off-by: Stefano Sabatini --- doc/eval.texi | 12 libavutil/avutil.h |2 +- libavutil/eval.c | 21 +++-- 3 files changed, 32 insertions(+), 3 deletions(-) diff --git a/doc/eval.texi b/doc/eval.texi index a989a37..d8c693f

[libav-devel] [PATCH 05/27] documentation: add setdar and setsar description to filters.texi

2011-04-09 Thread Reinhard Tartler
From: Stefano Sabatini --- doc/filters.texi | 56 ++ 1 files changed, 56 insertions(+), 0 deletions(-) diff --git a/doc/filters.texi b/doc/filters.texi index 3194305..f77e9c9 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -789,6 +78

[libav-devel] [PATCH 03/27] Add sample_aspect_ratio fields to vsrc_buffer arguments. This fixes aspect handling in ffmpeg This is based on a patch by baptiste

2011-04-09 Thread Reinhard Tartler
From: Michael Niedermayer --- doc/APIchanges|3 +++ doc/filters.texi | 11 --- ffmpeg.c | 18 -- libavfilter/avfilter.h|2 +- libavfilter/vsrc_buffer.c |7 +-- 5 files changed, 33 insertions(+), 8 deletions(-)

[libav-devel] [PATCH 07/27] documentation: sort filter descriptions in filters.texi

2011-04-09 Thread Reinhard Tartler
From: Stefano Sabatini Change position of the fade filter description, put it between drawtext and fifo descriptions. --- doc/filters.texi | 114 ++ 1 files changed, 114 insertions(+), 0 deletions(-) diff --git a/doc/filters.texi b/doc/filter

[libav-devel] [PATCH 06/27] documentation: extend documentation for ffmpeg -aspect option

2011-04-09 Thread Reinhard Tartler
From: Stefano Sabatini --- doc/ffmpeg.texi |8 +++- 1 files changed, 7 insertions(+), 1 deletions(-) diff --git a/doc/ffmpeg.texi b/doc/ffmpeg.texi index 21c6f2c..0fee4b7 100644 --- a/doc/ffmpeg.texi +++ b/doc/ffmpeg.texi @@ -232,7 +232,13 @@ The following abbreviations are recognized:

[libav-devel] [PATCH 02/27] Add PIX_FMT_BGR48LE and PIX_FMT_BGR48BE pixel formats

2011-04-09 Thread Reinhard Tartler
From: Peter Ross Signed-off-by: Michael Niedermayer --- doc/APIchanges |3 +++ libavutil/avutil.h |2 +- libavutil/pixdesc.c | 23 +++ libavutil/pixfmt.h |3 +++ 4 files changed, 30 insertions(+), 1 deletions(-) diff --git a/doc/APIchanges b/doc/APIchan

[libav-devel] [PATCH 01/27] Add documentation for the image2 muxer.

2011-04-09 Thread Reinhard Tartler
From: Stefano Sabatini Signed-off-by: Ronald S. Bultje (cherry picked from commit e771d2e3fef4d2bcfc08b9eb37296f0e0af1f607) --- doc/muxers.texi |9 - 1 files changed, 4 insertions(+), 5 deletions(-) diff --git a/doc/muxers.texi b/doc/muxers.texi index ead9869..a65b914 100644 --- a/

[libav-devel] Misc cherry-picks from FFmpeg

2011-04-09 Thread Reinhard Tartler
Hi, I'll have only limited internet access for one week, but I still wanted to drop my pile of misc cherry-picks from FFmpeg. All of them touch doc/ in some way, but some have also other changes. Please feel free to push/rebase/squash them yourself, at least until I'll return home again. regards

Re: [libav-devel] [PATCH 1/5] lavf: mark av_pkt_dump(_log) for remove on $next+1 bump.

2011-04-09 Thread Luca Barbato
On 4/9/11 7:32 AM, Anton Khirnov wrote: On Fri, Apr 08, 2011 at 11:37:24PM -0400, Alexander Strange wrote: On Apr 8, 2011, at 5:48 AM, Anton Khirnov wrote: --- libavformat/avformat.h |4 +++- libavformat/utils.c|4 libavformat/version.h |3 +++ 3 files changed, 10 insertion

Re: [libav-devel] [PATCH 1/3] Add avio_check() function.

2011-04-09 Thread Anton Khirnov
On Sat, Apr 09, 2011 at 02:47:35AM +0200, Stefano Sabatini wrote: > From b563c12cb285f1e6eb8dc19d1a18323cd9280ea1 Mon Sep 17 00:00:00 2001 > From: Stefano Sabatini > Date: Fri, 8 Apr 2011 18:32:25 +0200 > Subject: [PATCH] avio: add avio_check() > > The new function is more flexible than url_exist

Re: [libav-devel] [PATCH] add table with distro status

2011-04-09 Thread Luca Barbato
On 4/9/11 11:25 AM, Reinhard Tartler wrote: --- htdocs/default.css | 17 +++ src/download | 59 +-- 2 files changed, 73 insertions(+), 3 deletions(-) diff --git a/htdocs/default.css b/htdocs/default.css index 8195c86..306a

Re: [libav-devel] [PATCH 1/2] Error out if vaapi is not found

2011-04-09 Thread Reinhard Tartler
On Mon, Apr 04, 2011 at 15:24:19 (CEST), Luca Barbato wrote: > Make the behaviour consistent with the other external deps. > --- > configure |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/configure b/configure > index fab4f2b..7755f28 100755 > --- a/configure > +++

[libav-devel] [PATCH] add table with distro status

2011-04-09 Thread Reinhard Tartler
--- htdocs/default.css | 17 +++ src/download | 59 +-- 2 files changed, 73 insertions(+), 3 deletions(-) diff --git a/htdocs/default.css b/htdocs/default.css index 8195c86..306acb9 100644 --- a/htdocs/default.css +++ b/htdocs/