Re: [libav-devel] [PATCH 2/3] swscale: split chroma buffers into separate U/V planes.

2011-05-28 Thread Måns Rullgård
"Ronald S. Bultje" writes: > Hi, > > On Sat, May 28, 2011 at 3:36 PM, Yuriy Kaminskiy wrote: >> Ronald S. Bultje wrote: >>> Hi, >>> >>> On Fri, May 27, 2011 at 6:30 AM, Gil Pedersen wrote: On 25/05/2011, at 20.38, Ronald S. Bultje wrote: > Preparatory step to implement support for

Re: [libav-devel] [PATCH] swscale: Remove disabled code.

2011-05-28 Thread Ronald S. Bultje
Hi, On Sat, May 28, 2011 at 9:34 AM, Ronald S. Bultje wrote: > On Fri, May 27, 2011 at 3:27 PM, Diego Biurrun wrote: >> On Thu, May 26, 2011 at 01:09:29AM +0200, Diego Biurrun wrote: >>> --- >>>  libswscale/ppc/yuv2rgb_altivec.c  |  152 >>> - >>>  libswscale/

Re: [libav-devel] [PATCH 2/3] swscale: split chroma buffers into separate U/V planes.

2011-05-28 Thread Ronald S. Bultje
Hi, On Sat, May 28, 2011 at 3:36 PM, Yuriy Kaminskiy wrote: > Ronald S. Bultje wrote: >> Hi, >> >> On Fri, May 27, 2011 at 6:30 AM, Gil Pedersen wrote: >>> On 25/05/2011, at 20.38, Ronald S. Bultje wrote: >>> Preparatory step to implement support for sizes > VOFW. --- libswscale/s

Re: [libav-devel] [PATCH] vp8: use av_clip_uintp2() where possible

2011-05-28 Thread Ronald S. Bultje
Hi, On Sat, May 28, 2011 at 12:45 PM, Mans Rullgard wrote: > Signed-off-by: Mans Rullgard > --- >  libavcodec/vp8.c |   12 ++-- >  1 files changed, 6 insertions(+), 6 deletions(-) > > diff --git a/libavcodec/vp8.c b/libavcodec/vp8.c > index 38f38b7..5500706 100644 > --- a/libavcodec/vp8.

Re: [libav-devel] [PATCH] swscale: fix non-bitexact yuv2yuv[X2]() MMX/MMX2 functions.

2011-05-28 Thread Luca Barbato
On 05/27/2011 04:41 PM, Diego Biurrun wrote: > On Fri, May 27, 2011 at 09:29:08AM -0400, Ronald S. Bultje wrote: >> --- >> libswscale/x86/swscale_template.c | 10 ++ >> 1 files changed, 6 insertions(+), 4 deletions(-) > > Can we please have more descriptive commit messages? > > You are

Re: [libav-devel] [PATCH] ac3enc: fix LOCAL_ALIGNED usage in count_mantissa_bits()

2011-05-28 Thread Luca Barbato
On 05/28/2011 09:27 PM, Mans Rullgard wrote: > Signed-off-by: Mans Rullgard > --- > libavcodec/ac3enc.c |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/libavcodec/ac3enc.c b/libavcodec/ac3enc.c > index 66dfc29..dbe7784 100644 > --- a/libavcodec/ac3enc.c > +++ b/lib

Re: [libav-devel] [PATCH 1/3] webm: support stereo videos in matroska/webm muxer

2011-05-28 Thread Luca Barbato
On 05/28/2011 07:41 PM, Kirill Gavrilov wrote: > That is, this is per-stream information. MKV-muxer just has special flag for I guess AVOptions + side data would make more sense then. lu -- Luca Barbato Gentoo/linux http://dev.gentoo.org/~lu_zero __

Re: [libav-devel] [PATCH] ac3dsp: do not use the ff_* prefix when referencing ff_ac3_bap_bits.

