Re: [libav-devel] [PATCH 2/2] doxygen: remove obsolete options from Doxyfile

2012-10-28 Thread Reinhard Tartler
On Sun, Oct 28, 2012 at 12:48 AM, Janne Grunau janne-li...@jannau.net wrote: The options USE_INLINE_TREES, SHOW_DIRECTORIES and HTML_ALIGN_MEMBERS became obsolete with doxygen 1.8.1 (releaded 2012-05-19). The generated outpu for older doxygen versions should not change since they were set to

Re: [libav-devel] [PATCH 2/2] doxygen: remove obsolete options from Doxyfile

2012-10-28 Thread Janne Grunau
On 2012-10-28 04:18:44 +0100, Luca Barbato wrote: On 10/28/2012 12:48 AM, Janne Grunau wrote: The options USE_INLINE_TREES, SHOW_DIRECTORIES and HTML_ALIGN_MEMBERS became obsolete with doxygen 1.8.1 (releaded 2012-05-19). The generated outpu for older doxygen versions should not change

Re: [libav-devel] [PATCH 2/2] doxygen: remove obsolete options from Doxyfile

2012-10-28 Thread Janne Grunau
On 2012-10-28 09:15:27 +0100, Reinhard Tartler wrote: On Sun, Oct 28, 2012 at 12:48 AM, Janne Grunau janne-li...@jannau.net wrote: The options USE_INLINE_TREES, SHOW_DIRECTORIES and HTML_ALIGN_MEMBERS became obsolete with doxygen 1.8.1 (releaded 2012-05-19). The generated outpu for older

Re: [libav-devel] [RFC PATCH 1/2] doc: build doxygen API documentation

2012-10-28 Thread Janne Grunau
On 2012-10-28 00:18:16 +0100, Måns Rullgård wrote: Janne Grunau janne-li...@jannau.net writes: Can be enabled with the configure option --enable-apidoc or by 'make apidoc' in the build directory. --- Makefile| 1 + configure | 4 doc/Makefile|

Re: [libav-devel] [PATCH] rtsp: Avoid a cast when calling strtol

2012-10-28 Thread Luca Barbato
On 10/28/12 7:56 PM, Martin Storsjö wrote: This gets rid of this warning: libavformat/rtsp.c: In function ‘rtsp_parse_transport’: libavformat/rtsp.c:794: warning: cast discards qualifiers from pointer target type --- libavformat/rtsp.c |4 +++- 1 file changed, 3 insertions(+), 1

Re: [libav-devel] [PATCH] nut: support textual data

2012-10-28 Thread Luca Barbato
On 10/25/12 2:05 PM, Luca Barbato wrote: Plain text (utf8 encoded) data can be muxed and demuxed in nut. --- libavformat/nut.c| 7 ++- libavformat/nut.h| 1 + libavformat/nutdec.c | 1 + 3 files changed, 8 insertions(+), 1 deletion(-) Ping.

[libav-devel] [PATCH 1/2] lavr: add general API usage doxy

2012-10-28 Thread Anton Khirnov
--- libavresample/avresample.h | 70 libavutil/avutil.h |1 + 2 files changed, 71 insertions(+), 0 deletions(-) diff --git a/libavresample/avresample.h b/libavresample/avresample.h index ea93952..902d239 100644 ---

[libav-devel] [PATCH 2/2] lavr: document upper bound on number of output samples.

2012-10-28 Thread Anton Khirnov
--- libavresample/avresample.h |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/libavresample/avresample.h b/libavresample/avresample.h index 902d239..b80691d 100644 --- a/libavresample/avresample.h +++ b/libavresample/avresample.h @@ -264,6 +264,10 @@ int

Re: [libav-devel] [PATCH] lavfi: add ashowinfo filter

2012-10-28 Thread Anton Khirnov
On Tue, 23 Oct 2012 21:55:13 +0200, Diego Biurrun di...@biurrun.de wrote: On Tue, Oct 23, 2012 at 09:40:08PM +0200, Anton Khirnov wrote: --- a/doc/filters.texi +++ b/doc/filters.texi @@ -175,6 +175,47 @@ stream ends. The default value is 2 seconds. + +@item pts +presentation

Re: [libav-devel] [PATCH] nut: support textual data

2012-10-28 Thread Janne Grunau
On 2012-10-25 14:05:40 +0200, Luca Barbato wrote: Plain text (utf8 encoded) data can be muxed and demuxed in nut. --- libavformat/nut.c| 7 ++- libavformat/nut.h| 1 + libavformat/nutdec.c | 1 + 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/libavformat/nut.c

[libav-devel] [PATCH 1/2] Remove usage of INIT_AVX in h264_intrapred_10bit.asm.

2012-10-28 Thread Ronald S. Bultje
From: Ronald S. Bultje rsbul...@gmail.com --- libavcodec/x86/h264_intrapred_10bit.asm | 306 libavcodec/x86/h264_intrapred_init.c| 40 ++--- 2 files changed, 177 insertions(+), 169 deletions(-) diff --git a/libavcodec/x86/h264_intrapred_10bit.asm

[libav-devel] [PATCH 2/2] Remove INIT_AVX from x86inc.asm.

2012-10-28 Thread Ronald S. Bultje
From: Ronald S. Bultje rsbul...@gmail.com --- libavutil/x86/x86inc.asm | 8 1 file changed, 8 deletions(-) diff --git a/libavutil/x86/x86inc.asm b/libavutil/x86/x86inc.asm index d734c6e..1fe9f55 100644 --- a/libavutil/x86/x86inc.asm +++ b/libavutil/x86/x86inc.asm @@ -678,14 +678,6 @@

[libav-devel] [PATCH 1/2] Use PRED4x4/8x8/8x8L/16x16 macros to declare x86 intrapred prototypes.

2012-10-28 Thread Ronald S. Bultje
From: Ronald S. Bultje rsbul...@gmail.com --- libavcodec/x86/h264_intrapred.asm| 80 +- libavcodec/x86/h264_intrapred_init.c | 296 ++- 2 files changed, 190 insertions(+), 186 deletions(-) diff --git a/libavcodec/x86/h264_intrapred.asm

[libav-devel] [PATCH 2/2] Use ptrdiff_t instead of int for intra pred stride function parameter.

2012-10-28 Thread Ronald S. Bultje
From: Ronald S. Bultje rsbul...@gmail.com --- libavcodec/arm/h264pred_init_arm.c | 36 +++--- libavcodec/h264pred.c| 79 libavcodec/h264pred.h| 18 +-- libavcodec/h264pred_template.c | 233 +--