2011-05-28 Thread Martin Storsjö
On Sat, 28 May 2011, Martin Storsjö wrote: > On Sat, 28 May 2011, Justin Ruggles wrote: > > > > > this should fix the windows builds > > --- > > Could someone test this in mingw32 and/or cygwin to see if this fixes the > > build? > > Tested on mingw32 - it fixes the build there. And pushed.

Re: [libav-devel] [PATCH 2/3] swscale: split chroma buffers into separate U/V planes.

2011-05-28 Thread Yuriy Kaminskiy
Ronald S. Bultje wrote: > Hi, > > On Fri, May 27, 2011 at 6:30 AM, Gil Pedersen wrote: >> On 25/05/2011, at 20.38, Ronald S. Bultje wrote: >> >>> Preparatory step to implement support for sizes > VOFW. >>> --- >>> libswscale/swscale.c | 68 --- >>> libswscale/swscale_internal.h

Re: [libav-devel] [PATCH] ac3dsp: do not use the ff_* prefix when referencing ff_ac3_bap_bits.

2011-05-28 Thread Dave Yeo
On 05/28/11 11:39 am, Justin Ruggles wrote: this should fix the windows builds --- Could someone test this in mingw32 and/or cygwin to see if this fixes the build? libavcodec/x86/ac3dsp.asm |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) FYI it fixed the OS/2 build which had

Re: [libav-devel] [PATCH] ac3dsp: do not use the ff_* prefix when referencing ff_ac3_bap_bits.

2011-05-28 Thread Martin Storsjö
On Sat, 28 May 2011, Justin Ruggles wrote: > > this should fix the windows builds > --- > Could someone test this in mingw32 and/or cygwin to see if this fixes the > build? Tested on mingw32 - it fixes the build there. // Martin ___ libav-devel maili

[libav-devel] [PATCH] ac3enc: fix LOCAL_ALIGNED usage in count_mantissa_bits()

2011-05-28 Thread Mans Rullgard
Signed-off-by: Mans Rullgard --- libavcodec/ac3enc.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/libavcodec/ac3enc.c b/libavcodec/ac3enc.c index 66dfc29..dbe7784 100644 --- a/libavcodec/ac3enc.c +++ b/libavcodec/ac3enc.c @@ -1519,7 +1519,7 @@ static void count_manti

[libav-devel] [PATCH] ac3dsp: do not use the ff_* prefix when referencing ff_ac3_bap_bits.

2011-05-28 Thread Justin Ruggles
this should fix the windows builds --- Could someone test this in mingw32 and/or cygwin to see if this fixes the build? libavcodec/x86/ac3dsp.asm |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/x86/ac3dsp.asm b/libavcodec/x86/ac3dsp.asm index 0d8f4b7..6892e

Re: [libav-devel] [PATCH] ac3dsp: 10l: fix loop condition in ac3_update_bap_counts_c()

2011-05-28 Thread Måns Rullgård
Justin Ruggles writes: > --- > libavcodec/ac3dsp.c |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > > diff --git a/libavcodec/ac3dsp.c b/libavcodec/ac3dsp.c > index de58f3a..8ce5f8d 100644 > --- a/libavcodec/ac3dsp.c > +++ b/libavcodec/ac3dsp.c > @@ -131,7 +131,7 @@ static void

[libav-devel] [PATCH] ac3dsp: 10l: fix loop condition in ac3_update_bap_counts_c()

2011-05-28 Thread Justin Ruggles
--- libavcodec/ac3dsp.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/libavcodec/ac3dsp.c b/libavcodec/ac3dsp.c index de58f3a..8ce5f8d 100644 --- a/libavcodec/ac3dsp.c +++ b/libavcodec/ac3dsp.c @@ -131,7 +131,7 @@ static void ac3_bit_alloc_calc_bap_c(int16_t *mask, int1

Re: [libav-devel] [PATCH 1/3] webm: support stereo videos in matroska/webm muxer

2011-05-28 Thread Kirill Gavrilov
On Sat, 28 May 2011 18:32:25 +0200, Luca Barbato wrote: > Not sure, that is a property of the stream not of the muxer. > That is, this is per-stream information. MKV-muxer just has special flag for that. On Sat, May 28, 2011 at 8:44 PM, Anton Khirnov wrote: > This needs some matroska-level sup

Re: [libav-devel] [PATCH] ARM: unbreak build

2011-05-28 Thread Justin Ruggles
On 05/28/2011 01:36 PM, Mans Rullgard wrote: > Signed-off-by: Mans Rullgard > --- > libavcodec/arm/Makefile |1 - > 1 files changed, 0 insertions(+), 1 deletions(-) > > diff --git a/libavcodec/arm/Makefile b/libavcodec/arm/Makefile > index a5abfdd..a5a5dfa 100644 > --- a/libavcodec/arm/Make

[libav-devel] [PATCH] ARM: unbreak build

2011-05-28 Thread Mans Rullgard
Signed-off-by: Mans Rullgard --- libavcodec/arm/Makefile |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/libavcodec/arm/Makefile b/libavcodec/arm/Makefile index a5abfdd..a5a5dfa 100644 --- a/libavcodec/arm/Makefile +++ b/libavcodec/arm/Makefile @@ -1,5 +1,4 @@ OBJS-$(CON

Re: [libav-devel] [PATCH 1/5] bktr: add a framerate private option.

2011-05-28 Thread Stefano Sabatini
On date Saturday 2011-05-28 18:19:20 +0200, Anton Khirnov encoded: > On Sat, 28 May 2011 11:42:55 +0200, Stefano Sabatini > wrote: [...] > > Whatever, that was I called av_parse_video_rate(), but that's not > > important. > > > > If you want to go with framerate: > > char *framerate_string

Re: [libav-devel] [PATCH] parseutils: add av_parse_number() function and children, and use them in the ff* tools

2011-05-28 Thread Stefano Sabatini
On date Saturday 2011-05-28 06:57:10 -0400, Ronald S. Bultje encoded: > Hi, > > On Sat, May 28, 2011 at 5:43 AM, Stefano Sabatini > wrote: > > * the function code knows exactly why the failure happened, and can > >  provide useful hints for spotting the problem, which can't be done > >  in the ca

[libav-devel] [PATCH] vp8: use av_clip_uintp2() where possible

2011-05-28 Thread Mans Rullgard
Signed-off-by: Mans Rullgard --- libavcodec/vp8.c | 12 ++-- 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/libavcodec/vp8.c b/libavcodec/vp8.c index 38f38b7..5500706 100644 --- a/libavcodec/vp8.c +++ b/libavcodec/vp8.c @@ -166,12 +166,12 @@ static void get_quants(VP8Con

Re: [libav-devel] [PATCH 1/3] webm: support stereo videos in matroska/webm muxer

2011-05-28 Thread Anton Khirnov
On Sat, 28 May 2011 18:32:25 +0200, Luca Barbato wrote: > On 05/28/2011 06:25 PM, Anton Khirnov wrote: > > > > On Sat, 28 May 2011 09:08:13 +0200, Reinhard Tartler > > wrote: > >> From: Alok Ahuja > >> > >> Create a stereo_mode metadata tag to specify the stereo 3d video layout > >> using the

Re: [libav-devel] [PATCH 1/3] webm: support stereo videos in matroska/webm muxer

2011-05-28 Thread Luca Barbato
On 05/28/2011 06:25 PM, Anton Khirnov wrote: > > On Sat, 28 May 2011 09:08:13 +0200, Reinhard Tartler > wrote: >> From: Alok Ahuja >> >> Create a stereo_mode metadata tag to specify the stereo 3d video layout >> using the StereoMode tag in a matroska/webm video track. >> --- >> doc/muxers.texi

Re: [libav-devel] [PATCH 1/3] webm: support stereo videos in matroska/webm muxer

2011-05-28 Thread Anton Khirnov
On Sat, 28 May 2011 09:08:13 +0200, Reinhard Tartler wrote: > From: Alok Ahuja > > Create a stereo_mode metadata tag to specify the stereo 3d video layout > using the StereoMode tag in a matroska/webm video track. > --- > doc/muxers.texi | 63 > +++

Re: [libav-devel] [PATCH 1/5] bktr: add a framerate private option.

2011-05-28 Thread Anton Khirnov
On Sat, 28 May 2011 11:42:55 +0200, Stefano Sabatini wrote: > On date Saturday 2011-05-28 11:21:41 +0200, Anton Khirnov encoded: > > On Sat, 28 May 2011 10:00:14 +0200, Stefano Sabatini > > wrote: > > > On date Saturday 2011-05-28 07:51:22 +0200, Anton Khirnov encoded: > > > > --- > > > > li

[libav-devel] [PATCH] vpxenc: support constant quality rate control

2011-05-28 Thread Luca Barbato
From: James Zern Add CQ_LEVEL mapping via the equivalent AVCodecContext::crf modifying the range allowed by options.c (0-51 -> 0-63) update configure check to require libvpx 0.9.6 (Bali) Signed-off-by: Luca Barbato --- configure |4 ++-- libavcodec/libvpxenc.c |4 li

Re: [libav-devel] [PATCH] get_bits: add av_unused tag to cache variable

2011-05-28 Thread Kostya
On Sat, May 28, 2011 at 03:47:10PM +0100, Mans Rullgard wrote: > This silences numerous compiler warnings from skip_bits(), > where the cache variable is not used. > > Signed-off-by: Mans Rullgard > --- > libavcodec/get_bits.h |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > di

[libav-devel] [PATCH] get_bits: add av_unused tag to cache variable

2011-05-28 Thread Mans Rullgard
This silences numerous compiler warnings from skip_bits(), where the cache variable is not used. Signed-off-by: Mans Rullgard --- libavcodec/get_bits.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/libavcodec/get_bits.h b/libavcodec/get_bits.h index 185ff31..4136498 1

Re: [libav-devel] [PATCH] lavu: add av_get_pix_fmt_name() convenience function

2011-05-28 Thread Ronald S. Bultje
Hi, On Sat, May 28, 2011 at 3:36 AM, Stefano Sabatini wrote: > On date Saturday 2011-05-28 07:14:39 +0200, Anton Khirnov encoded: >> >> On Fri, 27 May 2011 21:03:49 -0400, Justin Ruggles >> wrote: >> > On 05/27/2011 08:39 PM, Stefano Sabatini wrote: >> > >> > > Also deprecate avcodec_get_pix_fm

Re: [libav-devel] [PATCH] ac3enc: use LOCAL_ALIGNED macro

2011-05-28 Thread Luca Barbato
On 05/28/2011 02:39 PM, Mans Rullgard wrote: > Aligned local variables must use the LOCAL_ALIGNED macro to ensure > correct alignment on all systems. The unusual size argument to > memset is required since the implementation of LOCAL_ALIGNED may > use a pointer to an array. > > Signed-off-by: Man

Re: [libav-devel] [PATCH 4/4] ARM: aacdec: fix constraints on inline asm

2011-05-28 Thread Kostya
On Sat, May 28, 2011 at 01:40:26PM +0100, Mans Rullgard wrote: > This adds output operands for modified memory allowing the > volatile qualifiers to be dropped. > > Signed-off-by: Mans Rullgard > --- > libavcodec/arm/aac.h | 153 + > 1 files chang

Re: [libav-devel] [PATCH] cmdutils: remove OPT_FUNC2

2011-05-28 Thread Ronald S. Bultje
Hi, On Fri, May 27, 2011 at 9:13 PM, Ronald S. Bultje wrote: > On Fri, May 27, 2011 at 7:53 PM, Stefano Sabatini > wrote: >> Make ff* tools only accept opt_* functions taking two arguments. >> >> The distinction between functions with one and two arguments is quite >> pointless. Simplify parse_o

Re: [libav-devel] [PATCH 3/4] ARM: remove unnecessary volatile from inline asm

2011-05-28 Thread Kostya
On Sat, May 28, 2011 at 01:40:25PM +0100, Mans Rullgard wrote: > Signed-off-by: Mans Rullgard > --- > libavcodec/arm/mathops.h|2 +- > libavcodec/arm/vp56_arith.h | 66 +- > 2 files changed, 34 insertions(+), 34 deletions(-) ok if you trust GCC _

Re: [libav-devel] [PATCH 2/4] ARM: add "cc" clobbers to inline asm where needed

2011-05-28 Thread Kostya
On Sat, May 28, 2011 at 01:40:24PM +0100, Mans Rullgard wrote: > Signed-off-by: Mans Rullgard > --- > libavcodec/arm/aac.h|2 +- > libavcodec/arm/mathops.h|3 ++- > libavcodec/arm/vp56_arith.h |6 -- > 3 files changed, 7 insertions(+), 4 deletions(-) lgtm

Re: [libav-devel] [PATCH 1/4] ARM: improve FASTDIV asm

2011-05-28 Thread Kostya
On Sat, May 28, 2011 at 01:40:23PM +0100, Mans Rullgard wrote: > This uses one register less. Also add missing "cc" clobber. > > Signed-off-by: Mans Rullgard > --- > libavutil/arm/intmath.h | 12 ++-- > 1 files changed, 6 insertions(+), 6 deletions(-) looks ok ___

Re: [libav-devel] [PATCH] swscale: Remove disabled code.

2011-05-28 Thread Ronald S. Bultje
Hi, On Fri, May 27, 2011 at 3:27 PM, Diego Biurrun wrote: > On Thu, May 26, 2011 at 01:09:29AM +0200, Diego Biurrun wrote: >> --- >>  libswscale/ppc/yuv2rgb_altivec.c  |  152 >> - >>  libswscale/rgb2rgb_template.c     |    7 -- >>  libswscale/x86/rgb2rgb_templ

[libav-devel] [PATCH 3/4] ARM: remove unnecessary volatile from inline asm

2011-05-28 Thread Mans Rullgard
Signed-off-by: Mans Rullgard --- libavcodec/arm/mathops.h|2 +- libavcodec/arm/vp56_arith.h | 66 +- 2 files changed, 34 insertions(+), 34 deletions(-) diff --git a/libavcodec/arm/mathops.h b/libavcodec/arm/mathops.h index 858e73d..3a7a1f3 100644

[libav-devel] [PATCH 4/4] ARM: aacdec: fix constraints on inline asm

2011-05-28 Thread Mans Rullgard
This adds output operands for modified memory allowing the volatile qualifiers to be dropped. Signed-off-by: Mans Rullgard --- libavcodec/arm/aac.h | 153 + 1 files changed, 78 insertions(+), 75 deletions(-) diff --git a/libavcodec/arm/aac.h b/li

[libav-devel] [PATCH 1/4] ARM: improve FASTDIV asm

2011-05-28 Thread Mans Rullgard
This uses one register less. Also add missing "cc" clobber. Signed-off-by: Mans Rullgard --- libavutil/arm/intmath.h | 12 ++-- 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/libavutil/arm/intmath.h b/libavutil/arm/intmath.h index cc3de90..4340b59 100644 --- a/libavuti

[libav-devel] [PATCH 2/4] ARM: add "cc" clobbers to inline asm where needed

2011-05-28 Thread Mans Rullgard
Signed-off-by: Mans Rullgard --- libavcodec/arm/aac.h|2 +- libavcodec/arm/mathops.h|3 ++- libavcodec/arm/vp56_arith.h |6 -- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/libavcodec/arm/aac.h b/libavcodec/arm/aac.h index e907c9e..8355e9c 100644 --- a

[libav-devel] [PATCH] ac3enc: use LOCAL_ALIGNED macro

2011-05-28 Thread Mans Rullgard
Aligned local variables must use the LOCAL_ALIGNED macro to ensure correct alignment on all systems. The unusual size argument to memset is required since the implementation of LOCAL_ALIGNED may use a pointer to an array. Signed-off-by: Mans Rullgard --- libavcodec/ac3enc.c |7 +-- 1 fi

[libav-devel] [PATCH] build: remove BUILD_ROOT variable

2011-05-28 Thread Mans Rullgard
This variable is unnecessary as absolute paths are not required. Signed-off-by: Mans Rullgard --- Makefile |6 +++--- common.mak | 12 +++- configure |3 +-- 3 files changed, 7 insertions(+), 14 deletions(-) diff --git a/Makefile b/Makefile index 73ada9a..d18a2f9 100644 ---

Re: [libav-devel] [PATCH 3/3] doc: Drop OS/2 subsection from OS chapter.

2011-05-28 Thread Måns Rullgård
Diego Biurrun writes: > On Fri, May 27, 2011 at 09:31:56PM -0700, Dave Yeo wrote: >> On 05/27/11 11:55 am, Diego Biurrun wrote: >>> On Thu, May 26, 2011 at 11:08:16PM -0700, Dave Yeo wrote: On 05/26/11 05:53 am, Diego Biurrun wrote: > Libav should now compile out-of-the-box on OS/2 and t

Re: [libav-devel] [PATCH] swscale: fix crash in bilinear scaling.

2011-05-28 Thread Kostya
On Sat, May 28, 2011 at 06:47:47AM -0400, Ronald S. Bultje wrote: > Hi, > > On Sat, May 28, 2011 at 3:29 AM, Kostya wrote: > > On Fri, May 27, 2011 at 07:01:47PM -0400, Ronald S. Bultje wrote: > >> --- > >>  libswscale/swscale_internal.h     |    2 + > >>  libswscale/utils.c                |    1

Re: [libav-devel] [PATCH] parseutils: add av_parse_number() function and children, and use them in the ff* tools

2011-05-28 Thread Ronald S. Bultje
Hi, On Sat, May 28, 2011 at 5:43 AM, Stefano Sabatini wrote: > * the function code knows exactly why the failure happened, and can >  provide useful hints for spotting the problem, which can't be done >  in the calling code. We can log this under NULL, AV_LOG_DEBUG or even as a av_dlog() message

Re: [libav-devel] [PATCH] swscale: fix crash in bilinear scaling.

2011-05-28 Thread Ronald S. Bultje
Hi, On Sat, May 28, 2011 at 3:29 AM, Kostya wrote: > On Fri, May 27, 2011 at 07:01:47PM -0400, Ronald S. Bultje wrote: >> --- >>  libswscale/swscale_internal.h     |    2 + >>  libswscale/utils.c                |    1 + >>  libswscale/x86/swscale_template.c |  141 >>

Re: [libav-devel] [libav-commits] vpxenc: add VP8E_SET_STATIC_THRESHOLD mapping

2011-05-28 Thread Luca Barbato
On 5/28/11 12:17 PM, James Zern wrote: Module: libav Branch: master Commit: 88aa21593932fbf5597996041ab669848c542ee5 Author:James Zern Committer: Reinhard Tartler Date: Tue Apr 12 04:40:47 2011 +0200 vpxenc: add VP8E_SET_STATIC_THRESHOLD mapping via the equivalent AVCodecContext::mb_t

Re: [libav-devel] [PATCH] mov: improved 'edts' atom write support

2011-05-28 Thread Gil Pedersen
On 28/05/2011, at 02.51, Alex Converse wrote: > On Mon, May 23, 2011 at 12:29 AM, Diego Biurrun wrote: >> On Mon, May 02, 2011 at 08:52:30PM +0200, Gil Pedersen wrote: >>> I was wondering why my mp4 output based on a MPEG-TS source had poor >>> lip sync. Investigation revealed that libav does not

Re: [libav-devel] [PATCH 1/3] webm: support stereo videos in matroska/webm muxer

2011-05-28 Thread Luca Barbato
On 5/28/11 9:08 AM, Reinhard Tartler wrote: From: Alok Ahuja Create a stereo_mode metadata tag to specify the stereo 3d video layout using the StereoMode tag in a matroska/webm video track. --- doc/muxers.texi | 63 + libavformat/matrosk

Re: [libav-devel] [PATCH 3/3] vpxenc: add CQ_LEVEL mapping

2011-05-28 Thread Luca Barbato
On 5/28/11 9:08 AM, Reinhard Tartler wrote: From: James Zern via the equivalent AVCodecContext::crf modifying the range allowed by options.c (0-51 -> 0-63) update configure check to require libvpx 0.9.6 (Bali) Signed-off-by: Michael Niedermayer --- configure |4 +- libavco

Re: [libav-devel] [PATCH] parseutils: add av_parse_number() function and children, and use them in the ff* tools

2011-05-28 Thread Stefano Sabatini
On date Saturday 2011-05-28 11:23:50 +0200, Anton Khirnov wrote: > On Sat, 28 May 2011 09:54:27 +0200, Stefano Sabatini > wrote: > > On date Saturday 2011-05-28 07:32:47 +0200, Anton Khirnov encoded: > > > > > > On Fri, 27 May 2011 21:25:21 -0400, "Ronald S. Bultje" > > > wrote: > > > > Hi, >

Re: [libav-devel] [PATCH 1/5] bktr: add a framerate private option.

2011-05-28 Thread Stefano Sabatini
On date Saturday 2011-05-28 11:21:41 +0200, Anton Khirnov encoded: > On Sat, 28 May 2011 10:00:14 +0200, Stefano Sabatini > wrote: > > On date Saturday 2011-05-28 07:51:22 +0200, Anton Khirnov encoded: > > > --- > > > libavdevice/bktr.c | 24 +--- > > > 1 files changed, 13

Re: [libav-devel] [PATCH] parseutils: add av_parse_number() function and children, and use them in the ff* tools

2011-05-28 Thread Anton Khirnov
On Sat, 28 May 2011 09:54:27 +0200, Stefano Sabatini wrote: > On date Saturday 2011-05-28 07:32:47 +0200, Anton Khirnov encoded: > > > > On Fri, 27 May 2011 21:25:21 -0400, "Ronald S. Bultje" > > wrote: > > > Hi, > > > > > > On Fri, May 27, 2011 at 7:53 PM, Stefano Sabatini > > > wrote: > >

Re: [libav-devel] [PATCH 1/5] bktr: add a framerate private option.

2011-05-28 Thread Anton Khirnov
On Sat, 28 May 2011 10:00:14 +0200, Stefano Sabatini wrote: > On date Saturday 2011-05-28 07:51:22 +0200, Anton Khirnov encoded: > > --- > > libavdevice/bktr.c | 24 +--- > > 1 files changed, 13 insertions(+), 11 deletions(-) > > > > diff --git a/libavdevice/bktr.c b/liba

Re: [libav-devel] [PATCH 2/3] vpxenc: add VP8E_SET_STATIC_THRESHOLD mapping

2011-05-28 Thread Luca Barbato
On 5/28/11 9:08 AM, Reinhard Tartler wrote: From: James Zern via the equivalent AVCodecContext::mb_threshold Signed-off-by: Michael Niedermayer --- libavcodec/libvpxenc.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) Probably ok, beside the email address. lu

Re: [libav-devel] [PATCH 4/5] v4l2: don't leak video standard string on error.

2011-05-28 Thread Stefano Sabatini
On date Saturday 2011-05-28 07:51:25 +0200, Anton Khirnov encoded: > --- > libavdevice/v4l2.c |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/libavdevice/v4l2.c b/libavdevice/v4l2.c > index e0186f8..80b6400 100644 > --- a/libavdevice/v4l2.c > +++ b/libavdevice/v4l2.

Re: [libav-devel] [PATCH 1/5] bktr: add a framerate private option.

2011-05-28 Thread Stefano Sabatini
On date Saturday 2011-05-28 07:51:22 +0200, Anton Khirnov encoded: > --- > libavdevice/bktr.c | 24 +--- > 1 files changed, 13 insertions(+), 11 deletions(-) > > diff --git a/libavdevice/bktr.c b/libavdevice/bktr.c > index e8ff557..8e3b271 100644 > --- a/libavdevice/bktr.c >

Re: [libav-devel] [PATCH 3/3] doc: Drop OS/2 subsection from OS chapter.

2011-05-28 Thread Diego Biurrun
On Fri, May 27, 2011 at 09:31:56PM -0700, Dave Yeo wrote: > On 05/27/11 11:55 am, Diego Biurrun wrote: >> On Thu, May 26, 2011 at 11:08:16PM -0700, Dave Yeo wrote: >>> On 05/26/11 05:53 am, Diego Biurrun wrote: Libav should now compile out-of-the-box on OS/2 and the information contained

Re: [libav-devel] [PATCH] parseutils: add av_parse_number() function and children, and use them in the ff* tools

2011-05-28 Thread Stefano Sabatini
On date Saturday 2011-05-28 07:32:47 +0200, Anton Khirnov encoded: > > On Fri, 27 May 2011 21:25:21 -0400, "Ronald S. Bultje" > wrote: > > Hi, > > > > On Fri, May 27, 2011 at 7:53 PM, Stefano Sabatini > > wrote: > > > +int av_parse_number(double *res, const char *numstr, enum > > > AVParseNum

Re: [libav-devel] [PATCH] lavu: add av_get_pix_fmt_name() convenience function

2011-05-28 Thread Stefano Sabatini
On date Saturday 2011-05-28 07:14:39 +0200, Anton Khirnov encoded: > > On Fri, 27 May 2011 21:03:49 -0400, Justin Ruggles > wrote: > > On 05/27/2011 08:39 PM, Stefano Sabatini wrote: > > > > > Also deprecate avcodec_get_pix_fmt_name() in its favor. > > > --- > > > doc/APIchanges |

Re: [libav-devel] [PATCH] swscale: fix crash in bilinear scaling.

2011-05-28 Thread Kostya
On Fri, May 27, 2011 at 07:01:47PM -0400, Ronald S. Bultje wrote: > --- > libswscale/swscale_internal.h |2 + > libswscale/utils.c|1 + > libswscale/x86/swscale_template.c | 141 > 3 files changed, 66 insertions(+), 78 deletions(-)

Re: [libav-devel] [PATCH] build fix: change usleep() to nanosleep()

2011-05-28 Thread madshi
> 2011/5/28 Kirill Gavrilov > WinAPI provides Sleep() function which gets milliseconds > as argument. FWIW, here's a function which accepts microseconds as a parameter instead of milliseconds. Unfortunately, Windows doesn't really do as requested. The minimum sleep time seems to be >= 1 milliseco

[libav-devel] [PATCH 2/3] vpxenc: add VP8E_SET_STATIC_THRESHOLD mapping

2011-05-28 Thread Reinhard Tartler
From: James Zern via the equivalent AVCodecContext::mb_threshold Signed-off-by: Michael Niedermayer --- libavcodec/libvpxenc.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/libavcodec/libvpxenc.c b/libavcodec/libvpxenc.c index 79009b1..02f8135 100644 --- a/libavcodec

[libav-devel] [PATCH 1/3] webm: support stereo videos in matroska/webm muxer

2011-05-28 Thread Reinhard Tartler
From: Alok Ahuja Create a stereo_mode metadata tag to specify the stereo 3d video layout using the StereoMode tag in a matroska/webm video track. --- doc/muxers.texi | 63 + libavformat/matroska.h| 20 +- libavformat/matro

[libav-devel] Misc. WebM/VP8 cherry-picks

2011-05-28 Thread Reinhard Tartler
These three patches have been cherry-picked from FFmpeg. I've tried to improve the commit messages, feel free to make suggestions for further improvements. ___ libav-devel mailing list libav-devel@libav.org https://lists.libav.org/mailman/listinfo/libav